/* ============================================================
   HINODE PRO — style.css
   Paleta: #F7C600 amarelo · #7B35C1 roxo · #1E1346 roxo-escuro
   ============================================================ */

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Nunito Sans', sans-serif; color: var(--text-dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Variables ───────────────────────────────────────────── */
:root {
  --yellow:       #F7C600;
  --yellow-dark:  #E0B200;
  --yellow-light: #FFF9D6;
  --purple:       #7B35C1;
  --purple-light: #9C4FE0;
  --purple-dark:  #1E1346;
  --beige:        #D4C4A0;
  --beige-light:  #F5F0E8;
  --white:        #FFFFFF;
  --text-dark:    #1E1346;
  --text-body:    #4A4060;
  --text-muted:   #8B7FA8;
  --green:        #25D366;
  --green-dark:   #1EB856;
  --border:       rgba(30,19,70,0.1);
  --shadow:       0 4px 24px rgba(30,19,70,0.08);
  --shadow-md:    0 8px 40px rgba(30,19,70,0.14);
  --radius:       16px;
  --radius-sm:    8px;
  --radius-pill:  100px;
  --container:    1200px;
}

/* ── Utilities ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(123,53,193,0.08);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  transition: all 0.25s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple-dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(30,19,70,0.22);
}

.btn-primary:hover {
  background: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123,53,193,0.35);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--purple-dark);
  box-shadow: 0 4px 20px rgba(247,198,0,0.3);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(247,198,0,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--purple-dark);
  border: 2px solid var(--purple-dark);
}

.btn-outline:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: rgba(37,211,102,0.1);
  color: var(--purple-dark);
  border: 2px solid var(--purple-dark);
}

.btn-whatsapp:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-lg { padding: 17px 36px; font-size: 0.95rem; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text .brand {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--purple-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-text .tagline {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-body);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--purple); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 2px solid var(--purple);
  border-radius: var(--radius-pill);
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  padding: 4px 13px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.06em;
  border: none;
  background: transparent;
  color: var(--purple);
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--purple);
  color: var(--white);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 64px;
  overflow: hidden;
}

.hero-left {
  background: var(--yellow);
  display: flex;
  align-items: center;
  padding: 5rem 5% 5rem 6%;
  position: relative;
  overflow: hidden;
}

/* Dot pattern */
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30,19,70,0.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}

/* Diagonal cut */
.hero-left::after {
  content: '';
  position: absolute;
  right: -42px;
  top: 0; bottom: 0;
  width: 84px;
  background: var(--yellow);
  clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
  z-index: 2;
}

.hero-content { position: relative; z-index: 3; max-width: 560px; }

.hero-icon {
  width: 52px;
  height: 52px;
  background: var(--purple);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.06;
  color: var(--purple);
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--purple-dark); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.hero-sub strong { font-weight: 800; }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.cta-note {
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-dark);
  opacity: 0.7;
  font-weight: 600;
  margin-top: 0.1rem;
}

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 1.75rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(30,19,70,0.15);
}

.stat-item strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--purple-dark);
  line-height: 1;
}

.stat-item span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dark);
  opacity: 0.65;
  margin-top: 3px;
}

.stat-div {
  width: 1px;
  background: rgba(30,19,70,0.18);
  align-self: stretch;
}

/* Hero right — image */
.hero-right {
  position: relative;
  background: var(--beige-light);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-fallback {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Badge */
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 0;
  background: var(--purple);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 10px 22px 10px 18px;
  border-radius: 100px 0 0 100px;
  z-index: 5;
  box-shadow: -4px 4px 20px rgba(123,53,193,0.35);
}

/* ── Benefits ─────────────────────────────────────────────── */
.benefits {
  padding: 6rem 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
  background: var(--yellow);
}

.benefit-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.benefit-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ── How it works ─────────────────────────────────────────── */
.how-it-works {
  padding: 6rem 0;
  background: var(--yellow-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting arrow between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.33% + 1rem);
  right: calc(33.33% + 1rem);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--purple) 0, var(--purple) 8px,
    transparent 8px, transparent 16px
  );
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--purple-dark);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--yellow);
  box-shadow: 0 4px 20px rgba(30,19,70,0.2);
}

.step-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── Combos ───────────────────────────────────────────────── */
.combos {
  padding: 6rem 0;
  background: var(--white);
}

/* ─ Combo Table ─ */
.combos-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1.5px solid rgba(123,53,193,0.18);
  box-shadow: var(--shadow);
}

.combos-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: var(--white);
}

/* Header row */
.combos-table thead tr th {
  padding: 1.5rem 1rem 1.25rem;
  vertical-align: top;
  border-bottom: 2px solid rgba(123,53,193,0.15);
  background: var(--white);
}

.combos-table thead .col-label {
  background: var(--purple);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  text-align: left;
  width: 190px;
  min-width: 150px;
  padding: 1.5rem 1.25rem;
}

.combos-table thead .col-featured {
  border-top: 3px solid var(--yellow);
}

/* Combo header content */
.combo-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.badge-launch, .badge-top {
  background: var(--yellow);
  color: var(--purple-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}

.th-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--purple);
  line-height: 1.2;
}

.th-sub {
  font-size: 0.78rem;
  color: var(--text-body);
  font-weight: 600;
}

.th-price-main {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--purple);
  line-height: 1;
  margin-top: 0.2rem;
}

.th-installment {
  font-size: 0.85rem;
  color: var(--purple);
  margin-top: 0.15rem;
}

.th-installment strong {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
}

.th-vista {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-combo {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 9px 22px;
  background: var(--purple-dark);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-combo:hover {
  background: var(--purple);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(123,53,193,0.3);
}

/* Body rows */
.combos-table tbody tr td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(123,53,193,0.1);
  font-size: 0.9rem;
  color: var(--text-body);
}

.combos-table tbody tr:last-child td { border-bottom: none; }

.combos-table tbody tr:nth-child(odd) td.row-label {
  background: rgba(91,30,145,0.82);
}

.combos-table tbody tr:nth-child(even) td.row-label {
  background: rgba(123,53,193,0.68);
}

.row-label {
  text-align: left !important;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white) !important;
  line-height: 1.3;
  vertical-align: middle;
}

.cell-check {
  color: var(--purple);
  font-size: 1.15rem;
  font-weight: 900;
}

.cell-value {
  color: var(--purple);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}

.cell-dash { color: var(--text-muted); font-size: 1.1rem; }

.cell-highlight {
  color: var(--yellow-dark) !important;
  font-weight: 900 !important;
  font-family: 'Nunito', sans-serif;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq {
  padding: 6rem 0;
  background: var(--beige-light);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.open {
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(247,198,0,0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-item.open .faq-question { color: var(--purple); }

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--purple-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.faq-item.open .faq-icon {
  background: var(--yellow);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta {
  padding: 6rem 0;
  background: var(--purple-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(247,198,0,0.05) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.final-cta-inner { position: relative; z-index: 1; }

.final-cta .section-eyebrow {
  color: var(--yellow);
  background: rgba(247,198,0,0.1);
}

.final-cta .section-title { color: var(--white); }

.final-cta .section-subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.final-cta .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.final-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.final-cta .btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 17px 36px;
  transition: all 0.25s;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  color: var(--white);
  text-decoration: none;
}

.final-cta .btn-whatsapp-cta:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #130D31;
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer-brand .brand { color: var(--white); }
.footer-brand .tagline { color: var(--yellow); }

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  max-width: 300px;
  margin-top: 0.75rem;
}

.footer-links h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.footer-links ul li + li { margin-top: 0.6rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
  margin-bottom: 0.6rem;
}

.footer-contact a:hover { color: var(--green); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-disclaimer {
  max-width: 680px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ── FAB WhatsApp ─────────────────────────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all 0.3s;
}

.fab-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
}

.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.45);
  animation: wa-ripple 2.5s infinite;
}

@keyframes wa-ripple {
  0%   { transform: scale(1);   opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.fab-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--purple-dark);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.25s;
}

.fab-whatsapp:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── Privacy page ─────────────────────────────────────────── */
.privacy-page {
  padding-top: 64px;
}

.privacy-hero {
  background: var(--purple-dark);
  padding: 5rem 0 4rem;
  text-align: center;
}

.privacy-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.privacy-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
}

.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
}

.privacy-content h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--purple-dark);
  margin: 2.5rem 0 1rem;
}

.privacy-content h2:first-child { margin-top: 0; }

.privacy-content p, .privacy-content li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.75rem 0;
}

.privacy-content a { color: var(--purple); font-weight: 700; }
.privacy-content a:hover { text-decoration: underline; }

.privacy-content .highlight-box {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: var(--text-dark);
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim { opacity: 0; }
.anim.visible { animation: fadeUp 0.6s ease forwards; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .combos-grid { grid-template-columns: repeat(2, 1fr); }
  .combo-card.featured { transform: none; }
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 1.25rem; }
  .header-nav { display: none; }
  .logo-text .tagline { display: none; }

  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 1.5rem 4rem; }
  .hero-left::after { display: none; }
  .hero-right { min-height: 280px; order: -1; }

  .hero h1 { font-size: 2.2rem; }
  .cta-group { flex-direction: column; }
  .hero-stats { gap: 1.25rem; }

  .benefits { padding: 4rem 0; }
  .benefits-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .how-it-works { padding: 4rem 0; }

  .combos { padding: 4rem 0; }
  .combos-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .faq { padding: 4rem 0; }

  .final-cta { padding: 4rem 0; }
  .final-cta-btns { flex-direction: column; align-items: center; }

  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .fab-whatsapp { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .combos-grid { max-width: 100%; }
  .benefits-grid { max-width: 100%; }
}
