/* ============================================================
   styles.css — Gatinha Original Landing Page
   Revisão Premium · Versão Refinada
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Palette */
  --rose:       #C8214B;
  --rose-dark:  #9C1538;
  --gold:       #D4A843;
  --gold-light: #F0C96A;
  --cream:      #FDF6EE;
  --dark:       #1A0A10;
  --dark2:      #2D1020;
  --text:       #3A1020;
  --muted:      #7A5060;
  --white:      #FFFFFF;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;

  /* Spacing scale */
  --space-xs:   .5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2rem;
  --space-xl:   3rem;
  --space-2xl:  5rem;

  /* UI */
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  24px;

  /* Transitions */
  --transition:       .3s cubic-bezier(.4, 0, .2, 1);
  --transition-slow:  .5s cubic-bezier(.4, 0, .2, 1);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,.08);
  --shadow-md:  0 6px 28px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.18);
  --shadow-rose: 0 8px 28px rgba(200,33,75,.32);
  --shadow-gold: 0 8px 24px rgba(212,168,67,.32);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  width: 92%;
  max-width: 1100px;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200,33,75,.45);
  filter: brightness(1.06);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #B8892A 100%);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,168,67,.48);
  filter: brightness(1.05);
}
.btn-gold:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-2px);
}


/* ============================================================
   5. HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 82% 50%, rgba(200,33,75,.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 18% 80%, rgba(212,168,67,.1) 0%, transparent 60%);
}

.hero-strip {
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: 55%;
  height: 115%;
  background: linear-gradient(160deg, var(--rose-dark) 0%, var(--dark2) 100%);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: .28;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Grid layout */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: 5rem 0 4.5rem;
}
@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 7rem 0 6rem;
  }
}

/* Content column */
.hero-content {
  text-align: center;
}
@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(212,168,67,.12);
  border: 1px solid rgba(212,168,67,.35);
  border-radius: 50px;
  padding: .45rem 1.1rem;
  font-size: .94rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.hero-badge::before {
  content: "";
}

.hero-headline {
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.3rem;
  letter-spacing: -.025em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(.92rem, 2.2vw, 1rem);
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  font-weight: 300;
}
@media (min-width: 768px) {
  .hero-sub {
    margin-left: 0;
  }
}
.hero-sub strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-ctas {
    justify-content: flex-start;
  }
}

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .hero-stats {
    justify-content: flex-start;
  }
}

.hero-stat-item {
  text-align: center;
}
.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span {
  color: var(--gold);
}
.hero-stat-lbl {
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: .25rem;
}

/* Image column */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-frame {
  position: relative;
  width: 260px;
  height: 360px;
  border-radius: 140px 140px 28px 28px;
  overflow: hidden;
  border: 3px solid rgba(212,168,67,.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 0 10px rgba(200,33,75,.08);
}
@media (min-width: 480px) {
  .hero-img-frame {
    width: 310px;
    height: 430px;
  }
}
@media (min-width: 768px) {
  .hero-img-frame {
    width: 360px;
    height: 500px;
  }
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--rose-dark) 0%, var(--dark2) 40%, var(--rose) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2rem;
}
.hero-img-placeholder .photo-icon {
  font-size: 5rem;
  margin-bottom: .5rem;
}
.hero-img-placeholder p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  text-align: center;
  padding: 0 1rem;
}

/* Floating badge */
.hero-float-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: .85rem 1.2rem;
  box-shadow: 0 8px 36px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  gap: .6rem;
  min-width: 175px;
}
@media (max-width: 767px) {
  .hero-float-badge {
    left: .5rem;
    bottom: -1.5rem;
  }
}
.float-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.float-badge-text strong {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--dark);
}
.float-badge-text span {
  font-size: .7rem;
  color: var(--muted);
}

/* Decorative ring */
.hero-ring {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed rgba(212,168,67,.3);
  animation: spin 22s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.35);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
.scroll-indicator svg {
  opacity: .4;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   6. SECTION: POR QUE ESCOLHER
   ============================================================ */
#porque {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.porque-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 768px) {
  .porque-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.porque-photo {
  position: relative;
  order: 1;
}

.porque-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--dark2) 100%);
}
.porque-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
}
.porque-img-placeholder .img-icon {
  font-size: 4rem;
}

.porque-accent {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--gold-light), #B8892A);
  border-radius: var(--radius-sm);
  padding: 1rem 1.4rem;
  box-shadow: 0 10px 32px rgba(0,0,0,.18);
}
@media (max-width: 480px) {
  .porque-accent {
    left: .5rem;
  }
}
.porque-accent strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.porque-accent span {
  font-size: .7rem;
  font-weight: 600;
  color: rgba(26,10,16,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.porque-content h2 {
  font-size: clamp(1.65rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: var(--space-sm);
  letter-spacing: -.025em;
}
.porque-content h2 em {
  color: var(--rose);
  font-style: italic;
}

.porque-lead {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

/* Metric bars */
.metric-bars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.metric-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .35rem;
}
.metric-bar-label {
  font-size: .87rem;
  font-weight: 600;
  color: var(--text);
}
.metric-bar-value {
  font-size: .9rem;
  font-weight: 700;
  color: var(--rose);
}
.metric-bar-track {
  height: 8px;
  background: #F0E0E6;
  border-radius: 50px;
  overflow: hidden;
}
.metric-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  width: 0%;
  transition: width 1.4s cubic-bezier(.4, 0, .2, 1) .2s;
}


/* ============================================================
   7. SECTION: SOBRE
   ============================================================ */
#sobre {
  padding: var(--space-2xl) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#sobre::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,33,75,.18) 0%, transparent 70%);
  pointer-events: none;
}

.sobre-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 768px) {
  .sobre-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.sobre-text {
  color: var(--white);
}
.sobre-text h2 {
  font-size: clamp(1.65rem, 4.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: var(--space-md);
  letter-spacing: -.025em;
}
.sobre-text h2 em {
  color: var(--gold);
  font-style: italic;
}
.sobre-text p {
  font-size: .94rem;
  line-height: 1.85;
  color: rgba(255,255,255,.65);
  margin-bottom: var(--space-sm);
  font-weight: 300;
}
.sobre-text p strong {
  color: var(--gold-light);
  font-weight: 600;
}

.video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark2);
  box-shadow: 0 20px 64px rgba(0,0,0,.6);
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, var(--dark2), var(--rose-dark));
  color: rgba(255,255,255,.55);
  font-size: .9rem;
}
.video-placeholder .play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}


/* ============================================================
   8. SECTION: MÉTRICAS
   ============================================================ */
#metricas {
  padding: var(--space-2xl) 0;
  background: linear-gradient(160deg, var(--cream) 0%, #FDE8EE 100%);
  overflow: hidden;
}

.metricas-head {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.metricas-head h2 {
  font-size: clamp(1.65rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.metricas-head h2 em {
  color: var(--rose);
  font-style: italic;
}
.metricas-head p {
  color: var(--muted);
  margin-top: .75rem;
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Stats grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 600px) {
  .metrics-grid {
    gap: 1.4rem;
  }
}
@media (min-width: 900px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,33,75,.07);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 42px rgba(200,33,75,.14);
}
.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}
.metric-card-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}
.metric-card-num {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  margin-bottom: .4rem;
}
.metric-card-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.45;
}

/* Carrossel — escapa do container para largura total */
.metricas-images {
  margin-top: var(--space-xl);
  text-align: center;
  margin-left:  calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}
.metricas-images h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: var(--space-md);
}

.metricas-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.metricas-img-grid {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
  cursor: grab;
  padding: .6rem 0 1rem;
}
.metricas-img-grid.is-dragging {
  cursor: grabbing;
}

.metrica-img-card {
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  aspect-ratio: 9/16;
  flex: 0 0 260px;
  overflow: hidden;
  background: linear-gradient(160deg, #FDE8EE, #FDF6EE);
  transition: box-shadow var(--transition);
}
@media (min-width: 600px)  { .metrica-img-card { flex: 0 0 295px; } }
@media (min-width: 1024px) { .metrica-img-card { flex: 0 0 330px; } }
.metrica-img-card:hover {
  box-shadow: 0 10px 34px rgba(200,33,75,.2);
}
.metrica-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.carousel-hint {
  font-size: .73rem;
  color: var(--muted);
  margin-top: .6rem;
  letter-spacing: .06em;
  opacity: .65;
  text-align: center;
}


/* ============================================================
   9. SECTION: COMBOS
   Mobile: 1 col · Tablet: 2 col · Desktop: 5 col
   ============================================================ */
#combos {
  padding: var(--space-2xl) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#combos::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.08) 0%, transparent 70%);
  pointer-events: none;
}

.combos-head {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.combos-head h2 {
  font-size: clamp(1.65rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.combos-head h2 em {
  color: var(--gold);
  font-style: italic;
}
.combos-head p {
  color: rgba(255,255,255,.5);
  margin-top: .75rem;
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Grid responsivo */
.combos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .combos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .combos-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Container expandido no desktop para 5 colunas */
@media (min-width: 900px) {
  #combos .container {
    max-width: 1430px;
  }
}

/* Combo card */
.combo-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.combo-card:hover {
  border-color: rgba(212,168,67,.38);
  background: rgba(255,255,255,.07);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}
.combo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}
.combo-card:hover::before {
  opacity: 1;
}

/* Featured card */
.combo-card.featured {
  border-color: var(--gold);
  background: rgba(212,168,67,.06);
}
.combo-card.featured::before {
  opacity: 1;
}

.combo-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: transparent;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: -.4rem;
  margin-bottom: -.1rem;
  width: fit-content;
}
.combo-featured-badge .badge-emoji {
  display: inline-block;
  animation: spin-star 2.5s linear infinite;
}
@keyframes spin-star {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.combo-num {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.combo-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.combo-desc {
  font-size: .85rem;
  line-height: 1.75;
  color: rgba(255,255,255,.52);
  flex: 1;
  font-weight: 300;
}

.combo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.combo-features li {
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.5;
}
.combo-features li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

.combo-cta {
  margin-top: auto;
}
.combo-cta .btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, #B8892A 100%);
  color: var(--dark);
  box-shadow: 0 4px 18px rgba(212,168,67,.3);
  font-size: .86rem;
  font-weight: 700;
}
.combo-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,67,.48);
  filter: brightness(1.05);
}

.wa-icon {
  display: none;
}


/* ============================================================
   10. SECTION: FAQ
   ============================================================ */
#faq {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.faq-head {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.faq-head h2 {
  font-size: clamp(1.65rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.faq-head h2 em {
  color: var(--rose);
  font-style: italic;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(200,33,75,.09);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open {
  border-color: rgba(200,33,75,.28);
  box-shadow: 0 4px 24px rgba(200,33,75,.09);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  gap: var(--space-sm);
  transition: color .2s;
  user-select: none;
  -webkit-user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  line-height: 1.5;
}
.faq-item.open .faq-question {
  color: var(--rose);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200,33,75,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s var(--transition), background .2s;
  color: var(--rose);
  font-size: 1.1rem;
  font-weight: 300;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--rose);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.4, 0, .2, 1);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.4rem;
  font-size: .9rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}


/* ============================================================
   11. FOOTER
   ============================================================ */
#footer {
  background: var(--white);
  padding: 4rem 0 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(200,33,75,.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.025em;
  margin-bottom: .7rem;
  display: inline-block;
}
.footer-logo span {
  color: var(--rose);
}
.footer-brand p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 300px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-sm);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-col ul li a {
  font-size: .86rem;
  color: var(--muted);
  transition: color .2s;
  font-weight: 400;
}
.footer-col ul li a:hover {
  color: var(--rose);
}

/* Social links */
.social-links {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
  justify-content: center;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,33,75,.07);
  border: 1.5px solid rgba(200,33,75,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--rose);
  transition: fill .2s;
}
.social-link:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,33,75,.3);
}
.social-link:hover svg {
  fill: var(--white);
}

/* Footer CTA strip */
.footer-cta-wrap {
  text-align: center;
  padding: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.footer-cta-wrap p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* Bottom bar */
.footer-bottom {
  background: var(--white);
  border-top: 1px solid rgba(200,33,75,.08);
  padding: 1.75rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .87rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .01em;
}
.footer-bottom a {
  color: var(--rose);
  font-weight: 700;
  transition: color .2s;
}
.footer-bottom a:hover {
  color: var(--rose-dark);
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-rights {
    display: block;
    margin-top: .15rem;
  }
}


/* ============================================================
   12. RESPONSIVE GLOBAL HELPERS
   ============================================================ */

/* Pequenos ajustes para telas muito pequenas */
@media (max-width: 479px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .metric-card {
    padding: 1.3rem 1rem;
  }
  .metric-card-num {
    font-size: 1.3rem;
  }
  .btn {
    padding: .82rem 1.6rem;
    font-size: .88rem;
  }
}

/* Tablet ajustes finos */
@media (min-width: 600px) and (max-width: 899px) {
  .combos-grid {
    gap: 1.2rem;
  }
}

/* Desktop largo */
@media (min-width: 1280px) {
  :root {
    --space-2xl: 6rem;
  }
}
