/* =======================================================
   styles.css – Promoção Porto Seguro – Última Semana
   Domínio: promocaoporto.felipeconsorcio.com.br
   ======================================================= */

/* -------------------------------------------------------
   1. VARIÁVEIS DE COR E TIPOGRAFIA
   ------------------------------------------------------- */
:root {
  /* Azuis Porto Seguro */
  --blue-900: #00112E;
  --blue-800: #00205B;
  --blue-700: #002F80;
  --blue-600: #003DA5;
  --blue-500: #004FB6;
  --blue-400: #0066CC;

  /* Urgência */
  --yellow:      #FFC200;
  --yellow-dark: #E5A800;
  --red:         #DC2626;
  --red-light:   #EF4444;

  /* WhatsApp */
  --wa-green:      #25D366;
  --wa-green-dark: #1DAB5A;

  /* Neutros */
  --white:     #FFFFFF;
  --gray-50:   #F4F7FB;
  --gray-100:  #E9EEF6;
  --gray-200:  #D1DBE8;
  --gray-400:  #8FA3BE;
  --gray-600:  #4B6080;
  --gray-900:  #0F1F36;

  /* Tipografia */
  --font: 'Segoe UI', Arial, Helvetica, sans-serif;

  /* Layout */
  --container: 1160px;
  --radius:    12px;
  --radius-sm: 6px;
  --radius-xl: 24px;

  /* Sombras */
  --shadow:    0 4px 24px rgba(0,32,91,0.10);
  --shadow-md: 0 6px 32px rgba(0,32,91,0.15);
  --shadow-lg: 0 12px 48px rgba(0,32,91,0.20);

  /* Transição padrão */
  --ease: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

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

/* -------------------------------------------------------
   4. BOTÕES
   ------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* Tamanhos */
.btn--sm  { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn--xl  { padding: 20px 52px; font-size: 1.15rem; border-radius: 50px; }
.btn--block { display: flex; width: 100%; }

/* WhatsApp */
.btn--whatsapp {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.30);
}
.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: var(--wa-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.42);
}

/* Amarelo */
.btn--yellow {
  background: var(--yellow);
  color: var(--blue-800);
  box-shadow: 0 4px 18px rgba(255,194,0,0.28);
}
.btn--yellow:hover,
.btn--yellow:focus-visible {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,194,0,0.40);
}

/* Azul */
.btn--blue {
  background: var(--blue-600);
  color: var(--white);
}
.btn--blue:hover,
.btn--blue:focus-visible {
  background: var(--blue-800);
  transform: translateY(-2px);
}

/* Contorno */
.btn--outline {
  background: transparent;
  color: var(--blue-600);
  border: 2px solid var(--blue-600);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}

/* Ghost (branco transparente) */
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.30);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn__icon { flex-shrink: 0; }

/* -------------------------------------------------------
   5. CABEÇALHOS DE SEÇÃO
   ------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--blue-800);
  line-height: 1.18;
  margin-bottom: 12px;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
}

.section-subtitle--light { color: rgba(255,255,255,0.72); }

/* -------------------------------------------------------
   6. BARRA DE URGÊNCIA (STICKY NO TOPO)
   ------------------------------------------------------- */
.urgency-bar {
  background: linear-gradient(90deg, var(--blue-900) 0%, #001842 50%, var(--blue-900) 100%);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}

.urgency-bar__text {
  font-size: clamp(0.72rem, 1.8vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--yellow);
  text-align: center;
  animation: textGlow 2.6s ease-in-out infinite;
}

.urgency-bar__icon {
  color: var(--yellow);
  font-size: 1rem;
  animation: iconBounce 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes textGlow {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255,194,0,0.55);
  }
  50% {
    opacity: 0.88;
    text-shadow: 0 0 22px rgba(255,194,0,0.95), 0 0 48px rgba(255,194,0,0.35);
  }
}

@keyframes iconBounce {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.22); }
}

/* -------------------------------------------------------
   7. HEADER
   ------------------------------------------------------- */
.header {
  background: var(--blue-800);
  padding: 14px 0;
  border-bottom: 3px solid var(--blue-500);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header__logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  /* screen: pixels pretos viram transparentes, brancos ficam brancos — remove o fundo preto da logo */
  mix-blend-mode: screen;
}

.header__partner {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* -------------------------------------------------------
   8. SELOS (SEALS)
   ------------------------------------------------------- */
.seal {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seal--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 12px rgba(220,38,38,0.55);
  animation: sealPulseRed 2.2s ease-in-out infinite;
}

.seal--yellow {
  background: var(--yellow);
  color: var(--blue-800);
  box-shadow: 0 0 12px rgba(255,194,0,0.55);
  animation: sealPulseYellow 2.2s ease-in-out infinite;
}

.seal--outline {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.28);
}

@keyframes sealPulseRed {
  0%, 100% { box-shadow: 0 0 10px rgba(220,38,38,0.45); }
  50%       { box-shadow: 0 0 22px rgba(220,38,38,0.80), 0 0 0 6px rgba(220,38,38,0.08); }
}

@keyframes sealPulseYellow {
  0%, 100% { box-shadow: 0 0 10px rgba(255,194,0,0.45); }
  50%       { box-shadow: 0 0 22px rgba(255,194,0,0.80), 0 0 0 6px rgba(255,194,0,0.08); }
}

/* -------------------------------------------------------
   9. HERO
   ------------------------------------------------------- */
.hero {
  background: linear-gradient(140deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-600) 100%);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Padrão sutil de fundo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='32' cy='32' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__seals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero__headline {
  font-size: clamp(1.6rem, 3.2vw, 2.55rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero__subheadline {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 14px;
  line-height: 1.55;
}

.hero__subheadline strong {
  color: var(--yellow);
  font-weight: 800;
}

.hero__support {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image {
  width: 100%;
  height: auto;
  min-height: 340px;
  object-fit: cover;
  display: block;
  /* Placeholder azul enquanto imagem não carrega */
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
}

.hero__img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--blue-800);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* -------------------------------------------------------
   10. PREÇOS
   ------------------------------------------------------- */
.prices {
  padding: 80px 0;
  background: var(--gray-50);
}

.prices__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.prices__tab {
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.93rem;
  font-weight: 700;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--ease);
}

.prices__tab--active,
.prices__tab:hover,
.prices__tab:focus-visible {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
  outline: none;
}

.prices__panel        { display: none; }
.prices__panel--active { display: block; }

.prices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Card de preço */
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 2px solid var(--gray-100);
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-400);
}

.price-card--featured {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-md);
}

.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--blue-800);
  padding: 4px 18px;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.price-card__category {
  font-size: 0.72rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.price-card__credit {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-800);
  line-height: 1;
}

.price-card__credit-label {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: -4px;
}

.price-card__divider {
  border: none;
  border-top: 1px solid var(--gray-100);
  margin: 4px 0;
}

.price-card__from {
  font-size: 0.78rem;
  color: var(--gray-600);
}

.price-card__value {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--blue-600);
  line-height: 1;
}

.price-card__value span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
}

.price-card .btn { margin-top: auto; }

.prices__footer {
  text-align: center;
  padding-top: 8px;
}

/* -------------------------------------------------------
   11. TABELAS DA CAMPANHA
   ------------------------------------------------------- */
.tables-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--blue-800) 0%, var(--blue-900) 100%);
}

.tables-category {
  margin-bottom: 64px;
}

.tables-category:last-child { margin-bottom: 0; }

.tables-category__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.table-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  background: var(--blue-700);
  /* Sem aspect-ratio fixo: a imagem define a altura, mostrando todos os valores */
}

.table-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.table-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.36s ease;
}

.table-card:hover .table-card__img { transform: scale(1.04); }

.table-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,32,91,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
}

.table-card:hover .table-card__overlay,
.table-card:focus-visible .table-card__overlay {
  opacity: 1;
}

.table-card__zoom-icon {
  background: var(--white);
  color: var(--blue-800);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Lazy loading */
.lazy {
  opacity: 0;
  transition: opacity 0.4s;
}
.lazy.loaded { opacity: 1; }

.tables-category__cta { display: block; width: fit-content; }

/* -------------------------------------------------------
   12. MELHORES GRUPOS
   ------------------------------------------------------- */
.groups {
  padding: 80px 0;
  background: var(--white);
}

.groups__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.group-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 2px solid var(--gray-100);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.group-card:hover {
  border-color: var(--blue-500);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.group-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}

.group-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-800);
  margin-bottom: 10px;
  line-height: 1.3;
}

.group-card__text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.groups__cta { text-align: center; }

/* -------------------------------------------------------
   13. URGÊNCIA COM CONTADOR
   ------------------------------------------------------- */
.urgency-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, #001A42 100%);
  padding: 80px 0;
}

.urgency-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.urgency-section__title {
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.2;
  margin-bottom: 26px;
}

.urgency-section__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 36px;
}

.urgency-section__item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: rgba(255,255,255,0.88);
  font-size: 1.02rem;
}

.urgency-section__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 8px rgba(255,194,0,0.7);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

/* Contador regressivo */
.countdown {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}

.countdown__label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 20px;
}

.countdown__display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.countdown__block { text-align: center; }

.countdown__num {
  display: block;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 58px;
}

.countdown__unit {
  display: block;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.40);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 5px;
}

.countdown__colon {
  font-size: 2rem;
  color: var(--yellow);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
  opacity: 0.7;
}

.countdown__end {
  margin-top: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* -------------------------------------------------------
   14. OBJETIVOS
   ------------------------------------------------------- */
.goals {
  padding: 80px 0;
  background: var(--gray-50);
}

.goals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.goal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid var(--gray-100);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.goal-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-500);
  box-shadow: var(--shadow-md);
}

.goal-card__icon {
  font-size: 2.4rem;
  line-height: 1;
}

.goal-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue-800);
}

.goal-card__text {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
}

/* -------------------------------------------------------
   15. CTA FINAL
   ------------------------------------------------------- */
.cta-final {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-900) 100%);
  padding: 100px 0;
}

.cta-final__inner {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.cta-final__title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-final__subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
}

.cta-final__benefit {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.18);
}

/* -------------------------------------------------------
   16. RODAPÉ
   ------------------------------------------------------- */
.footer {
  background: var(--blue-900);
  padding-top: 40px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 36px;
  flex-wrap: wrap;
}

.footer__logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  margin-bottom: 14px;
  mix-blend-mode: screen;
}

.footer__legal {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.38);
  max-width: 520px;
  line-height: 1.75;
}

.footer__legal strong {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.footer__contact { flex-shrink: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 0;
}

.footer__bottom p {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* -------------------------------------------------------
   17. MODAL DE IMAGEM
   ------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal__box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: var(--gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-900);
  cursor: pointer;
  transition: all var(--ease);
  z-index: 2;
}

.modal__close:hover {
  background: var(--red);
  color: var(--white);
}

.modal__img {
  width: 100%;
  border-radius: var(--radius-sm);
  display: block;
}

/* -------------------------------------------------------
   18. BOTÃO FIXO WHATSAPP
   ------------------------------------------------------- */
.fixed-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform var(--ease), box-shadow var(--ease);
  animation: waPulse 3.2s ease-in-out infinite;
}

.fixed-wa:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 36px rgba(37,211,102,0.60);
  animation: none;
}

.fixed-wa:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.72), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* -------------------------------------------------------
   19. ANIMAÇÃO DE ENTRADA (SCROLL REVEAL)
   ------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------
   20. RESPONSIVIDADE
   ------------------------------------------------------- */

/* Tablet grande */
@media (max-width: 1024px) {
  .goals__grid  { grid-template-columns: repeat(2, 1fr); }
  .groups__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__seals,
  .hero__ctas {
    justify-content: center;
  }

  .hero__image-wrap {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .prices__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .tables-grid { grid-template-columns: 1fr; }

  .groups__grid { grid-template-columns: 1fr; }

  .urgency-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__inner { flex-direction: column; }

  /* Botão fixo: só ícone no mobile */
  .fixed-wa__label { display: none; }
  .fixed-wa {
    border-radius: 50%;
    padding: 16px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .goals__grid { grid-template-columns: 1fr; }

  .urgency-bar__icon:last-child { display: none; }

  .btn--xl { padding: 16px 32px; font-size: 1rem; }

  .cta-final__benefit { font-size: 0.82rem; padding: 7px 16px; }

  .countdown__num { font-size: 1.9rem; min-width: 46px; }
}
