/* =============================================
   APSELA — Lista VIP Landing Page
   styles.css — Mobile-first, organizado em:
   Variables → Reset → Base → Components →
   Sections → Responsive → Accessibility
   ============================================= */


/* =============================================
   VARIÁVEIS DA MARCA
   ============================================= */
:root {
  /* Paleta Apsela */
  --color-primary:    #C4527A;              /* rosa Apsela — alinhado com site principal */
  --color-deep:       #4F0920;              /* vinho profundo — igual ao site principal */
  --color-blush:      #E3B8C6;              /* rosa champagne */
  --color-bg:         #FAF7F4;              /* off-white quente */
  --color-bg-alt:     #FDF0F5;              /* rosa claro — igual ao site principal */
  --color-bg-dark:    #1A0A10;              /* quase-preto com tom vinho */
  --color-text:       #1A0A10;
  --color-text-muted: #6B4555;
  --color-text-light: #A07585;
  --color-border:     rgba(150, 63, 92, 0.15);
  --color-white:      #FFFFFF;
  --color-error:      #B92B2B;
  --color-success:    #2E7D52;

  /* Tipografia */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamento (escala 8px) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;
  --s-7: 72px;
  --s-8: 96px;

  /* Bordas */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 1px 4px rgba(79, 9, 32, 0.08);
  --shadow-md: 0 4px 16px rgba(79, 9, 32, 0.12);
  --shadow-lg: 0 8px 32px rgba(79, 9, 32, 0.16);

  /* Transições */
  --ease: 200ms ease;
  --ease-slow: 380ms ease;
}


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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

img, video, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

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

ul, ol { list-style: none; }


/* =============================================
   BASE
   ============================================= */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}


/* =============================================
   UTILITÁRIOS
   ============================================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Eyebrow: label acima dos títulos */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s-2);
}

/* Títulos de seção — todos centralizados por padrão */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 7vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--color-primary);
}

.section-header {
  margin-bottom: var(--s-6);
  text-align: center;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}


/* =============================================
   BOTÕES
   ============================================= */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 300px;
  padding: 16px 48px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background-color var(--ease), transform var(--ease), box-shadow var(--ease), opacity var(--ease);
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  margin: 0 auto;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Estado de loading: troca texto por "enviando…" */
.btn__loading { display: none; font-weight: 300; font-style: italic; }
.btn.is-loading .btn__text   { display: none; }
.btn.is-loading .btn__loading { display: inline; }

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}


/* =============================================
   FORMULÁRIO — COMPONENTE REUTILIZÁVEL
   ============================================= */
.form {
  width: 100%;
  max-width: 480px;
  text-align: left; /* garante alinhamento interno mesmo dentro de container centralizado */
}

.form--centered {
  margin: 0 auto;
}

.form__field {
  margin-bottom: var(--s-4);
}

.form__label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: var(--s-1);
}

/* Underline-only — estilo luxury/editorial, sem a caixa de input genérica */
/* font-size: 16px previne zoom automático no iOS ao focar */
.form__input {
  width: 100%;
  padding: 8px 0 12px;
  border: none;
  border-bottom: 1.5px solid var(--color-border);
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
  transition: border-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form__input::placeholder {
  color: var(--color-text-light);
  opacity: 0.7;
}

.form__input:focus {
  outline: none;
  border-bottom-color: var(--color-primary);
  box-shadow: none;
}

.form__input.is-invalid {
  border-bottom-color: var(--color-error);
  box-shadow: none;
}

.form__input.is-valid {
  border-bottom-color: var(--color-success);
}

.form__error {
  display: block;
  font-size: 13px;
  color: var(--color-error);
  margin-top: 5px;
  min-height: 18px;
  font-style: italic;
  font-weight: 400;
}

/* --- Checkbox LGPD --- */
.form__lgpd {
  margin-bottom: var(--s-2);
}

.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

/* Oculta o checkbox nativo (mantém acessível no DOM) */
.form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Checkbox visual customizado */
.form__checkbox-custom {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border: 1.5px solid var(--color-border);
  border-radius: 3px;
  background: var(--color-white);
  transition: background-color var(--ease), border-color var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.form__checkbox:checked + .form__checkbox-custom {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.form__checkbox:checked + .form__checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

.form__checkbox:focus-visible + .form__checkbox-custom {
  box-shadow: 0 0 0 3px rgba(150, 63, 92, 0.2);
}

.form__checkbox-text {
  font-size: 11px;
  color: var(--color-text-light);
  line-height: 1.5;
}

.form__checkbox-text a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Trust signal abaixo do CTA */
.form__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: var(--s-2);
  text-align: center;
}

/* =============================================
   SEÇÃO 1 — HERO (ABOVE THE FOLD)
   ============================================= */
/* =============================================
   HERO SPLIT — dois painéis lado a lado
   Esquerda: texto + product-pad.jpg
   Direita:  formulário + hero-editorial.jpg
   ============================================= */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0;
}

/* Imagem hero mobile — full-width no topo, escondida no desktop */
.hero__mobile-image {
  position: relative;
  width: 100%;
  height: 25vh;
  overflow: hidden;
}

.hero__mobile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero__mobile-image-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, transparent, #FAF7F4);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero__mobile-image {
    display: none;
  }
}

/* Manchas blur — respiração visual atrás do formulário */
.hero__blur {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero__blur--mauve {
  top: 35%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: rgba(150, 63, 92, 0.16);
  filter: blur(90px);
}

.hero__blur--champagne {
  bottom: 20%;
  left: -20%;
  width: 300px;
  height: 300px;
  background: rgba(227, 184, 198, 0.14);
  filter: blur(100px);
}

@media (min-width: 768px) {
  .hero__blur--mauve {
    width: 500px;
    height: 500px;
  }
  .hero__blur--champagne {
    width: 450px;
    height: 450px;
  }
}

.hero__split {
  display: flex;
  width: 100%;
  min-height: 100svh;
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .hero__split {
    flex-direction: row;
  }
}

/* Painéis */
.hero__panel {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__headline--form {
  font-family: var(--font-serif);
  font-size: clamp(22px, 5.5vw, 30px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 8px;
  text-align: center;
}

.hero__headline--form em {
  font-style: italic;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .hero__headline--form {
    display: none;
  }
}

.hero__social-proof {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 8px;
}

.hero__social-proof--desktop {
  display: none;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 20px;
}

@media (min-width: 768px) {
  .hero__social-proof {
    display: none;
  }
  .hero__social-proof--desktop {
    display: block;
  }
}

/* Painel esquerdo — imagem 1, scrim embaixo para destacar o texto */
.hero__panel--text {
  background: url('product-pad.webp') center 20% / cover no-repeat;
  background-image: image-set(url('product-pad.webp') type('image/webp'), url('product-pad.jpg') type('image/jpeg'));
  min-height: 52svh;
  align-items: flex-end;
  justify-content: flex-start;
  display: none;
}

@media (min-width: 768px) {
  .hero__panel--text {
    display: flex;
  }
}

.hero__panel--text::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 5, 12, 0.55) 0%,
    rgba(20, 5, 12, 0.18) 42%,
    transparent 68%
  );
  pointer-events: none;
}

.hero__panel--text .hero__panel-inner {
  max-width: 560px;
  padding-bottom: 44px;
}

/* Headline mobile maior */
.hero__panel--text .hero__headline {
  font-size: clamp(38px, 9vw, 56px);
}

/* Logo fixo no canto superior esquerdo do painel */
.logo-text--panel {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  color: #fff;
}

.hero__panel--text .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero__panel--text .hero__headline {
  color: #fff;
}

.hero__panel--text .hero__headline em {
  color: var(--color-blush);
}

/* Headline desktop — 3 linhas limpas no painel de 50% */
@media (min-width: 768px) {
  .hero__panel--text .hero__headline {
    font-size: clamp(38px, 3.6vw, 56px);
    line-height: 1.08;
    font-weight: 400;
  }
}

@media (min-width: 768px) {
  .hero__panel--text {
    min-height: 100svh;
    background-position: 60% 20%;
  }
}

/* Painel direito — fundo claro + formulário escuro */
.hero__panel--form {
  background: var(--color-bg);
  min-height: auto;
  padding-bottom: 0;
}

.hero__panel--form .hero__panel-inner {
  padding-top: 20px;
  padding-bottom: 28px;
}

@media (min-width: 768px) {
  .hero__panel--form {
    min-height: 100svh;
  }
  .hero__panel--form .hero__panel-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* Conteúdo interno dos painéis */
.hero__panel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  padding: 20px 28px 32px;
}

@media (min-width: 768px) {
  .hero__panel-inner {
    padding: 64px 48px;
  }
}

.logo-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-deep);
  margin-bottom: var(--s-5);
}

/* Texto do painel esquerdo */
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 8vw, 60px);
  font-weight: 300;
  line-height: 1.07;
  color: var(--color-text);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}

.hero__headline em {
  font-style: italic;
  color: var(--color-primary);
  display: block;
}

/* Âncora do painel do formulário */
.hero__form-header {
  margin-top: 16px;
  margin-bottom: 20px;
}

.hero__form-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.hero__form-sub {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
}

.hero__form-sub em {
  font-style: italic;
  color: var(--color-primary);
}

.hero__urgency {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(107, 69, 85, 0.65);
  text-align: center;
  margin-top: 18px;
}

/* Animações fadeUp — agora nos elementos do painel esquerdo */


/* =============================================
   BARRA DE CREDIBILIDADE
   ============================================= */
.credibility {
  background: #D4889E;
  padding: 12px 0;
  overflow: hidden;
}

.credibility__track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.credibility__inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.credibility__item {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 0 28px;
}

.credibility__item::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: -2px;
}

.credibility__item {
  position: relative;
}



/* =============================================
   SEÇÃO 2 — BENEFÍCIOS VIP
   ============================================= */
.benefits {
  padding: var(--s-8) 0 var(--s-6) 0;
  background: var(--color-bg);
}

/* Benefícios: editorial com números, sem caixas genéricas */
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}

.benefit-card {
  padding: var(--s-3) 0;
  border-top: 1px solid var(--color-border);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:last-child {
  border-bottom: 1px solid var(--color-border);
}

.benefit-card__icon {
  display: block;
  width: 24px;
  height: 24px;
  opacity: 0.8;
  margin-bottom: 12px;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(150, 63, 92, 0.08);
  }
  .benefit-card:hover .benefit-card__icon {
    opacity: 1;
  }
}

.benefit-card__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--s-1);
}

.benefit-card__title em {
  font-style: italic;
  color: var(--color-primary);
}

.benefit-card__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 480px;
}


/* =============================================
   SEÇÃO 4 — PRODUTO (PAD CHECK)
   ============================================= */
.product {
  background: var(--color-bg-alt);
  overflow: hidden;
}

.product__inner {
  display: flex;
  flex-direction: column;
}

.product__visual {
  line-height: 0;
}

.product__image {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.product__content {
  display: flex;
  flex-direction: column;
  padding: var(--s-6) var(--s-4);
}

.product__text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--s-2);
}

.product__content .section-title {
  margin-bottom: 36px;
}

.product__gains-list {
  margin-top: 48px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product__gains-list li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.product__gains-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  opacity: 0.45;
  font-size: 13px;
}

.product__closing {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-deep);
  margin-top: 56px;
}


/* =============================================
   SEÇÃO 5 — GRUPO VIP
   Fundo blush escuro, texto claro — visual de
   "momento especial" diferente do off-white das outras seções.
   ============================================= */
/* =============================================
   SEÇÃO VIP — versão minimalista marca grande
   Espaço generoso é o elemento de design.
   ============================================= */
.vip-group {
  padding: 40px 0;
  background: linear-gradient(180deg, #A03050 0%, #C4527A 50%, #D4889E 100%);
  text-align: center;
}

@media (min-width: 768px) {
  .vip-group {
    padding: 96px 0;
  }
}

.vip-group .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .vip-group .eyebrow {
    margin-bottom: 40px;
  }
}

.vip-group__inner {
  max-width: 680px;
  margin: 0 auto;
}

/* Headline principal */
.vip-group__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 8vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.vip-group__title em {
  font-style: italic;
  color: #FCEDF2;
}

/* CTA — off-white, largura média, não full-width */
.vip-group__cta {
  display: inline-flex;
  width: auto;
  min-width: 200px;
  background-color: #fff;
  color: #A03050;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 48px;
  padding: 16px 40px;
  border-radius: 100px;
}

@media (min-width: 768px) {
  .vip-group__cta {
    margin-top: 56px;
  }
}

.vip-group__cta:hover {
  background-color: #FCEDF2;
  color: #A03050;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}



/* =============================================
   SEÇÃO 6 — FAQ
   ============================================= */
.faq {
  padding: var(--s-7) 0;
  background: var(--color-bg);
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: var(--s-3) 0;
  font-family: var(--font-serif);
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 400;
  color: var(--color-text);
  text-align: left;
  transition: color var(--ease);
}

.faq__question:hover,
.faq__question[aria-expanded="true"] {
  color: var(--color-primary);
}

.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform var(--ease);
  flex-shrink: 0;
  line-height: 1;
  font-style: normal;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer[hidden] { display: none; }

.faq__answer {
  padding-bottom: var(--s-3);
}

.faq__answer p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
}


/* =============================================
   SEÇÃO 7 — FORMULÁRIO FINAL
   ============================================= */
.form-final {
  padding: var(--s-7) 0 var(--s-8);
  background: var(--color-bg-alt);
}

.form-final__sub {
  font-size: 15px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: var(--s-2);
}


/* =============================================
   FOOTER — minimalista centralizado
   ============================================= */
.footer {
  padding: 44px 20px;
  background: var(--color-bg);
  color: var(--color-text-muted);
  text-align: center;
  border-top: 1px solid rgba(150, 63, 92, 0.15);
}

.footer__center {
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer__center {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }

  .footer__brand { margin-bottom: 0; }
  .footer__contact { margin-bottom: 0; }
  .footer__social { justify-content: flex-start; }
}

.footer__brand {
  margin-bottom: 20px;
}

.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-deep);
}

.footer__tagline {
  font-size: 13px;
  color: #963F5C;
  font-style: italic;
  margin-top: 4px;
  opacity: 0.8;
}

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  justify-content: center;
}

.footer__social a {
  color: #963F5C;
  transition: opacity var(--ease);
}

.footer__social a:hover { opacity: 0.6; }

.footer__contact {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
  opacity: 0.5;
}

.footer__contact a {
  color: var(--color-text-muted);
  transition: opacity var(--ease);
}

.footer__contact a:hover { opacity: 0.7; }

.footer__hours {
  font-size: 12px;
  color: #963F5C;
  font-style: italic;
  margin-top: 4px;
  opacity: 0.7;
}

.footer__legal {
  font-size: 11px;
  color: var(--color-text-muted);
  opacity: 0.5;
  line-height: 1.7;
  letter-spacing: 0.02em;
}


/* =============================================
   BREAKPOINT — TABLET 768px
   ============================================= */
@media (min-width: 768px) {

  /* Benefícios desktop: 2 colunas editoriais */
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    gap: 0 var(--s-7);
  }

  .benefit-card {
    padding: var(--s-4) 0;
  }

  .benefit-card:nth-child(3) {
    border-top: 1px solid var(--color-border);
  }

  .benefit-card:nth-child(4) {
    border-bottom: 1px solid var(--color-border);
  }

  /* FAQ mais largo no tablet/desktop */
  .faq__list {
    max-width: 800px;
  }

  /* Formulário final: centra e limita largura */
  .form--centered {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Produto: lado a lado, imagem borda a borda */
  .product__inner {
    flex-direction: row;
    align-items: stretch;
    min-height: 620px;
    gap: 0;
  }

  .product__visual {
    flex: 0 0 50%;
    overflow: hidden;
    display: flex;
  }

  .product__visual picture {
    display: flex;
    width: 100%;
  }

  .product__image {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center top;
  }

  .product__content {
    flex: 1;
    padding: var(--s-8) var(--s-7);
    justify-content: center;
    max-width: 560px;
  }

}


/* =============================================
   BREAKPOINT — DESKTOP 1024px
   ============================================= */
@media (min-width: 1024px) {

  .benefit-card__icon {
    width: 28px;
    height: 28px;
  }

  /* Benefícios: 4 colunas no desktop largo */
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    gap: 0 var(--s-5);
  }

  /* Em 4-col, todos na mesma linha — restaura border-top do card 3 */
  .benefit-card:nth-child(3) {
    border-top: 1px solid var(--color-border);
  }

  /* Todos os 4 cards ficam na mesma linha — só o último tem border-bottom */
  .benefit-card:nth-child(4) {
    border-bottom: 1px solid var(--color-border);
  }
}


/* =============================================
   ACESSIBILIDADE — FOCUS VISIBLE
   ============================================= */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Remove outline para usuários de mouse */
:focus:not(:focus-visible) {
  outline: none;
}

/* =============================================
   FIX 5 — ANIMAÇÕES DE ENTRADA NO HERO
   fadeUp: opacity + translateY escalonados.
   Dá a sensação de página viva sem ser excessivo.
   ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__panel--text .eyebrow {
  animation: fadeUp 0.55s ease both;
  animation-delay: 0.08s;
}

.hero__headline {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.2s;
}

.hero__panel--form .form {
  animation: fadeUp 0.4s ease both;
}


/* Respeita preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==============================================
   CTAs DE SEÇÃO (links âncora estilo editorial)
   Usados no rodapé das seções intermediárias.
   ============================================== */
.section-cta-wrap {
  text-align: center;
  margin-top: var(--s-5);
}

.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
  transition: opacity var(--ease);
}

.section-cta:hover {
  opacity: 0.6;
}



