/*
 * Decodificador de Ciúme™ — style.css
 * Reescrito do zero. Mobile-first. Sem !important. Sem conflitos.
 *
 * Estrutura:
 *  1. Reset + Tokens
 *  2. Base / Typography
 *  3. Layout (container, section)
 *  4. Header
 *  5. Urgency Bar
 *  6. Hero
 *  7. Mecanismo
 *  8. Dor
 *  9. Pensamentos
 * 10. Promessa
 * 11. Bônus
 * 12. Depoimentos
 * 13. Oferta
 * 14. Especialista
 * 15. Footer
 * 16. Componentes globais (badge, btn, reveal)
 * 17. Countdown
 */

/* ══════════════════════════════════
   1. RESET + TOKENS
══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cores */
  --vinho:      #8B2252;
  --vinho-dim:  #6E1A42;
  --coral:      #E8805A;
  --coral-dim:  #D06845;
  --verde:      #4ADE80;
  --ouro:       #FFD700;

  --dark-bg:    #160A10;
  --dark-card:  #1E0C16;
  --dark-borda: rgba(255,255,255,0.08);

  --light-bg:   #FDFAF9;
  --light-rose: #F5E6E8;
  --light-card: #FFFFFF;
  --light-text: #1A0A12;
  --light-body: #3D1C2A;
  --light-muted:#7A4A5A;

  --dark-text:  #FFFFFF;
  --dark-body:  rgba(255,255,255,0.82);
  --dark-muted: rgba(255,255,255,0.50);

  /* Tipografia */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Espaço */
  --r-sm:  12px;
  --r-md:  16px;
  --r-lg:  20px;
  --r-xl:  24px;
  --r-pill:50px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-body);
  background: var(--dark-bg);
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}


/* ══════════════════════════════════
   2. BASE / TYPOGRAPHY
══════════════════════════════════ */
h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p { line-height: 1.7; }

em { font-style: italic; }

s { text-decoration: line-through; opacity: 0.5; }

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

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


/* ══════════════════════════════════
   3. LAYOUT
══════════════════════════════════ */
.container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

/* Backgrounds alternados */
.section--hero,
.section--pensamentos,
.section--prova,
.section--oferta    { background: var(--dark-bg); }

.section--mecanismo,
.section--promessa,
.section--bonus,
.section--especialista { background: var(--light-bg); }

.section--dor       { background: var(--light-rose); }

/* Títulos por contexto */
.section--hero .section__title,
.section--pensamentos .section__title,
.section--prova .section__title,
.section--oferta .section__title { color: var(--dark-text); }

.section--mecanismo .section__title,
.section--dor .section__title,
.section--promessa .section__title,
.section--bonus .section__title,
.section--especialista .section__title { color: var(--light-text); }

.section__title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}


/* ══════════════════════════════════
   4. HEADER
══════════════════════════════════ */
.site-header {
  background: var(--dark-bg);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--dark-borda);
}

.site-header .container {
  display: flex;
  justify-content: center;
}

.site-header__logo {
  height: 38px;
  width: auto;
}

@media (min-width: 640px) {
  .site-header { padding: 0.9rem 0; }
  .site-header__logo { height: 44px; }
}


/* ══════════════════════════════════
   5. URGENCY BAR
══════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, var(--vinho), #C0395A);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.urgency-bar s { color: rgba(255,255,255,0.5); text-decoration: line-through; opacity: 1; }

.urgency-bar__timer {
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--ouro);
  background: rgba(0,0,0,0.25);
  padding: 2px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
}

@media (min-width: 640px) {
  .urgency-bar { flex-wrap: nowrap; font-size: 0.85rem; }
}


/* ══════════════════════════════════
   6. HERO
══════════════════════════════════ */
.section--hero {
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Glow radial de fundo */
.section--hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,34,82,0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section--hero .container { position: relative; z-index: 1; }

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
}

.hero__headline {
  font-size: clamp(1.6rem, 7vw, 3rem);
  font-weight: 900;
  color: var(--dark-text);
  line-height: 1.1;
}

.hero__sub {
  font-size: 1rem;
  color: var(--dark-body);
  max-width: 480px;
}

.hero__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  width: 100%;
  max-width: 420px;
}

.hero__checks li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--dark-body);
}

.hero__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--verde);
  font-weight: 900;
}

/* Imagem mobile: retângulo largura total */
.hero__img-block {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 40px rgba(139,34,82,0.35);
}

.hero__img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop: 2 colunas, imagem circular */
@media (min-width: 768px) {
  .section--hero { padding: 3.5rem 0; }

  .hero__inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 3rem;
  }

  .hero__text {
    align-items: flex-start;
    flex: 1;
  }

  .hero__checks { max-width: 100%; }

  .hero__img-block {
    width: 280px;
    height: 280px;
    flex-shrink: 0;
    border-radius: 50%;
    aspect-ratio: unset;
    border: 3px solid rgba(255,255,255,0.12);
    box-shadow: 0 0 60px rgba(139,34,82,0.4);
  }
}

@media (min-width: 1024px) {
  .hero__img-block { width: 320px; height: 320px; }
}


/* ══════════════════════════════════
   7. MECANISMO ÚNICO
══════════════════════════════════ */
.section--mecanismo { padding-top: 0; }

.mec-img-wrap {
  width: 100%;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  overflow: hidden;
  max-height: 300px;
  margin-bottom: 2.5rem;
}

.mec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mec-content { max-width: 680px; margin: 0 auto; }

.mec-title {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 900;
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.mec-title em { color: var(--vinho); font-style: normal; }

/* Box: o que não funcionou */
.mec-old {
  background: var(--light-rose);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.mec-old__intro { font-size: 0.95rem; color: var(--light-body); margin-bottom: 1rem; }

.mec-old__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mec-old__list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--light-body);
  font-size: 0.9rem;
  line-height: 1.5;
}

.mec-old__list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--vinho);
  font-weight: 900;
}

.mec-old__verdict {
  font-size: 1rem;
  color: var(--light-text);
  border-top: 1px solid rgba(139,34,82,0.15);
  padding-top: 0.75rem;
}

/* Insight: quebra de crença */
.mec-insight {
  border-left: 4px solid var(--vinho);
  background: #FFF9FB;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.mec-insight__headline {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--light-text);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.mec-insight p {
  font-size: 0.9rem;
  color: var(--light-body);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.mec-insight p:last-child { margin-bottom: 0; }

/* O que muda agora */
.mec-novo {
  background: linear-gradient(135deg, var(--vinho), #C0395A);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  color: #fff;
}

.mec-novo__badge {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 0.75rem;
}

.mec-novo__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.5rem;
}

.mec-novo__text:last-child { margin-bottom: 0; }
.mec-novo__text strong { color: #fff; }
.mec-novo__text em { color: #F5E6E8; font-style: normal; }

@media (min-width: 768px) {
  .mec-img-wrap { max-height: 360px; border-radius: var(--r-xl); margin: 0 0 2.5rem; }
}


/* ══════════════════════════════════
   8. DOR
══════════════════════════════════ */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.pain-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(139,34,82,0.12);
}

.pain-item:last-child { border-bottom: none; padding-bottom: 0; }

.pain-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(139,34,82,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vinho);
}

.pain-item__icon svg { width: 18px; height: 18px; stroke: var(--vinho); }

.pain-item p {
  font-size: 0.9rem;
  color: var(--light-body);
  line-height: 1.65;
  padding-top: 0.4rem;
}

.section--dor .section__title { color: var(--light-text); }


/* ══════════════════════════════════
   9. PENSAMENTOS INTERNOS
══════════════════════════════════ */
.section--pensamentos .section__title { color: var(--dark-text); }

.pensamentos-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.pensamentos__foto {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  aspect-ratio: 1/1;
}

.pensamentos__foto img { width: 100%; height: 100%; object-fit: cover; }

.pensamentos__bubbles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bubble {
  background: #fff;
  color: var(--light-text);
  border-radius: var(--r-lg);
  padding: 0.85rem 1.1rem;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.55;
  max-width: 88%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.bubble--right {
  align-self: flex-end;
  background: var(--light-rose);
}

.pensamentos__insight {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--dark-body);
}

.pensamentos__insight strong { color: var(--dark-text); font-style: normal; }

@media (min-width: 640px) {
  .pensamentos-wrap {
    flex-direction: row;
    align-items: center;
  }

  .pensamentos__foto {
    width: 240px;
    max-width: unset;
    flex-shrink: 0;
    margin: 0;
  }
}


/* ══════════════════════════════════
   10. PROMESSA
══════════════════════════════════ */
.promessa-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 580px;
  margin: 0 auto 1.5rem;
}

.promessa-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.promessa-item:last-child { border-bottom: none; padding-bottom: 0; }

.promessa-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--vinho);
  margin-top: 3px;
}

.promessa-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--light-text);
  margin-bottom: 0.2rem;
}

.promessa-item p { font-size: 0.88rem; color: var(--light-body); }

.promessa-bonus {
  text-align: center;
  font-size: 0.85rem;
  color: var(--light-muted);
  max-width: 580px;
  margin: 0 auto;
}


/* ══════════════════════════════════
   11. BÔNUS
══════════════════════════════════ */
.bonus-header {
  text-align: center;
  margin-bottom: 2rem;
}

.bonus-header__pre {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--light-muted);
  margin-bottom: 0.4rem;
}

.bonus-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.bonus-header__value {
  font-size: 0.9rem;
  color: var(--light-body);
}

.bonus-header__strike {
  text-decoration: line-through;
  color: var(--light-muted);
}

.bonus-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 760px;
  margin: 0 auto;
}

/* Bonus row — mobile: vertical (imagem topo, texto abaixo) */
.bonus-row {
  background: var(--light-card);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.bonus-row__img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.bonus-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus-row__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coral);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.bonus-row__content {
  padding: 1.2rem;
}

.bonus-row__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.bonus-row__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--light-text);
  line-height: 1.2;
}

.bonus-row__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 2px;
}

.bonus-row__valor {
  font-size: 0.72rem;
  color: var(--light-muted);
}

.bonus-row__free {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--vinho);
  background: rgba(139,34,82,0.08);
  padding: 2px 8px;
  border-radius: var(--r-pill);
}

.bonus-row__scenario {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--light-muted);
  border-left: 3px solid var(--light-rose);
  padding-left: 0.75rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.bonus-row__desc {
  font-size: 0.875rem;
  color: var(--light-body);
  line-height: 1.6;
}

/* Desktop: horizontal (imagem esquerda, texto direita) */
@media (min-width: 640px) {
  .bonus-row {
    display: flex;
    flex-direction: row;
  }

  .bonus-row__img {
    width: 180px;
    height: auto;
    flex-shrink: 0;
    border-radius: 0;
  }

  .bonus-row__content { padding: 1.5rem; }
}

@media (min-width: 1024px) {
  .bonus-row__img { width: 220px; }
}


/* ══════════════════════════════════
   12. DEPOIMENTOS
══════════════════════════════════ */
.section--prova .section__title { color: var(--dark-text); }

.depo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.depo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-borda);
  border-left: 3px solid var(--vinho);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
}

.depo-card p {
  font-size: 0.88rem;
  color: var(--dark-body);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.depo-card cite {
  font-size: 0.8rem;
  color: var(--dark-muted);
  font-style: normal;
  font-weight: 600;
}

@media (min-width: 600px) {
  .depo-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .depo-grid { grid-template-columns: 1fr 1fr 1fr; }
}


/* ══════════════════════════════════
   13. OFERTA
══════════════════════════════════ */
.section--oferta .section__title { color: var(--dark-text); }

.oferta-box {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.oferta-box__pre {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark-muted);
}

.oferta-box__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 900;
  color: var(--dark-text);
  text-align: center;
}

/* Stack de itens */
.oferta-stack {
  list-style: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-borda);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.oferta-stack__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--dark-borda);
}

.oferta-stack__item:last-child { border-bottom: none; }

.oferta-stack__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--verde);
}

.oferta-stack__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.oferta-stack__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-text);
}

.oferta-stack__desc {
  font-size: 0.75rem;
  color: var(--dark-muted);
}

.oferta-stack__price {
  font-size: 0.82rem;
  color: var(--dark-muted);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Total */
.oferta-total {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(232,128,90,0.4);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 0 24px rgba(232,128,90,0.12);
}

.oferta-total__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--dark-body);
}

.oferta-total__row--saving {
  color: var(--verde);
  font-weight: 700;
}

.oferta-total__saving { font-weight: 900; }

.oferta-total__divider {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0.5rem 0;
}

.oferta-total__row--final {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark-text);
  padding-top: 0.4rem;
}

.oferta-total__price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(232,128,90,0.35);
}

.oferta-total__strike {
  text-decoration: line-through;
  color: var(--dark-muted);
}

/* Countdown na oferta */
.countdown-oferta {
  text-align: center;
  padding: 1rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,215,0,0.15);
}

.countdown-oferta__label {
  font-size: 0.72rem;
  color: var(--dark-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.countdown__timer {
  font-family: monospace;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ouro);
  letter-spacing: 3px;
  line-height: 1;
  display: block;
  margin: 0.2rem 0;
}

.countdown-oferta__sub {
  font-size: 0.72rem;
  color: var(--dark-muted);
  margin-top: 0.2rem;
}

/* Botão CTA */
.btn--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 28px rgba(232,128,90,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232,128,90,0.55);
}

.btn--cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Garantia mini */
.garantia-box-mini {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-borda);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
}

.garantia-box-mini svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  stroke: var(--verde);
}

.garantia-box-mini strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  display: block;
  margin-bottom: 0.15rem;
}

.garantia-box-mini span {
  font-size: 0.82rem;
  color: var(--dark-muted);
}


/* ══════════════════════════════════
   14. ESPECIALISTA
══════════════════════════════════ */
.especialista-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  background: var(--light-card);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.especialista-card__photo-wrap {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--light-rose);
}

.especialista-card__photo { width: 100%; height: 100%; object-fit: cover; }

.especialista-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light-text);
  margin: 0.5rem 0 0.25rem;
}

.especialista-card__title {
  font-size: 0.82rem;
  color: var(--vinho);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.especialista-card__bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--light-body);
}

.section--especialista .section__title { color: var(--light-text); }

@media (min-width: 640px) {
  .especialista-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  .especialista-card__photo-wrap { width: 120px; height: 120px; }
}


/* ══════════════════════════════════
   15. FOOTER
══════════════════════════════════ */
.footer {
  background: var(--dark-card);
  padding: 2.5rem 0;
  text-align: center;
}

.footer__logo {
  height: 36px;
  margin: 0 auto 0.75rem;
}

.footer__brand {
  font-size: 0.85rem;
  color: var(--dark-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--dark-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ══════════════════════════════════
   16. COMPONENTES GLOBAIS
══════════════════════════════════ */

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
}

.badge--product {
  background: rgba(139,34,82,0.2);
  color: #F5B8D0;
  border: 1px solid rgba(139,34,82,0.3);
}

/* Reveal: sem animação (conteúdo sempre visível) */
.reveal { opacity: 1; transform: none; }
