/* =========================================================
   RESUMOS APROVA — Landing Page Anatomia Humana
   Style.css — limpo, leve, responsivo
   ========================================================= */

/* ---------- 1. TOKENS / VARIÁVEIS ---------- */
:root {
  /* Cores */
  --bg-light:        #fff8f6;
  --bg-white:        #ffffff;
  --pink-soft:       #f9d7d3;   /* fundo seção amostras */
  --pink-dor:        #df8e83;   /* fundo seção dor (gradient base) */
  --pink-dor-2:      #e0a399;
  --salmon:          #ef6f61;   /* accent principal */
  --salmon-strong:   #d9594c;
  --green:           #1fa84f;   /* botões CTA */
  --green-hover:     #168a40;
  --green-light:     #eaf9ef;
  --blue-gray:       #7d8aa3;   /* seção formato digital */
  --blue-gray-2:     #5e6b85;
  --text-dark:       #1f1f1f;
  --text-secondary:  #555;
  --text-soft:       #777;
  --black-badge:     #1a1a1a;
  --yellow:          #ffd23a;
  --red-warn:        #e02020;

  /* Tipografia */
  --font-base:       "Helvetica Neue", Arial, Helvetica, system-ui, sans-serif;

  /* Layout */
  --container-max:   1180px;
  --radius:          14px;
  --radius-lg:       22px;
  --shadow-sm:       0 4px 16px rgba(0,0,0,.08);
  --shadow-md:       0 8px 28px rgba(0,0,0,.12);
  --shadow-lg:       0 16px 40px rgba(0,0,0,.18);
}

/* ---------- 2. RESET LEVE ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; padding: 0; margin: 0; }

/* ---------- 3. UTILITÁRIOS ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.accent        { color: var(--salmon); }
.accent-strong { color: var(--salmon-strong); font-weight: 700; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-align: center;
  margin: 0 0 .4em;
  letter-spacing: -.5px;
}
.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0 0 2.5rem;
}

/* ---------- 4. BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: .5px;
  text-align: center;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  text-transform: uppercase;
  line-height: 1.1;
}
.btn:focus-visible { outline: 3px solid #000; outline-offset: 3px; }

.btn--green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 0 var(--green-hover), 0 10px 20px rgba(31,168,79,.25);
}
.btn--green:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 #0f6e32, 0 14px 26px rgba(31,168,79,.32);
}

.btn--md { padding: 14px 28px; font-size: 1rem; }
.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn--xl { padding: 22px 44px; font-size: 1.25rem; }

.btn--ghost {
  background: #b8c9a6;
  color: #fff;
  box-shadow: 0 4px 0 #97a784;
}
.btn--ghost:hover { background: #a1b690; transform: translateY(-1px); }

/* AJUSTE 9: btn--subtle — verde acinzentado/oliva, menos chamativo
   que o btn--green do combo. Mantém usabilidade mas hierarquia visual
   inferior, pra incentivar a escolha do combo (mais escolhido). */
.btn--subtle {
  background: #a8b89a;
  color: #fff;
  box-shadow: 0 4px 0 #8fa07e, 0 6px 12px rgba(0,0,0,.08);
}
.btn--subtle:hover {
  background: #8fa07e;
  transform: translateY(-1px);
  box-shadow: 0 5px 0 #7a8a6a, 0 8px 16px rgba(0,0,0,.12);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--bg-light);
  padding: 60px 0 80px;
}

/* AJUSTE 1: Layout empilhado e centralizado */
.hero__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero__stack > * {
  max-width: 760px;
  width: 100%;
}
/* Força centralização em cada elemento — blinda contra cache e heranças */
.hero__stack .hero__title,
.hero__stack .hero__subtitle,
.hero__stack .hero__support,
.hero__stack .hero__cta-text {
  text-align: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.hero__title {
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 .6rem;
  letter-spacing: -.5px;
  text-align: center;
}
.hero__subtitle {
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0 0 1.5rem;
  text-align: center;
}
.hero__support {
  font-size: 1.05rem;
  margin: 1.5rem 0 1.4rem;
  font-weight: 600;
  text-align: center;
}
.hero__cta-text {
  text-align: center;
  font-weight: 700;
  margin: 1.4rem 0 1rem;
}

/* Lista de sistemas (grid 2 colunas) */
.systems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin: 1.2rem 0 1.6rem;
  text-align: left;
}
.systems li {
  background: var(--salmon);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  padding: 12px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(239,111,97,.25);
  letter-spacing: .3px;
}
.systems__arrow {
  background: #fff;
  color: var(--salmon);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 900;
  font-size: .8rem;
  flex-shrink: 0;
}
.systems__full { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }

/* AJUSTE 2: SANFONA DE SISTEMAS (substitui a lista estática) */
.systems-accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin: 1.2rem 0 1.6rem;
  text-align: left;
  width: 100%;
}
.sys-item {
  background: var(--salmon);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(239,111,97,.25);
  align-self: start; /* impede que itens se estiquem quando o vizinho está aberto */
}
.sys-item summary {
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .3px;
  user-select: none;
}
.sys-item summary::-webkit-details-marker { display: none; }
.sys-item summary::marker { display: none; }
.sys-arrow {
  background: #fff;
  color: var(--salmon);
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 900;
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform .22s ease;
}
.sys-item[open] .sys-arrow { transform: rotate(90deg); }
.sys-item ul {
  margin: 0;
  padding: 4px 16px 14px 40px;
  background: rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sys-item ul li {
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.45;
  list-style: disc;
}

.hero__media img { margin: 0 auto; max-width: 420px; width: 100%; height: auto; }
.hero__media { margin: 1.5rem 0; }

/* =========================================================
   AMOSTRAS
   ========================================================= */
.amostras {
  background: var(--pink-soft);
  padding: 70px 0 30px; /* ajuste: padding-bottom reduzido de 80px → 30px */
}
.amostras__title { color: var(--salmon-strong); }
.amostras__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* =========================================================
   CARROSSEL (genérico para amostras e feedbacks)
   ========================================================= */
.carousel {
  position: relative;
}
.carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 6px 24px;
  scrollbar-width: thin;
  /* AJUSTE 3: alinha imagens no centro vertical pra ficar visualmente harmônico */
  align-items: center;
}
.carousel__track::-webkit-scrollbar { height: 8px; }
.carousel__track::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); border-radius: 8px; }

/* AJUSTE 3: imagens com largura fixa e altura natural (sem corte) */
.carousel__img,
.carousel__track img {
  flex: 0 0 auto;
  width: 280px;
  height: auto;        /* altura natural — sem corte */
  max-height: 480px;   /* teto pra não estourar layout em imagens muito altas */
  object-fit: contain; /* fallback se max-height for atingido */
  border-radius: var(--radius);
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  background: #fff;
  cursor: zoom-in;     /* indica clicável */
  transition: transform .2s ease, box-shadow .2s ease;
}
.carousel__img:hover,
.carousel__track img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.carousel__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: none;
  font-size: 1.7rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  color: var(--salmon-strong);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: transform .15s ease, background .15s ease;
}
.carousel__nav:hover { transform: translateY(-50%) scale(1.08); background: #fff; }
.carousel__nav--prev { left: -8px; }
.carousel__nav--next { right: -8px; }

/* =========================================================
   AJUSTE 3: LIGHTBOX (overlay ao clicar na imagem)
   ========================================================= */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: lightboxFade .2s ease-out;
}
.lightbox.is-open { display: flex; }
@keyframes lightboxFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox__img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  cursor: zoom-out;
}
.lightbox__close {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  font-weight: 700;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
}
.lightbox__close:hover {
  background: rgba(255,255,255,.25);
  transform: scale(1.08);
}

/* =========================================================
   DOR + SOLUÇÃO
   ========================================================= */
.dor {
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--pink-dor) 100%);
  color: #fff;
  padding: 28px 0 80px; /* ajuste: padding-top reduzido de 80px → 28px */
  text-align: center;
}
/* AJUSTE 4: sombra sutil para melhorar legibilidade dos textos brancos */
.dor__text-shadow {
  text-shadow: 0 2px 8px rgba(0,0,0,.22), 0 1px 3px rgba(0,0,0,.18);
}
.dor__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin: 0 0 .3em;
  letter-spacing: -.5px;
}
.dor__subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
}
.dor__text {
  max-width: 720px;
  margin: 0 auto 1.8rem;
  color: #1f1f1f;
  font-weight: 700;
  font-size: 1.05rem;
}
.dor__bridge {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 0 2rem;
}
.dor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.dor__card {
  background: #fff;
  color: var(--text-dark);
  border-radius: 24px;
  padding: 28px 30px;
  box-shadow: var(--shadow-md);
}
.checklist li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: .98rem;
  font-weight: 500;
}
.checklist .check {
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.dor__cta-text {
  margin-top: 2.5rem;
  font-weight: 600;
  font-size: 1rem;
}
.dor__cta { margin-top: 1rem; }

/* =========================================================
   PROVA SOCIAL
   ========================================================= */
.prova-social {
  background: var(--salmon);
  color: #fff;
  padding: 80px 0;
}
.prova-social__title { color: #fff; }
.prova-social__subtitle { color: rgba(255,255,255,.9); }

/* =========================================================
   FORMATO DIGITAL
   ========================================================= */
.digital {
  background: var(--blue-gray);
  color: #fff;
  padding: 60px 0;
}
.digital__title {
  text-align: center;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  margin: 0 0 2rem;
  letter-spacing: -.3px;
}
.digital__list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.digital__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 1rem;
}
.digital__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 28px;
}

/* =========================================================
   OFERTA
   ========================================================= */
.oferta {
  background: var(--bg-light);
  padding: 80px 0 100px;
  text-align: center;
}
.oferta__badge {
  background: var(--red-warn);
  color: #fff;
  font-weight: 900;
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: .95rem;
  letter-spacing: .5px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.oferta__title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin: 0 0 .6rem;
  letter-spacing: -.4px;
}
.oferta__sub {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1.8rem;
}
.oferta__warn {
  color: var(--text-secondary);
  font-size: .95rem;
  max-width: 540px;
  margin: 0 auto 3rem;
  font-weight: 500;
}
.oferta__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  text-align: left;
  align-items: stretch;
}

/* AJUSTE 6: ordem no DESKTOP (anatomia esquerda, combo direita) */
.card-oferta--anatomia { order: 1; }
.card-oferta--combo    { order: 2; }

/* =========================================================
   CARD DE OFERTA
   ========================================================= */
.card-oferta {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-oferta:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-oferta--destaque {
  border: 2px solid var(--salmon);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.card-oferta--destaque:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-oferta__media {
  margin: -10px auto 18px;
  text-align: center;
}
.card-oferta__media img {
  max-height: 280px;
  width: auto;
  margin: 0 auto;
}

/* AJUSTE 8: selo MAIS ESCOLHIDO realinhado — centralizado verticalmente
   e com largura mínima pra não desalinhar com cards de altura diferente.
   Border-radius INVERTIDO porque o selo tem transform:rotate(180deg),
   o que espelha os lados — então pra arredondar na esquerda visual
   precisamos declarar como se fosse na direita. */
.card-oferta__selo {
  position: absolute;
  top: 0; left: 0;
  bottom: 0;
  background: var(--black-badge);
  color: var(--yellow);
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: 1.5px;
  padding: 0 6px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  text-transform: uppercase;
}

/* Compensa o espaço do selo no card destaque */
.card-oferta--destaque .card-oferta__media,
.card-oferta--destaque .card-oferta__title,
.card-oferta--destaque .card-oferta__pricewrap,
.card-oferta--destaque .card-oferta__fire,
.card-oferta--destaque .card-oferta__list,
.card-oferta--destaque .btn { margin-left: 36px; }

.card-oferta__title {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 0 1rem;
  letter-spacing: -.3px;
}
.card-oferta__pricewrap { margin-bottom: 1rem; }
.card-oferta__pricefrom {
  display: block;
  color: var(--text-secondary);
  font-size: .9rem;
  margin-bottom: 4px;
}
.card-oferta__price {
  color: var(--green);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 1rem;
}
/* AJUSTE 7: preço parcelado MAIOR e mais destacado */
.card-oferta__price--big {
  font-size: 3.4rem;
}
.card-oferta__fire {
  color: var(--red-warn);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 1rem;
}
.card-oferta__list {
  margin-bottom: 1.8rem;
  flex-grow: 1;
}
.card-oferta__list li {
  padding: 6px 0;
  font-size: .98rem;
  line-height: 1.45;
}
.card-oferta .btn {
  margin-top: auto;
  align-self: center;  /* não estica mais — fica do tamanho natural + max-width abaixo */
  text-align: center;
  width: auto;
  max-width: 320px;
}

/* =========================================================
   PULSE — chama atenção pro botão do combo (mais escolhido)
   Combinação de escala leve + glow verde
   ========================================================= */
.card-oferta--combo .btn,
.ic-oferta .btn--green {
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 6px 0 var(--green-hover),
      0 10px 20px rgba(31,168,79,.25),
      0 0 0 0 rgba(31,168,79,.55);
  }
  50% {
    transform: scale(1.04);
    box-shadow:
      0 6px 0 var(--green-hover),
      0 12px 26px rgba(31,168,79,.35),
      0 0 0 12px rgba(31,168,79,0);
  }
}
/* Pausa o pulse no hover pro usuário interagir com calma */
.card-oferta--combo .btn:hover,
.ic-oferta .btn--green:hover {
  animation-play-state: paused;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  background: var(--blue-gray-2);
  color: #fff;
  padding: 70px 0 60px;
}
.faq__title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 2rem;
  font-weight: 900;
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
}
.faq__item {
  background: var(--blue-gray);
  border-radius: 6px;
  overflow: hidden;
  transition: background .15s;
}
.faq__item:hover { background: #8b98b0; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__arrow {
  background: #fff;
  color: var(--blue-gray-2);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 900;
  font-size: .9rem;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq__item[open] .faq__arrow { transform: rotate(90deg); }
.faq__item p {
  padding: 0 20px 18px 56px;
  margin: 0;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  font-weight: 400;
}

.faq__cta-text {
  text-align: center;
  margin-top: 3rem;
  font-weight: 700;
}
.faq__cta { text-align: center; margin-top: 1rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--pink-soft);
  color: var(--text-dark);
  padding: 30px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.footer__col p { margin: 4px 0; font-size: .88rem; }
.footer__col a { text-decoration: underline; }
.footer__social {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.footer__social a {
  background: var(--salmon);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform .15s;
}
.footer__social a:hover { transform: scale(1.1); }
.footer__logo { text-align: right; }

/* =========================================================
   PÁGINA INTERMEDIÁRIA (ic-*)
   ========================================================= */
.page-intermediaria { background: var(--bg-light); }

.ic-hero {
  padding: 80px 0 50px;
  text-align: center;
}
.ic-hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.8px;
  margin: 0 0 2rem;
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.ic-warn { font-size: .9em; }

.ic-hero__text {
  max-width: 620px;
  margin: 0 auto 2.4rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
}
.ic-red { color: var(--red-warn); }

.ic-hero__win {
  font-weight: 900;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.ic-hero__win--lg { font-size: 1.8rem; margin-top: 1rem; }

.ic-discount {
  display: inline-block;
  background: #000;
  border: 4px solid var(--yellow);
  border-radius: 22px;
  padding: 18px 50px;
  box-shadow: 0 0 0 6px rgba(255,210,58,.25);
  margin: .5rem 0;
}
.ic-discount span {
  color: var(--yellow);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.ic-hero__price-line {
  margin: 1.6rem auto 1.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  max-width: 600px;
}
.ic-green { color: var(--green); font-weight: 900; }

.ic-alert {
  background: var(--red-warn);
  color: #fff;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 10px;
  max-width: 680px;
  margin: 1.2rem auto 0;
  font-size: 1rem;
  box-shadow: 0 8px 22px rgba(224,32,32,.25);
}
.ic-yellow { color: var(--yellow); }

/* ---------- TIMER REGRESSIVO ---------- */
.timer {
  max-width: 540px;
  margin: 1.8rem auto 0;
  background: #1a1a1a;
  border: 3px solid var(--yellow);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 0 0 6px rgba(255,210,58,.18), 0 10px 30px rgba(0,0,0,.25);
  animation: timerPulse 2.4s ease-in-out infinite;
}
@keyframes timerPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(255,210,58,.18), 0 10px 30px rgba(0,0,0,.25); }
  50%      { box-shadow: 0 0 0 10px rgba(255,210,58,.10), 0 10px 30px rgba(0,0,0,.25); }
}
.timer__label {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 12px;
  letter-spacing: .3px;
}
.timer__clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.timer__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #000;
  border-radius: 10px;
  padding: 10px 16px;
  min-width: 72px;
}
.timer__num {
  color: var(--yellow);
  font-size: 2.2rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -1px;
}
.timer__unit {
  color: rgba(255,255,255,.7);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.timer__sep {
  color: var(--yellow);
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 2px;
  animation: timerBlink 1s steps(2, end) infinite;
}
@keyframes timerBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* Estado quando o timer está nos últimos 5 minutos (urgência extra) */
.timer.is-final .timer__num { color: #ff4d4d; }
.timer.is-final { border-color: #ff4d4d; }
.timer.is-final .timer__sep { color: #ff4d4d; }

/* Comparativo */
.ic-compare {
  padding: 50px 0;
  text-align: center;
}
.ic-compare__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin: 0 0 2rem;
}
.ic-compare__list {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 10px;
}
.ic-compare__list li {
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.ic-compare__list .check { color: var(--green); font-weight: 900; }

/* Oferta intermediária (card único) */
.ic-oferta {
  padding: 40px 0 80px;
}
.ic-oferta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ic-oferta__media {
  margin-bottom: -50px;
  position: relative;
  z-index: 2;
}
.ic-oferta__media img {
  max-width: 420px;
  width: 100%;
}

.card-oferta--solo {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}
.ic-fire {
  color: var(--red-warn);
  font-size: 1.05rem;
  margin: 0 0 1.2rem;
  font-weight: 700;
}
.card-oferta--destaque.card-oferta--solo .ic-fire { margin-left: 36px; }

/* Botão secundário ("vou ficar só com anatomia") */
.ic-secondary {
  margin-top: 3rem;
  text-align: center;
  width: 100%;
}
.ic-secondary__text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0 0 1rem;
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 900px) {
  .hero { padding: 40px 0 50px; }
  .hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero__media { max-width: 320px; margin: 1rem auto; }
  .hero__media img { max-width: 320px; }

  .dor__grid { grid-template-columns: 1fr; gap: 24px; }
  /* AJUSTE 5: mockup ABAIXO dos bullets no mobile (ordem natural do HTML) */
  .dor__media { max-width: 380px; margin: 0 auto; }

  .oferta__cards { grid-template-columns: 1fr; gap: 22px; }
  /* AJUSTE 6: no MOBILE o combo vem PRIMEIRO (order 1), anatomia depois (order 2) */
  .card-oferta--combo    { order: 1; }
  .card-oferta--anatomia { order: 2; }
  .card-oferta--destaque { transform: none; }
  .card-oferta--destaque:hover { transform: translateY(-4px); }

  .footer__grid { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer__logo { text-align: center; }
  .footer__col p { font-size: .85rem; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }

  .btn--xl { padding: 18px 28px; font-size: 1.05rem; width: 100%; }
  .btn--lg { padding: 16px 24px; font-size: 1rem; width: 100%; }

  /* No mobile, botões dentro dos cards de oferta NÃO ocupam 100%
     (senão ficam apertados, encostando nas bordas do card destaque) */
  .card-oferta .btn {
    width: auto;
    max-width: 280px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero__title { font-size: 1.7rem; }
  .systems { grid-template-columns: 1fr; }
  .systems__full { max-width: 100%; }
  .systems li { font-size: .78rem; padding: 10px 12px; }
  /* AJUSTE 2 mobile: sanfona em 1 coluna */
  .systems-accordion { grid-template-columns: 1fr; }
  .sys-item summary { font-size: .78rem; padding: 10px 12px; }
  .sys-item ul { padding: 4px 14px 12px 36px; }
  .sys-item ul li { font-size: .76rem; }

  .section-title { font-size: 1.6rem; }
  .dor__title { font-size: 1.8rem; }
  .dor__subtitle { font-size: 1.1rem; }
  .dor__bridge { font-size: 1.3rem; }
  .dor__card { padding: 22px 20px; }

  .carousel__track img,
  .carousel__img { width: 230px; max-height: 380px; }
  .lightbox__close { top: 12px; right: 14px; width: 40px; height: 40px; font-size: 1.4rem; }
  .carousel__nav { width: 38px; height: 38px; font-size: 1.4rem; }
  .carousel__nav--prev { left: 2px; }
  .carousel__nav--next { right: 2px; }

  .oferta { padding: 60px 0 70px; }
  .oferta__title { font-size: 1.5rem; }
  .card-oferta { padding: 26px 22px; }
  .card-oferta--destaque .card-oferta__media,
  .card-oferta--destaque .card-oferta__title,
  .card-oferta--destaque .card-oferta__pricewrap,
  .card-oferta--destaque .card-oferta__fire,
  .card-oferta--destaque .card-oferta__list,
  .card-oferta--destaque .btn,
  .card-oferta--destaque.card-oferta--solo .ic-fire { margin-left: 30px; }
  .card-oferta__price { font-size: 2.2rem; }
  /* AJUSTE 7: preço big ainda maior que o normal no mobile */
  .card-oferta__price--big { font-size: 2.9rem; }
  .card-oferta__title { font-size: 1.25rem; }

  .ic-hero { padding: 50px 0 30px; }
  .ic-hero__title { font-size: 1.7rem; gap: 10px; }
  .ic-hero__text { font-size: 1rem; }
  .ic-hero__win { font-size: 1.2rem; }
  .ic-hero__win--lg { font-size: 1.4rem; }
  .ic-discount { padding: 14px 32px; }
  .ic-alert { font-size: .9rem; padding: 14px 18px; }

  .ic-oferta__media { margin-bottom: -30px; }
  .ic-oferta__media img { max-width: 280px; }

  /* Timer responsivo no mobile */
  .timer { padding: 16px 12px; margin-top: 1.4rem; }
  .timer__label { font-size: .9rem; }
  .timer__block { padding: 8px 10px; min-width: 58px; }
  .timer__num { font-size: 1.7rem; }
  .timer__unit { font-size: .62rem; }
  .timer__sep { font-size: 1.4rem; }
  .timer__clock { gap: 4px; }

  .faq__item summary { font-size: .92rem; padding: 14px 16px; gap: 10px; }
  .faq__item p { padding: 0 16px 16px 46px; font-size: .9rem; }

  .digital__list li { font-size: .95rem; }
}

/* Foco acessível para details */
.faq__item summary:focus-visible { outline: 2px solid var(--yellow); outline-offset: -2px; }
