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

:root {
  --verde: #2D4A3E;
  --tampo: #7A5C4A;
  --creme: #F5F0E8;
  --ouro: #C9A96E;
  --cinza-escuro: #1A1A1A;
  --cinza-medio: #3A3A3A;
  --blush: #C4A49A;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cinza-escuro);
  color: var(--creme);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ───── DOBRA 1 ───── */
.dobra1 {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  /* 55% pro conteúdo, 45% pra foto */
  position: relative;
  overflow: hidden;
}

.dobra1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.4) 60%, rgba(45, 74, 62, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.foto-lado {
  position: relative;
  overflow: hidden;
}

.foto-lado img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transform: scale(1.03);
  animation: kenburns 12s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from {
    transform: scale(1.03) translateX(0);
  }

  to {
    transform: scale(1.08) translateX(-1%);
  }
}

.foto-lado::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cinza-escuro) 0%, transparent 40%);
}

.lado-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px 60px 48px;
  max-width: 55vw;
  /* Aumenta a caixa invisível para 55% da tela */
  box-sizing: border-box;
  grid-column: 1;
  grid-row: 1;
}

.logo-img {
  height: 90px;
  /* Logo maior a pedido do usuário */
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  align-self: flex-start;
  /* Mantém alinhado à esquerda na grid layout flex */
  opacity: 0;
  animation: fadeUp 0.8s 0.1s ease forwards;
}

.logo-marca {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--ouro);
  text-transform: uppercase;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.badge-vip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  /* Limita o container apenas ao tamanho do texto */
  align-self: flex-start;
  border: 1px solid var(--ouro);
  border-radius: 30px;
  /* Bem arredondado */
  color: var(--ouro);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--creme);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}

h1 em {
  font-style: italic;
  color: var(--ouro);
}

.colecao-nome {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  color: var(--creme);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.75);
  max-width: 540px;
  /* Expande consideravelmente o tamanho máximo das linhas */
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}

/* FORMULÁRIO */
.form-vip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  /* Formulário mais esticado preenchendo melhor o espaço */
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease forwards;
}

.form-vip input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--creme);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 18px 24px;
  outline: none;
  border-radius: 40px;
  /* Formato pílula (ainda mais redondo) */
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  letter-spacing: 0.05em;
  width: 100%;
}

.form-vip input::placeholder {
  color: rgba(245, 240, 232, 0.4);
}

.form-vip input:focus {
  border-color: var(--ouro);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.3);
}

.btn-vip {
  background: var(--ouro);
  color: var(--cinza-escuro);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 20px 32px;
  border-radius: 40px;
  /* Formato pílula circular nas pontas */
  cursor: pointer;
  transition: background 0.3s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
  width: 100%;
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.1);
}

.btn-vip:hover {
  background: #d4b580;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

.aviso-privacidade {
  font-size: 10px;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* foto lado direito ocupa col 2 */
.foto-lado {
  grid-column: 2;
  grid-row: 1;
  z-index: 0;
}

/* ───── LINHA DIVISÓRIA ───── */
.divisor {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 64px;
  margin: 0;
}

.divisor-linha {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.4), transparent);
}

.divisor-icone {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ouro);
  opacity: 0.6;
}

/* ───── DOBRA 2 — BENEFÍCIOS ───── */
.dobra2 {
  background: var(--cinza-escuro);
  padding: 80px 64px;
  position: relative;
}

.dobra2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.3), transparent);
}

.dobra2-inner {
  max-width: 860px;
  margin: 0 auto;
}

.dobra2-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  text-align: center;
  color: var(--creme);
  margin-bottom: 12px;
  line-height: 1.2;
}

.dobra2-sub {
  text-align: center;
  font-size: 12px;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 56px;
}

.bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin-bottom: 64px;
}

.bullet-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bullet-icone {
  width: 1px;
  background: var(--ouro);
  height: 100%;
  min-height: 40px;
  flex-shrink: 0;
  margin-top: 4px;
  opacity: 0.6;
}

.bullet-texto strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--creme);
  margin-bottom: 4px;
}

.bullet-texto span {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.65;
}

/* manifesto strip */
.manifesto-strip {
  border-left: 2px solid var(--ouro);
  padding: 20px 32px;
  background: rgba(201, 169, 110, 0.05);
  margin-bottom: 64px;
}

.manifesto-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--creme);
  line-height: 1.55;
}

.manifesto-strip cite {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.2em;
  color: var(--ouro);
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* ───── DOBRA 3 — PARA QUEM + CTA ───── */
.dobra3 {
  background: var(--verde) url('./dobra3-bg.jpg') center top / cover no-repeat;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

.dobra3 {
  background-image: url('./bg-extracted-1.jpg');
  background-size: cover;
  background-position: center top;
}

.dobra3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45, 74, 62, 0.93) 0%, rgba(26, 26, 26, 0.96) 100%);
  z-index: 0;
}

.dobra3-hide::before {
  content: 'VÍNCULO';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  letter-spacing: 0.1em;
  pointer-events: none;
}

.dobra3-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.dobra3-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--creme);
  margin-bottom: 16px;
  line-height: 1.25;
}

.dobra3-para-quem {
  list-style: none;
  margin: 32px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.dobra3-para-quem li {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.8);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}

.dobra3-para-quem li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ouro);
}

/* CTA final */
.cta-final {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
}

.cta-final-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--creme);
  margin-bottom: 24px;
  line-height: 1.3;
}

.cta-final .form-vip {
  opacity: 1;
  animation: none;
}

.urgencia {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(201, 169, 110, 0.7);
  text-align: center;
  text-transform: uppercase;
}

/* ───── RODAPÉ ───── */
footer {
  background: #111;
  padding: 48px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(100%) brightness(200%);
  /* deixa o logo mais sutil para o rodapé escuro */
}

footer span {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 232, 0.25);
  text-transform: uppercase;
}

/* ───── MODAIS E FEEDBACKS ───── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.ativo {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--cinza-escuro);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  border-radius: 24px;
  text-align: center;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.modal-overlay.ativo .modal-box {
  transform: translateY(0) scale(1);
}

.modal-icone {
  font-size: 32px;
  color: var(--ouro);
  margin-bottom: 16px;
}

.modal-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--creme);
  margin-bottom: 16px;
  line-height: 1.2;
}

.modal-texto {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 32px;
}

.btn-modal {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 24px;
}

.modal-fechar {
  background: none;
  border: none;
  color: rgba(245, 240, 232, 0.4);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-fechar:hover {
  color: var(--creme);
}

.toast-error {
  position: fixed;
  top: 32px;
  right: 32px;
  background: #6a1a1a;
  border-left: 4px solid #ed4337;
  color: #F5F0E8;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.toast-error.ativo {
  transform: translateX(0);
}

/* ───── ANIMAÇÕES ───── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ───── RESPONSIVO ───── */
@media (max-width: 900px) {
  .dobra1 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .foto-lado {
    grid-column: 1;
    grid-row: 1;
    height: 50vh;
  }

  .foto-lado::after {
    background: linear-gradient(to bottom, transparent 50%, var(--cinza-escuro) 100%);
  }

  .lado-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 40px 24px 60px;
    max-width: 100%;
  }

  .bullets {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dobra2,
  .dobra3 {
    padding: 60px 24px;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 48px 24px;
  }

  .cta-final {
    padding: 28px 20px;
  }
}

/* Acessibilidade */
.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;
}