:root {
  --green-950: #122618;
  --green-900: #1f3d2a;
  --green-800: #2d5a3d;
  --green-700: #3d7350;
  --green-600: #4f8e64;
  --green-100: #e7efe9;
  --green-50: #f0f5f1;
  --gold: #b08a4a;
  --gold-light: #d4ae7a;
  --gold-dark: #8a6a35;
  --sand: #ede4d1;
  --sand-light: #f6f1e8;
  --ink: #15201a;
  --muted: #5a5a5a;
  --line: #d8d2c4;
  --white: #ffffff;
  --shadow-sm: 0 4px 16px rgba(20, 40, 25, 0.08);
  --shadow-md: 0 14px 36px rgba(20, 40, 25, 0.18);
  --shadow-lg: 0 24px 60px rgba(20, 40, 25, 0.28);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background: var(--sand-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-900);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }

.brand-name {
  white-space: nowrap;
  display: inline-block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-kicker {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.section-kicker--gold {
  color: var(--gold);
}

.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--green-800);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  font-family: var(--font-body);
  width: 100%;
  box-shadow: 0 6px 20px rgba(45, 90, 61, 0.35);
}

.btn-primary:hover {
  background: var(--green-900);
  box-shadow: 0 8px 24px rgba(45, 90, 61, 0.45);
}
.btn-primary:active { transform: translateY(1px); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-link {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.5rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.btn-link:hover { color: var(--gold-dark); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.brand .brand-name { letter-spacing: 0.02em; }
.brand small {
  font-family: var(--font-body);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
}
.nav-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--green-800);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-900); }

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/hero.webp') center/cover no-repeat;
  transform: scale(1.05);
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(15, 30, 20, 0.85) 0%, rgba(20, 45, 30, 0.55) 55%, rgba(15, 30, 20, 0.7) 100%);
  z-index: -1;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  font-style: italic;
  font-weight: 400;
}
.hero-content h1 {
  color: var(--white);
  margin: 0 0 0.85rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero-content h1 .brand-name {
  color: var(--gold-light);
  font-style: italic;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-kicker {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  background: rgba(176, 138, 74, 0.18);
  border: 1px solid rgba(212, 174, 122, 0.55);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
}
.hero-kicker--alt {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-place {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.hero-place strong {
  color: var(--white);
  font-weight: 600;
}
.hero-content p.lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-content p.lead strong {
  color: var(--gold-light);
  font-weight: 600;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(212, 174, 122, 0.35);
}
.hero-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
}
.hero-meta-item span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
}

/* STRIP — destaque bairro */
.strip {
  background: linear-gradient(90deg, var(--green-950) 0%, var(--green-900) 50%, var(--green-800) 100%);
  color: var(--white);
  padding: 1.5rem 0;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.strip-item span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* VIDEO */
.video-section {
  background: var(--green-50);
}
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: var(--green-900);
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* BAIRRO — destaque Cidade Jardim / Barra */
.bairro {
  position: relative;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.bairro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/bairro-bg.webp') center/cover no-repeat;
  z-index: -2;
}
.bairro-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 30, 20, 0.92) 0%, rgba(20, 45, 30, 0.78) 100%);
  z-index: -1;
}
.bairro-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.bairro h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.bairro p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.bairro p strong {
  color: var(--gold-light);
  font-weight: 600;
}
.bairro-list {
  list-style: none;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.75rem;
  text-align: left;
}
.bairro-list li {
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
}

/* DIFERENCIAIS */
.diferenciais {
  background: var(--sand-light);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.8rem;
}
.card h3 { margin-bottom: 0.75rem; color: var(--green-900); }
.card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* LAZER */
.lazer {
  background: var(--green-900);
  color: var(--white);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.lazer::before {
  content: '';
  position: absolute;
  right: -10%;
  top: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(176, 138, 74, 0.18) 0%, transparent 65%);
  z-index: -1;
}
.lazer .section-title, .lazer h2 { color: var(--white); }
.lazer .section-sub { color: rgba(255, 255, 255, 0.82); }
.lazer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}
.lazer-item {
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: var(--white);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.lazer-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.lazer-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--gold-light);
}
.lazer-item small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

/* TIPOLOGIAS */
.tipologias {
  background: var(--sand-light);
}
.tipologias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.tipo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.tipo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.tipo-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--green-100);
}
.tipo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.tipo-card:hover .tipo-card-img img {
  transform: scale(1.05);
}
.tipo-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tipo-card h3 {
  margin-bottom: 0.25rem;
}
.tipo-card .area {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.tipo-card .preco {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-900);
  margin: 0.5rem 0 0.5rem;
  font-weight: 700;
  line-height: 1;
}
.tipo-card .preco small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.3rem;
}
.tipo-card ul {
  list-style: none;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.tipo-card ul li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.3rem 0 0.3rem 1.1rem;
  position: relative;
}
.tipo-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 700;
}
.tipologias-nota {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* PAGAMENTO */
.pagamento {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 100%);
  color: var(--white);
  position: relative;
  isolation: isolate;
}
.pagamento .section-title { color: var(--white); }
.pagamento .section-sub { color: rgba(255, 255, 255, 0.82); }
.pagamento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.pagamento-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  border-top: 3px solid var(--gold);
  backdrop-filter: blur(4px);
}
.pagamento-percent {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pagamento-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.pagamento-item small {
  display: block;
  font-size: 0.78rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.pagamento-item p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  margin: 0;
}
.pagamento-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 1.5rem;
  background: rgba(176, 138, 74, 0.14);
  border: 1px solid rgba(212, 174, 122, 0.35);
  border-radius: var(--radius);
}
.pagamento-cta p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.5rem;
}
.pagamento-cta strong {
  color: var(--gold-light);
}

/* PLANTAS */
.plantas {
  background: var(--white);
}
.plantas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.planta-item {
  background: var(--sand-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--line);
}
.planta-item:hover,
.planta-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  outline: none;
}
.planta-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.planta-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.planta-item:hover .planta-img img {
  transform: scale(1.04);
}
.planta-item figcaption {
  padding: 1rem 1.25rem 1.25rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.planta-item figcaption strong {
  display: block;
  color: var(--green-900);
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.planta-item figcaption small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Zoom hint compartilhado */
.zoom-hint {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(15, 30, 20, 0.78);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  backdrop-filter: blur(4px);
  font-weight: 700;
}
.tipo-card-img,
.galeria-item,
.planta-item {
  position: relative;
}
.tipo-card-img:hover .zoom-hint,
.galeria-item:hover .zoom-hint,
.planta-item:hover .zoom-hint,
.planta-img:hover .zoom-hint {
  opacity: 1;
}
.tipo-card-img .zoom-hint {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: auto;
  height: auto;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}
.tipo-card-img {
  cursor: zoom-in;
}
.galeria-item {
  cursor: zoom-in;
}

.tipo-card-planta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
}
.tipo-card-planta:hover { color: var(--gold-dark); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 12, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 2rem;
  animation: fadeIn 0.2s;
  backdrop-filter: blur(8px);
}
.lightbox-figure {
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.lightbox img {
  max-width: 95vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: zoomIn 0.25s ease-out;
}
@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox figcaption {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-align: center;
  font-style: italic;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.1s;
  backdrop-filter: blur(4px);
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox-close:active,
.lightbox-nav:active {
  transform: scale(0.94);
}
.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  font-size: 1.75rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 2.2rem;
  line-height: 1;
  padding-bottom: 4px;
}
.lightbox-nav:active {
  transform: translateY(-50%) scale(0.94);
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

@media (max-width: 640px) {
  .lightbox-close { width: 40px; height: 40px; font-size: 1.5rem; top: 0.75rem; right: 0.75rem; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.8rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* GALERIA */
.galeria { background: var(--sand-light); }
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.galeria-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--green-100);
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.galeria-item:hover img {
  transform: scale(1.05);
}
.galeria-item .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 30, 20, 0.85));
  color: var(--white);
  padding: 1.75rem 1rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
}

/* FAQ */
.faq {
  background: var(--green-50);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gold);
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--green-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  margin: 0;
}

/* FORM PRINCIPAL */
.form-section {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 100%);
  color: var(--white);
}
.form-section .section-title { color: var(--white); }
.form-section .section-sub { color: rgba(255, 255, 255, 0.85); }
.form-lead {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  border-top: 4px solid var(--gold);
}
.form-lead h2 {
  text-align: center;
  margin-bottom: 0.25rem;
  font-size: 1.6rem;
}
.form-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.form-lead input[type='text'],
.form-lead input[type='tel'],
.form-lead input[type='email'],
.modal form input[type='text'],
.modal form input[type='tel'],
.modal form input[type='email'] {
  display: block;
  width: 100%;
  padding: 0.95rem 1rem;
  margin: 0.5rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--sand-light);
  transition: border-color 0.2s, background 0.2s;
}
.form-lead input:focus,
.modal form input:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--white);
}
.lgpd {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  margin: 1rem 0;
  color: var(--muted);
  cursor: pointer;
}
.lgpd input[type='checkbox'] {
  margin-top: 0.2rem;
  accent-color: var(--green-800);
}
.form-msg {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #b00020;
}
.hidden { display: none !important; }

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 20, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: fadeIn 0.2s;
  backdrop-filter: blur(4px);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-content {
  background: var(--white);
  padding: 2.25rem;
  border-radius: var(--radius);
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: slideUp 0.25s ease-out;
  border-top: 4px solid var(--gold);
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal-content h3 {
  margin-bottom: 0.5rem;
  text-align: center;
}
.modal-content > p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.85rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  padding: 0.25rem 0.5rem;
}
.modal-close:hover { color: var(--ink); }

/* WhatsApp float */
.btn-whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 9000;
  transition: transform 0.2s;
  animation: pulse 2.4s ease-in-out infinite;
}
.btn-whatsapp-float:hover {
  transform: scale(1.08);
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* FOOTER */
.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2rem;
  font-size: 0.85rem;
}
.site-footer a { color: var(--gold-light); }
.site-footer a:hover { color: var(--gold); }
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}
.site-footer strong { color: var(--gold-light); font-weight: 600; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* OBRIGADO */
.obrigado {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-800) 100%);
  color: var(--white);
}
.obrigado h1 { color: var(--white); margin-bottom: 1rem; }
.obrigado p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin: 0 auto 1.5rem;
}
.obrigado strong { color: var(--gold-light); }
.obrigado .actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.obrigado .actions a {
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
}
.obrigado .actions .primary {
  background: var(--gold);
  color: var(--white);
}
.obrigado .actions .primary:hover { background: var(--gold-dark); }
.obrigado .actions .secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.obrigado .actions .secondary:hover { background: rgba(255, 255, 255, 0.1); }

/* MOBILE */
@media (max-width: 880px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero-meta {
    gap: 1rem 1.5rem;
  }
  .btn-whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 56px;
    height: 56px;
  }
  .pagamento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.25rem; }
  .form-lead { padding: 1.75rem 1.5rem; }
  .pagamento-grid { grid-template-columns: 1fr; }
}
