:root {
  --color-primary: #ece2ff;      /* background/detalhe */
  --color-secondary: #382164;    /* CTA/botões/texto forte */
  --color-accent-1: #f4e596;     /* destaque */
  --color-accent-2: #e5d7ff;     /* fundo/acento suave */
  --color-bg: #fff;
  --color-text: #2b1138;
  --color-muted: #5b4a65;
  --font-title: 'DM Serif Display', serif;
  --font-body: 'DM Serif Text', serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 999px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.12);
  --shadow-subtle: 0 8px 20px rgba(0, 0, 0, 0.08);

  --max-width: 1120px;
}

/* RESET SIMPLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-primary); /* sólido */
}

/* ANIMAÇÃO BASE */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduz animações se usuário preferir menos movimento */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

h1, h2, h3, h4, h5, h6,
.section-header h2,
.hero-title,
.plan-title,
.cta-title,
.partners-title {
  font-family: var(--font-title);
}


/* LAYOUT BASE */

.site-header {
  position: relative;
  top: 0;
  z-index: 20;

  background: #050018; /* preto */
  color: #f5f1f1;

  backdrop-filter: none; /* remove blur para visual sólido */
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 14px 16px;
}

/* ===== LINKS DO HEADER COMO TEXTO BRANCO ===== */

.nav a,
.nav .btn,
.nav .btn-primary,
.nav .btn-ghost,
.nav button {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #f5f1f1 !important;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.6;
}

.nav a.active {
  border-bottom: 2px solid #ffffff;
  padding-bottom: 2px;
}


/* opcional — remove movimentação dos botões herdada */
.nav a:hover,
.nav button:hover {
  transform: none !important;
}


.nav {
  position: absolute;
  right: 16px;     /* alinha o menu à direita */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 16px;
  align-items: center;
}


main {
  padding: 16px;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto 96px; /* espaçamento vertical maior entre seções */
}

.section-header {
  text-align: left;
  margin-bottom: 32px; /* mais espaço entre título/subtítulo e conteúdo */
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.site-header .logo span {
  color: #fff;
}


/* ===== SUBHEADER / MARQUEE ===== */

/* ===== (versão mais fina + mudança de cor) ===== */

.subheader-marquee {
  width: 100%;
  overflow: hidden;
  padding: 5px 0; /* antes era ~8px, agora ~30% mais fino */
  background: var(--color-accent-2);
  color: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.15);

  /* animação suave de cor */
  animation: marqueeColor 60s linear infinite alternate;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-size: 0.8rem; /* levemente menor para manter a finesse */
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-right: 10px;
}

/* movimento da direita → esquerda */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* transição suave entre cores */
@keyframes marqueeColor {
  0%   { background: #ecf97a; }  /* roxo secundário */
  50%  { background: #dbffa1; }  /* rosa claro primário */
  100% { background: #A6FF96; }  /* verde acento suave */
}

/* ===== FAIXA DE PARCEIROS — FULL WIDTH ===== */

.partners-strip {
  background: #000;
  padding: 16px 0 32px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);

  width: 100vw;
  margin-left: calc(50% - 50vw);
  text-align: center;
}

/* ===== TÍTULO DA FAIXA ===== */

.partners-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* ===== CARROSSEL ===== */

.partners-marquee {
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 100px;
  width: max-content;
  animation: partnersScroll 30s linear infinite;
}

.partners-track img {
  height: 100px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.partners-track img:hover {
  opacity: 1;
}

/* ANIMAÇÃO infinita */
@keyframes partnersScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* LOGO */

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: var(--color-secondary); /* sólido */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
  box-shadow: var(--shadow-subtle);
}

.logo-text {
  font-weight: 600;
  font-size: 1.1rem;
}

/* NAV */

.main-nav {
  position: absolute;
  right: 24px; /* ajuste se necessário */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: right;
  gap: 12px;
}

.nav-links {
  list-style: none;
  display: none;
  padding: 0;
  margin: 0;
  gap: 12px;
}

.nav-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-muted);
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link.active,
.nav-link:hover {
  background: rgba(188, 122, 249, 0.12);
  color: var(--color-text);
}

.nav-cta {
  display: none;
}

/* ===== FAQ SECTION ===== */

.faq-section {
  margin-bottom: 96px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: 0.25s ease;
}

.faq-item.open {
  border-color: var(--color-secondary);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.3rem;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 16px 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* MENU TOGGLE MOBILE */

.menu-toggle {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--color-secondary);
  color: #f5f1f1;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-subtle);
}

/* BOTÕES */

/* ===== BOTÕES PADRONIZADOS (PALETA #ece2ff, #382164, #f4e596, #e5d7ff e #f9f2c9) ===== */

.btn,
.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-lg,
.btn-plan,
.btn-plan-featured,
.plan-button {
  background: var(--color-accent-2); /* #e5d7ff */
  color: var(--color-secondary);     /* #382164 */
  border: 2px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  padding: 14px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(.4,0,.2,1);
  font-family: var(--font-body);
  font-size: 1rem;
}

/* FLIP NO HOVER */
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.btn-lg:hover,
.btn-plan:hover,
.btn-plan-featured:hover,
.plan-button:hover {
  background: var(--color-secondary); /* roxo escuro */
  color: #fff;
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

/* remove sombras antigas */
.btn,
.btn-primary,
.btn-plan,
.btn-plan-featured {
  box-shadow: none !important;
}

/* SELO DESTAQUE / HIGHLIGHT BADGE */

.highlight-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.highlight-badge.small {
  margin-bottom: 6px;
}

.highlight-pill {
  background: var(--color-accent-1); /* #F8FF95 */
  color: #4a3f09;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.highlight-note {
  font-size: 0.75rem;
  color: var(--color-text);
  opacity: 0.8;
}

/* HERO */

.hero {
  max-width: var(--max-width);
  margin: 48px auto 96px; /* mais respiro */
  display: flex;
  flex-direction: column;
  gap: 32px; /* mais espaço entre texto e imagem */
}

.hero-content h1 {
  font-size: 1.9rem;
  margin: 0 0 16px;
}

.hero-content p {
  margin: 0 0 20px;
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.hero-highlights li::before {
  content: "• ";
  color: var(--color-secondary);
}

.hero-media {
  position: relative;
  align-self: center;
}

.product-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 48%;
  background: #ffffff; /* sólido */
  border: 3px solid rgba(188, 122, 249, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.85rem;
  box-shadow: var(--shadow-soft);
  padding: 12px;
}

/* GRID / CARDS */

.grid {
  display: grid;
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 24px 22px; /* mais padding interno */
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.5;
}

/* BENEFÍCIOS - CARDS GRANDES */

.grid-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.grid-benefits .card {
  position: relative;
  padding: 26px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(188, 122, 249, 0.18);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 170px;
  transform: translateY(0);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.grid-benefits .card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.grid-benefits .card p {
  font-size: 0.9rem;
}

/* Hover “premium” com cor sólida suave */
.grid-benefits .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(160, 90, 240, 0.35);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(188, 122, 249, 0.4);
}

/* badges de confiança mantidos */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(248, 255, 149, 0.9);
  color: #4a3f09;
}

/* CTA FINAL */

.cta-final {
  max-width: var(--max-width);
  margin: 0 auto 120px;
  padding: 0 16px;
}

.cta-container {
  background: #ffffff;
  border-radius: 32px;
  padding: 32px 24px 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.cta-header {
  text-align: left;
}

.cta-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--color-text);
  font-weight: 700;
}

.cta-title span {
  color: var(--color-secondary);
}

.cta-subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.plans-grid {
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

.plan-card {
  border-radius: 24px;
  padding: 20px 18px 18px;
  background: #ffffff;
  border: 1px solid rgba(188, 122, 249, 0.18);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.plan-img {
  width: 100%;
  height: 160px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.plan-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-plan {
  background: var(--color-accent-2);
  color: var(--color-secondary);
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 4px 16px rgba(188, 122, 249, 0.4);
  transition: 0.2s ease;
}

.btn-plan:hover {
  background: var(--color-secondary);
  color: var(--color-accent-2);
}

.btn-plan-featured {
  background: var(--color-secondary);
  color: var(--color-accent-2);
  border: 2px solid #000000;
}

.btn-plan-featured:hover {
  background: #f2f2f2;
}


/* KIT CENTRAL DESTACADO */
.plan-featured {
  background: var(--color-accent-1) !important; /* #f4e596 */
  border: 2px solid #fff;
  transform: scale(1.03);
  color: #000 !important;
}

.plan-featured h3,
.plan-featured p,
.plan-featured li,
.plan-featured .plan-price,
.plan-featured .plan-installments,
.plan-featured .plan-save {
  color: #000 !important;
}

.plan-featured .plan-benefits li::before {
  color: #000 !important;
}

.plan-badge {
  background: var(--color-accent-3); /* #f9f2c9 */
  color: #382164;
}

/* BOTÃO DO KIT DESTACADO — HOVER COM TEXTO ESCURO */
.plan-featured .btn-plan:hover,
.plan-featured .btn-plan-featured:hover {
  background: var(--color-accent-2) !important;      /* mantém o flip */
  color: var(--color-secondary) !important;           /* texto escuro */
  border-color: #000 !important;    /* borda escura */
  transform: translateY(-2px);
}

/* elementos internos dos cards */

.plan-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-secondary);
  font-weight: 600;
}

.plan-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.plan-description {
  margin: 4px 0 8px;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.plan-price-block {
  margin-bottom: 6px;
}

.plan-price {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
}

.plan-installments {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.plan-save {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: var(--color-secondary);
}

/* destacados no card central sob fundo roxo */
.plan-featured .plan-description {
  color: rgba(255, 255, 255, 0.9);
}

.plan-featured .plan-save {
  color: #f8ff95;
}

.plan-benefits {
  list-style: none;
  padding: 0;
  margin: 8px 0 10px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.plan-benefits li + li {
  margin-top: 4px;
}

.plan-benefits li::before {
  content: "• ";
  color: var(--color-secondary);
}

.plan-featured .plan-benefits li::before {
  color: #f8ff95;
}

.plan-button {
  margin-top: auto;
  width: 100%;
}

/* Badge "mais popular" no card central */
.plan-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--color-accent-1);
  color: #4a3f09;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Garantia abaixo dos cards */

.cta-guarantee {
  font-size: 0.8rem;
  color: var(--color-muted);
  opacity: 0.85;
  margin: 0;
  margin-top: 6px;
}

/* RESPONSIVO CTA */

@media (min-width: 780px) {
  .cta-container {
    padding: 40px 32px 28px;
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .plan-featured {
    transform: translateY(-8px);
  }
}

/* CHECKOUT */

.checkout-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checkout-form h3 {
  margin-top: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.form-group label {
  font-size: 0.85rem;
}

.form-group input {
  border-radius: 999px;
  border: 1px solid rgba(188, 122, 249, 0.45);
  padding: 8px 12px;
  font-size: 0.9rem;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
}

.form-group input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 1px rgba(188, 122, 249, 0.4);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-summary {
  align-self: stretch;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.order-title {
  margin: 0;
  font-weight: 500;
}

.order-qty {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.order-price {
  font-weight: 600;
}

.order-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.order-total {
  font-weight: 600;
}

.order-note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* SELETOR DE KITS NO CHECKOUT */

.kit-selector {
  margin-bottom: 18px;
}

.kit-selector-title {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}

.kit-selector-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kit-option {
  border: 1px solid rgba(188, 122, 249, 0.45);
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--color-text);
  transition: 0.15s ease;
}

.kit-option:hover {
  background: rgba(188, 122, 249, 0.08);
}

.kit-option.active {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
  box-shadow: 0 10px 24px rgba(160, 90, 240, 0.45);
}

/* IMAGEM DO KIT NO CHECKOUT */

.checkout-kit-image {
  width: 100%;
  max-width: 220px;
  border-radius: 20px;
  display: block;
  margin: 0 auto 12px;
  object-fit: contain;
}

/* BLOG */

.grid-blog {
  grid-template-columns: 1fr;
}

.blog-card h3 {
  margin-bottom: 8px;
}

/* LEGAIS */

.legal-card p {
  margin-bottom: 10px;
  color: var(--color-muted);
}

/* FOOTER */

.site-footer {
  background: #000;
  color: #fff;
  padding: 32px 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  opacity: 0.7;
}


.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-link {
  border: none;
  background: rgba(255, 161, 245, 0.4);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.12s ease;
}

.footer-link:hover {
  background: rgba(188, 122, 249, 0.4);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* COOKIE BANNER */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
}

/* ANIMAÇÕES APLICADAS */

.hero,
.section {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

/* pequenos delays entre hero e seções */
.hero {
  animation-delay: 0.05s;
}

.section:nth-of-type(1) {
  animation-delay: 0.1s;
}

.section:nth-of-type(2) {
  animation-delay: 0.18s;
}

.section:nth-of-type(3) {
  animation-delay: 0.26s;
}

/* stagger em cards e CTA */

.grid-benefits .card,
.grid-testimonials .card,
.cta-container {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}


.grid-benefits .card:nth-child(1) { animation-delay: 0.22s; }
.grid-benefits .card:nth-child(2) { animation-delay: 0.28s; }
.grid-benefits .card:nth-child(3) { animation-delay: 0.34s; }
.grid-benefits .card:nth-child(4) { animation-delay: 0.40s; }

.grid-testimonials .card:nth-child(1) { animation-delay: 0.26s; }
.grid-testimonials .card:nth-child(2) { animation-delay: 0.32s; }
.grid-testimonials .card:nth-child(3) { animation-delay: 0.38s; }

.cta-container {
  animation-delay: 0.45s;
}

/* RESPONSIVIDADE */

@media (min-width: 720px) {
  body {
    background: var(--color-primary); /* sólido também no desktop */
  }

  main {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
  }

  .hero-media {
    flex: 0 0 auto;
  }

  .grid-benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .checkout-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .checkout-form {
    flex: 3;
  }

  .order-summary {
    flex: 2;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }

  .grid-blog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-header {
    padding: 12px 32px;
  }

  main {
    width: 100%;
  }

  .section,
  .cta-final {
    padding-inline: 16px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .cookie-banner {
    max-width: 640px;
    margin: 0 auto;
  }
}

/* NAV MOBILE ABERTO */

@media (max-width: 719px) {
  .main-nav.open .nav-links {
    position: absolute;
    top: 60px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.open .nav-cta {
    position: absolute;
    top: 160px;
    right: 16px;
    display: inline-flex;
  }
}

/* ===== HEADER — VERSÃO MOBILE ===== */
@media (max-width: 768px) {

  .site-header {
    justify-content: space-between;  /* logo esquerda + nav direita */
    padding: 12px 20px;
  }

  .logo {
    margin: 0; /* garante que fica totalmente à esquerda */
  }

  .nav {
    position: static;       /* remove absolute */
    transform: none;
    top: auto;
    right: auto;

    display: flex;
    gap: 16px;
    align-items: center;
  }

  .nav a {
    font-size: 0.9rem;      /* links menores no mobile */
    padding: 6px 0;
  }

  .logo span {
  font-size: 1.1rem;
  }
}
/* ===== HAMBURGER BUTTON ===== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  position: relative;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 30; /* fica acima do menu mobile */
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* ANIMAÇÃO — vira X */

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== MOBILE MENU (HEADER) ===== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background: #000;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  transition: 0.35s ease;
  z-index: 25;
  text-align: right;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  transition: opacity 0.2s ease;
}

.mobile-menu a:hover {
  opacity: 0.6;
}

.mobile-menu.show {
  transform: translateY(0);
}

/* ===== MOSTRAR HAMBURGER NO MOBILE ===== */

@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  /* esconder menu normal no mobile */
  .nav {
    display: none !important;
  }

  .site-header {
    justify-content: space-between;
  }
}
/* ===========================================================
   SLIDESHOW TEXTO + IMAGEM (4 BLOCOS)
=========================================================== */

.story-slideshow {
  max-width: var(--max-width);
  margin: 96px auto;
}

/* Container dos slides */
.story-slides {
  position: relative;
}

/* Cada slide */
.story-slide {
  display: none;
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.06);

  display: none; /* oculto por padrão */
  gap: 24px;
}

/* Slide ativo */
.story-slide.active {
  display: flex;
  flex-direction: column;
}

/* lado texto / lado imagem */
.story-text,
.story-media {
  flex: 1;
}

/* Título + texto */
.story-text h3 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 1.6rem;
}

.story-text p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Imagem */
.story-media {
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-accent-2);
}

.story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Hover: mesmo efeito de zoom do current faves / feel */
.story-slide:hover .story-media img {
  transform: scale(1.06) translateY(-4px);
}

/* Layout 50/50 em telas maiores */
@media (min-width: 880px) {
  .story-slide.active {
    flex-direction: row;
    align-items: center;
    padding: 34px 32px;
    gap: 32px;
  }

  .story-text h3 {
    font-size: 1.9rem;
  }
}

/* BOTÃO DO HERO — COMEÇA INVERTIDO */
.btn-hero {
  background: var(--color-secondary) !important;
  color: var(--color-primary) !important;
  border: 2px solid #000 !important;
  transform: none !important;
}

/* HOVER DO BOTÃO DO HERO — VOLTA PARA O PADRÃO */
.btn-hero:hover {
  background: var(--color-primary)!important;
  color: var(--color-secondary) !important;
  transform: translateY(-2px) !important;
}

/* Textos claros quando fundo é escuro */
.dark-bg,
.dark-bg * {
  color: #fff !important;
}

.partners-strip *,
.site-header *,
.site-footer * {
  color: #fff !important;
}

/* Espaçamento entre grandes seções */
.section,
.cta-final,
.section-precta,
.contact-section,
.faq-section {
  margin-top: 80px !important;
}

.btn,
button {
  min-height: 52px;
  padding: 0 28px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   PLANOS DE LANÇAMENTO (CURRENT FAVES STYLE)
=================================*/

/* ===============================
   PLANOS DE LANÇAMENTO — VITRINE
=================================*/

.launch-plans {
  max-width: var(--max-width);
  margin: 80px auto;
}

/* Grid base */
.launch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* “Cards” agora são apenas contêineres transparentes */
.launch-card {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Card em destaque continua existindo só para possíveis ajustes futuros */
.launch-card-featured {
  background: transparent;
  border: none;
  transform: none;
}

/* Área da imagem com hover estilo lemmelive (zoom/still) */
/* Área da imagem */
.launch-media {
  width: 100%;
  max-width: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: transparent;           /* sem bloco lilás por trás */
  margin-bottom: 12px;
}

/* Imagem com efeito de zoom no hover */
.launch-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

/* HOVER: mesmo efeito que já tínhamos (zoom suave) */
.launch-card:hover .launch-media img {
  transform: scale(1.08) translateY(-4px);
}

.launch-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Tag pequena acima do título */
.launch-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-accent-2);  /* #e5d7ff */
  color: var(--color-secondary);      /* #382164 */
  font-weight: 600;
}

/* opicional: destaque diferente no “favorito” */
.launch-card-featured .launch-tag {
  background: var(--color-accent-1);  /* #f4e596 */
  color: #000;
}

.launch-title {
  margin: 4px 0 0;
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.launch-text {
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.launch-price {
  margin: 8px 0 0;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-secondary);
}

.launch-btn {
  margin-top: 10px;
  width: 100%;
  max-width: 220px;
}

@media (min-width: 880px) {
  .launch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* ============================================================
   HOVER PREMIUM — ZOOM + FADE-IN DE OUTRA IMAGEM
============================================================== */

.launch-media {
  position: relative;
  width: 100%;
  max-width: 260px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 12px;
}

/* imagem base */
.launch-media .base-img {
  width: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* imagem hover (fica invisível no início) */
.launch-media .hover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.45s ease,
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* HOVER — zoom mais forte + fade-in da imagem secundária */
.launch-card:hover .launch-media .base-img {
  transform: scale(1.14);      /* mais acentuado */
  opacity: 0.0;                /* opcional – deixa só a hover visível */
}

.launch-card:hover .launch-media .hover-img {
  opacity: 1;
  transform: scale(1.12);      /* imagem hover também dá zoom */
}

/* ============================================================
   GLOW PREMIUM NO HOVER — BORDA LUMINOSA ELEGANTE
============================================================== */

.launch-media {
  position: relative;
  border-radius: 22px;
  overflow: visible; /* permite o glow expandir */
}

/* camada do glow */
.launch-media::after {
  content: "";
  position: absolute;
  inset: -6px; /* glow ultrapassa um pouco a borda */
  border-radius: 26px;

  background: radial-gradient(
    circle at center,
    rgba(244, 229, 150, 0.55),   /* amarelo suave do destaque */
    rgba(56, 33, 100, 0.08) 70%, /* roxo escuro difuso */
    transparent 100%
  );

  opacity: 0;
  filter: blur(14px);
  transition: opacity 0.35s ease, filter 0.35s ease;
  pointer-events: none;
  z-index: -1;
}

/* Glow ativado somente no hover */
.launch-card:hover .launch-media::after {
  opacity: 1;
  filter: blur(22px);
}

/* Aumentar espaçamento horizontal entre os itens da seção Planos de Lançamento */
.launch-grid {
  column-gap: 64px !important; /* antes provavelmente era ~16-20px */
  row-gap: 32px; /* mantém o vertical agradável */
}

/* ============================================================
   BORDAS PREMIUM — FUNDO CLARO COM BORDA SECUNDÁRIA (#382164)
============================================================== */

/* Seletores de todos os cards claros */
.card,
.cta-container,
.grid-benefits .card,
.howitworks-card,
.faq-item,
.legal-card,
.blog-card,
.plan-card,
.story-slide,
.order-item,
.order-summary {
  border: 1px solid var(--color-secondary) !important;
  border-radius: 18px; /* mantém padrão visual */
}


/* ============================================================
   STORY SLIDESHOW — TEXTO + IMAGEM (4 SLIDES)
   Versão span/div, dots 4px, hover premium
=========================================================== */

.story-slideshow {
  max-width: var(--max-width);
  margin: 96px auto;
  padding: 0 16px;
}

/* Container dos slides */
.story-slides {
  position: relative;
}

/* Cada slide */
.story-slide {
  display: none;
  border-radius: 24px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--color-secondary);
  box-shadow: var(--shadow-subtle);
  gap: 32px;
  transition: opacity 0.3s ease;
}

/* Slide ativo */
.story-slide.active {
  display: flex;
  flex-direction: column;
}

/* Lado do texto */
.story-text {
  flex: 1;
}

.story-text h3 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 1.7rem;
  color: var(--color-text);
}

.story-text p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* Lado da imagem */
.story-media {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--color-accent-2);
}

/* imagem padrão */
.story-media .base-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(.19,1,.22,1);
}

/* imagem hover */
.story-media .hover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.45s ease,
    transform 0.5s cubic-bezier(.19,1,.22,1);
}

/* Glow premium da imagem */
.story-media::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 30px;
  background: radial-gradient(
    circle at center,
    rgba(244,229,150,0.45),
    rgba(56,33,100,0.08) 70%,
    transparent 100%
  );
  opacity: 0;
  filter: blur(22px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

/* Hover geral do slide */
.story-slide:hover .story-media .base-img {
  transform: scale(1.16);
  opacity: 0;
}

.story-slide:hover .story-media .hover-img {
  opacity: 1;
  transform: scale(1.12);
}

.story-slide:hover .story-media::after {
  opacity: 1;
}

/* Controles (setas + dots) */
.story-controls {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* Navegação anterior/próximo (agora span, não button) */
.story-nav {
  all: unset;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 2px solid var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  background: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.story-nav:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* Dots container */
.story-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dots — super pequenos (4px) */
.story-dot {
  all: unset;
  width: 4px;
  height: 4px;

  background: transparent;
  border-radius: 50%;
  border: 2px solid var(--color-secondary);

  display: inline-block;
  cursor: pointer;

  opacity: 0.6;
  transition: all 0.25s ease;
}

.story-dot.active {
  background: var(--color-secondary);
  opacity: 1;
  transform: scale(1.4);
}

/* Desktop layout: 50/50 */
@media (min-width: 880px) {
  .story-slide.active {
    flex-direction: row;
    align-items: center;
    padding: 40px 36px;
    gap: 40px;
  }

  .story-text h3 {
    font-size: 2rem;
  }
}
/* ============================================================
   SEÇÃO — O QUE OS PROFISSIONAIS ESTÃO DIZENDO
=========================================================== */

.health-pro-section {
  margin-top: 96px;
}

.health-pro-grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.health-pro-card {
  background: #fff;
  border: 1px solid var(--color-secondary);
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  gap: 10px;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover premium */
.health-pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(56,33,100,0.20);
}

.health-pro-card h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--color-text);
}

.health-pro-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.health-pro-sign {
  margin-top: 6px;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-secondary);
}

/* Desktop layout — retângulos horizontais */
@media (min-width: 880px) {
  .health-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }

  .health-pro-card {
    height: 100%;
  }
}
