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

:root {
  --green-deep: #0D1F0F;
  --green-deep-rgb: 13, 31, 15;
  --green-dark: #162E19;
  --green-mid: #1E4020;
  --green-field: #2E6030;
  --green-bright: #4A8C4E;
  --green-light: #7BBD7F;
  --gold: #C8A84B;
  --gold-light: #E2CC88;
  --gold-pale: #F4EDD5;
  --white: #FAFCF8;
  --cream: #F0EDE4;
  --text-dark: #0D1A0E;
  --text-mid: #2D4A2F;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Jost', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: var(--green-deep);
  color: var(--white);
  overflow-x: hidden;
}

/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

/* BG — campo de golf */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('../images/golf-privilege-background.jpg') center 40% / cover no-repeat;
  animation: kpan 22s ease-in-out infinite alternate;
}

@keyframes kpan {
  from {
    transform: scale(1.0) translateX(0);
  }

  to {
    transform: scale(1.07) translateX(-2%);
  }
}

/* Gradientes sobrepostos ultra-suaves e responsivos */
.hero__grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* Gradiente 1: Atenuação Horizontal (Foco no Texto/Desktop) */
    linear-gradient(105deg,
      rgba(var(--green-deep-rgb), 0.96) 0%,
      rgba(var(--green-deep-rgb), 0.92) 15%,
      rgba(var(--green-deep-rgb), 0.85) 30%,
      rgba(var(--green-deep-rgb), 0.73) 45%,
      rgba(var(--green-deep-rgb), 0.58) 60%,
      rgba(var(--green-deep-rgb), 0.40) 75%,
      rgba(var(--green-deep-rgb), 0.22) 90%,
      rgba(var(--green-deep-rgb), 0.10) 100%),
    /* Gradiente 2: Atenuação Vertical (Profundidade Geral) */
    linear-gradient(to bottom,
      rgba(var(--green-deep-rgb), 0.15) 0%,
      rgba(var(--green-deep-rgb), 0.32) 25%,
      rgba(var(--green-deep-rgb), 0.55) 50%,
      rgba(var(--green-deep-rgb), 0.78) 75%,
      rgba(var(--green-deep-rgb), 0.92) 100%);
  transition: background 0.3s ease;
}

/* Ajuste Fino para Dispositivos Móveis (Empilhamento Vertical) */
@media (max-width: 860px) {
  .hero__grad {
    background:
      /* Gradiente 1 adaptado para celular: To bottom mais fechado */
      linear-gradient(180deg,
        rgba(var(--green-deep-rgb), 0.94) 0%,
        rgba(var(--green-deep-rgb), 0.88) 20%,
        rgba(var(--green-deep-rgb), 0.75) 40%,
        rgba(var(--green-deep-rgb), 0.55) 60%,
        rgba(var(--green-deep-rgb), 0.30) 80%,
        rgba(var(--green-deep-rgb), 0.15) 100%),
      /* Gradiente 2 adaptado para celular: Garante contraste perfeito no rodapé do Hero */
      linear-gradient(to bottom,
        rgba(var(--green-deep-rgb), 0.20) 0%,
        rgba(var(--green-deep-rgb), 0.50) 50%,
        rgba(var(--green-deep-rgb), 0.85) 85%,
        rgba(var(--green-deep-rgb), 0.96) 100%);
  }
}

/* Grain */
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 250px;
  pointer-events: none;
}

/* Linha decorativa vertical esquerda */
.hero__line {
  position: absolute;
  left: max(32px, 5vw);
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: .4;
}

/* Logo no topo do Hero */
.hero__logo-container {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -10px;
}

.hero__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero__logo-developer {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  /* Torna o logotipo todo branco para contraste perfeito no topo escuro */
  transition: opacity 0.2s;
}

.hero__logo-developer:hover {
  opacity: 1;
}

@media (max-width: 860px) {
  .hero__logo-container {
    margin-bottom: -20px;
  }

  .hero__logo {
    height: 60px;
  }

  .hero__logo-developer {
    height: 32px;
  }
}

/* ═══════════════════════════
   LAYOUT INTERNO
═══════════════════════════ */
.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px max(32px, 5vw) 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 20px;
  }
}

/* ── animações de entrada ── */
.hero__left {
  animation: rise .9s cubic-bezier(.22, .61, .36, 1) both;
}

.hero__right {
  animation: rise .9s .18s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

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

/* ── Badge "Em breve · Lançamento Exclusivo" ── */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(200, 168, 75, .45);
  color: var(--gold-light);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 16px 6px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.launch-badge__dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .4;
    transform: scale(.7);
  }
}

/* ── Título principal ── */
.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(4rem, 9vw, 6.8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.hero__title-line {
  width: 100%;
  max-width: 320px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(200, 168, 75, 0.3) 100%);
  margin: 16px 0;
}

.hero__title-sub {
  font-family: var(--ff-body);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  letter-spacing: 0.3em;
  line-height: 1.4;
}

/* ── Proposta de valor ── */
.hero__value {
  font-family: var(--ff-display);
  font-size: clamp(.95rem, 1.8vw, 1.18rem);
  font-weight: 400;
  color: rgba(250, 252, 248, .75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

/* ── Specs grid ── */
.specs {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 20px;
  list-style: none;
  margin-bottom: 36px;
  width: fit-content;
}

.spec {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .82rem;
  font-weight: 300;
  color: var(--gold-pale);
  letter-spacing: .03em;
}

.spec__icon {
  width: 28px;
  height: 28px;
  background: rgba(200, 168, 75, .12);
  border: 1px solid rgba(200, 168, 75, .25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--gold);
}

/* ── Localização ── */
.location-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(200, 168, 75, .2);
  border-radius: 6px;
  padding: 14px 18px;
}

.location-block__icon {
  color: var(--gold);
  margin-top: 1px;
  flex-shrink: 0;
}

.location-block__label {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.location-block__addr {
  font-size: .85rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1.6;
}

/* ═══════════════════════════
   CARD FORMULÁRIO
═══════════════════════════ */
.form-card {
  background: rgba(10, 20, 11, .88);
  border: 1px solid rgba(200, 168, 75, .3);
  border-radius: 10px;
  padding: 36px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, .55),
    inset 0 1px 0 rgba(200, 168, 75, .15);
}

/* Linha dourada topo do card */
.form-card::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: -36px -28px 28px;
  border-radius: 10px 10px 0 0;
}

.form-card__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.form-card__sub {
  font-size: .78rem;
  font-weight: 300;
  color: var(--green-light);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(200, 168, 75, .25);
  border-radius: 5px;
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 300;
  color: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form-group select option {
  background: var(--green-deep);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 75, .15);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 8px;
  transition: background .2s, transform .15s, box-shadow .2s;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 168, 75, .35);
}

.btn-submit:active {
  transform: translateY(0);
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: rgba(255, 255, 255, .25);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(200, 168, 75, .2);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px;
  background: rgba(37, 211, 102, .15);
  border: 1px solid rgba(37, 211, 102, .4);
  color: #4ADE80;
  font-family: var(--ff-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  border-radius: 5px;
  transition: background .2s, border-color .2s, transform .15s;
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, .25);
  border-color: rgba(37, 211, 102, .7);
  transform: translateY(-1px);
}

.privacy-note {
  text-align: center;
  font-size: .66rem;
  color: rgba(255, 255, 255, .25);
  margin-top: 14px;
  line-height: 1.7;
}

/* success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 16px 0;
}

.form-success__icon {
  color: #4ADE80;
}

.form-success h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--white);
}

.form-success p {
  font-size: .82rem;
  color: var(--green-light);
}

/* ═══════════════════════════
   DIFERENCIAIS
═══════════════════════════ */
.features {
  background: var(--green-dark);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 75, .4), transparent);
}

.features__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features__header {
  text-align: center;
  margin-bottom: 56px;
}

.features__eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.features__title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
}

.features__title em {
  font-style: italic;
  color: var(--gold-light);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feat-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(200, 168, 75, .15);
  border-radius: 8px;
  padding: 28px 24px;
  
  /* Transições suaves e profissionais */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              background 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, box-shadow;
}

.feat-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--gold);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .45);
  transition-delay: 0s !important; /* Resposta imediata ao hover, anulando o staggered delay */
}

/* Efeito Staggered (Atraso Cascata) quando a seção entra na tela */
.reveal-section .feat-card {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-section.is-visible .feat-card {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible .feat-card:nth-child(1) { transition-delay: 0.1s; }
.reveal-section.is-visible .feat-card:nth-child(2) { transition-delay: 0.25s; }
.reveal-section.is-visible .feat-card:nth-child(3) { transition-delay: 0.4s; }
.reveal-section.is-visible .feat-card:nth-child(4) { transition-delay: 0.55s; }

.feat-card__num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 900;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.feat-card__label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.feat-card__desc {
  font-size: .78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

/* ═══════════════════════════
   VISTA AÉREA
═══════════════════════════ */
.aerial-view {
  background: var(--green-deep);
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}

.aerial-view::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 75, .3), transparent);
}

.aerial-view__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.aerial-view__header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.aerial-view__eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.aerial-view__title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.aerial-view__title em {
  font-style: italic;
  color: var(--gold-light);
}

.aerial-view__intro {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.aerial-view__showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .aerial-view__showcase {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.aerial-view__wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200, 168, 75, 0.35);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(200, 168, 75, 0.2);
  aspect-ratio: 16 / 10;
  background: var(--green-dark);
}

.aerial-view__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.aerial-view__wrapper:hover .aerial-view__img {
  transform: scale(1.05);
}

.aerial-view__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 15, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.aerial-view__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10, 20, 11, 0.85);
  border: 1px solid rgba(200, 168, 75, 0.4);
  color: var(--gold-pale);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.aerial-view__badge svg {
  color: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

.aerial-view__details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.aerial-detail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.015);
  border-left: 2px solid rgba(200, 168, 75, 0.2);
  transition: border-left-color 0.3s, background 0.3s, transform 0.3s;
}

.aerial-detail:hover {
  border-left-color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
  transform: translateX(4px);
}

.aerial-detail__icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(200, 168, 75, 0.08);
  border: 1px solid rgba(200, 168, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aerial-detail__content h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.aerial-detail__content p {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ═══════════════════════════
   A INCORPORADORA (CIVILCORP)
═══════════════════════════ */
.developer-section {
  background: var(--green-deep);
  padding: 90px 24px;
  position: relative;
}

.developer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 75, .3), transparent);
}

.developer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 860px) {
  .developer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

.developer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 48px 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.developer__logo {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.developer__badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--green-deep);
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--green-deep);
}

.developer__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.developer__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.developer__title em {
  font-style: italic;
  color: var(--gold-light);
}

.developer__text {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

@media (max-width: 860px) {
  .developer__text {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

.developer__specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.dev-spec {
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 860px) {
  .dev-spec {
    text-align: left;
  }
}

.dev-spec strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 6px;
}

.dev-spec p {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ═══════════════════════════
   FAQ
═══════════════════════════ */
.faq-section {
  background: var(--green-deep);
  padding: 72px 24px;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 75, .3), transparent);
}

.faq-inner {
  max-width: 680px;
  margin: 0 auto;
}

.faq-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 6px;
}

.faq-intro {
  text-align: center;
  font-size: .84rem;
  font-weight: 300;
  color: var(--green-light);
  margin-bottom: 40px;
}

details {
  border-bottom: 1px solid rgba(200, 168, 75, .15);
  padding: 18px 0;
}

details:first-of-type {
  border-top: 1px solid rgba(200, 168, 75, .15);
}

summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .92rem;
  font-weight: 400;
  color: var(--gold-pale);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform .22s;
  flex-shrink: 0;
  margin-left: 16px;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin-top: 12px;
  font-size: .84rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
}

/* ── CTA final ── */
.cta-strip {
  background: var(--gold);
  padding: 40px 24px;
  text-align: center;
}

.cta-strip p {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 18px;
}

.cta-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-deep);
  color: var(--gold-light);
  font-family: var(--ff-body);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background .2s;
}

.cta-strip a:hover {
  background: var(--green-dark);
}

/* ── Footer ── */
footer {
  background: var(--green-deep);
  border-top: 1px solid rgba(200, 168, 75, .12);
  text-align: center;
  padding: 28px 24px;
  font-size: .73rem;
  font-weight: 300;
  color: rgba(255, 255, 255, .3);
  line-height: 1.9;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer strong {
  color: var(--gold-light);
  font-weight: 500;
}

/* ═══════════════════════════
   REVEAL ON SCROLL
   Animações de entrada sutil de seções secundárias
═══════════════════════════ */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

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

/* ═══════════════════════════
   MODAL DE PRIVACIDADE (LGPD)
═══════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13, 31, 15, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.modal-content {
  background: var(--green-deep);
  border: 1px solid rgba(200, 168, 75, 0.35);
  border-radius: 8px;
  width: 100%;
  max-width: 680px;
  max-height: 80svh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(200, 168, 75, 0.15);
  transform: scale(0.93) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.modal-overlay.is-open .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  border: none;
  color: rgba(250, 252, 248, 0.5);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
  padding: 0;
  display: grid;
  place-items: center;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-content h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  padding: 32px 32px 20px;
  border-bottom: 1px solid rgba(200, 168, 75, 0.15);
}

.modal-text {
  padding: 24px 32px 36px;
  overflow-y: auto;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(250, 252, 248, 0.75);
}

/* Custom scrollbar para o modal */
.modal-text::-webkit-scrollbar {
  width: 8px;
}

.modal-text::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.modal-text::-webkit-scrollbar-thumb {
  background: rgba(200, 168, 75, 0.25);
  border-radius: 4px;
  transition: background 0.2s;
}

.modal-text::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.modal-text h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 24px 0 12px;
}

.modal-text p {
  margin-bottom: 14px;
}

.modal-text ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.modal-text li {
  margin-bottom: 8px;
}

.modal-text strong {
  color: var(--white);
}

@media (max-width: 600px) {
  .modal-overlay {
    padding: 16px;
  }
  
  .modal-content h2 {
    font-size: 1.4rem;
    padding: 24px 20px 16px;
  }
  
  .modal-text {
    padding: 20px 20px 28px;
  }
  
  .modal-close {
    top: 14px;
    right: 18px;
  }
}
