/* ==========================================================================
   iGreen Energy — Landing page V2
   Paleta verde + dourado, ilustrações em SVG (sem fotos), animações discretas.
   ========================================================================== */

:root {
  --green-900: #06281a;
  --green-800: #0b3d24;
  --green-700: #12693c;
  --green-600: #17864c;
  --green-500: #1fa85f;
  --green-300: #5fe3a0;
  --green-100: #e6f6ec;
  --gold-600: #d99a1e;
  --gold-500: #f5b942;
  --gold-300: #ffcf6e;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebd59;
  --ink: #12211a;
  --muted: #55655d;
  --bg: #ffffff;
  --bg-alt: #f4faf6;
  --border: #d9ebe1;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 18px rgba(11, 61, 36, 0.10);
  --shadow-md: 0 16px 40px rgba(11, 61, 36, 0.16);
  --shadow-glow-green: 0 10px 30px rgba(31, 168, 95, 0.35);
  --max-width: 1120px;
  --nav-height: 72px;
  --font-heading: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Impede que o cabeçalho fixo cubra a seção alvo dos links âncora */
  scroll-padding-top: calc(var(--nav-height) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

p { margin: 0 0 16px; color: var(--muted); }

a { color: inherit; }

.text-gradient {
  background: linear-gradient(90deg, var(--gold-500), var(--green-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--green-700);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
}

.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

/* ============================ Animações ================================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}

@keyframes float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 25px) scale(0.95); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-glow-green); }
  50% { box-shadow: 0 14px 40px rgba(31, 168, 95, 0.55); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bar-grow {
  from { height: 4%; }
  to { height: var(--h); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================= Botões =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  box-shadow: var(--shadow-glow-green);
}

.btn--primary:hover { box-shadow: 0 14px 34px rgba(31, 168, 95, 0.45); }

.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 2px solid var(--gold-500);
}

.btn--secondary:hover { background: var(--gold-500); color: var(--green-900); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); }

.btn--whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp:hover { box-shadow: 0 14px 34px rgba(37, 211, 102, 0.5); }

.btn--large { font-size: 1.1rem; padding: 18px 34px; }
.btn--sm { font-size: 0.9rem; padding: 11px 20px; }
.btn--full { display: flex; width: 100%; }
.btn--glow { animation: pulse-glow 3.2s ease-in-out infinite; }

.btn-link {
  display: block;
  width: 100%;
  margin-top: 14px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: underline;
}

.btn-link:hover { color: var(--green-700); }

/* ============================ Navegação ================================= */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 50;
  background: rgba(6, 40, 26, 0);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.is-stuck {
  background: rgba(6, 40, 26, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
}

.brand__mark svg { width: 100%; height: 100%; }
.brand__text strong { font-weight: 800; color: var(--green-300); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__menu a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.nav__menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}

.nav__menu a:not(.btn):hover { color: #fff; }
.nav__menu a:not(.btn):hover::after { width: 100%; }
.nav__menu .btn { color: #fff; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================== Hero ==================================== */

.hero {
  position: relative;
  background: radial-gradient(120% 140% at 50% -10%, var(--green-700) 0%, var(--green-900) 65%);
  padding: calc(var(--nav-height) + 72px) 0 96px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__blobs { position: absolute; inset: 0; z-index: 0; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.blob--gold { background: radial-gradient(circle, var(--gold-300), transparent 70%); opacity: 0.55; }
.blob--green { background: radial-gradient(circle, var(--green-300), transparent 70%); opacity: 0.4; }
.blob--gold-soft { background: radial-gradient(circle, var(--gold-300), transparent 70%); opacity: 0.22; }
.blob--green-soft { background: radial-gradient(circle, var(--green-500), transparent 70%); opacity: 0.18; }

.blob--1 { width: 380px; height: 380px; top: -120px; left: -80px; animation: float-a 16s ease-in-out infinite; }
.blob--2 { width: 260px; height: 260px; bottom: -80px; right: 5%; animation: float-b 14s ease-in-out infinite; }
.blob--3 { width: 320px; height: 320px; top: 20%; right: -100px; animation: float-a 18s ease-in-out infinite reverse; }
.blob--4 { width: 340px; height: 340px; top: -60px; left: -120px; animation: float-b 20s ease-in-out infinite; }
.blob--5 { width: 300px; height: 300px; top: 10%; left: -110px; animation: float-a 19s ease-in-out infinite; }
.blob--6 { width: 380px; height: 380px; bottom: -140px; right: -90px; animation: float-b 22s ease-in-out infinite; }
.blob--7 { width: 320px; height: 320px; top: 5%; right: -100px; animation: float-a 21s ease-in-out infinite; }
.blob--8 { width: 300px; height: 300px; top: -80px; left: -60px; animation: float-b 18s ease-in-out infinite; }
.blob--9 { width: 280px; height: 280px; bottom: -60px; right: -60px; animation: float-a 17s ease-in-out infinite reverse; }

.hero__content { position: relative; z-index: 1; }

.hero__fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold-300);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 660px;
  margin: 0 auto 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}

.hero__stats li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero__stats li:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.1); }

.hero__stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-300);
  font-variant-numeric: tabular-nums;
}

.hero__stats span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* ============================= Seções =================================== */

.section {
  position: relative;
  padding: 88px 0;
  overflow: hidden;
}

.section-blobs { position: absolute; inset: 0; z-index: 0; }

.section--alt {
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
  color: #fff;
}

.section--alt .section__title,
.section--alt h3 { color: #fff; }

.section--alt .section__intro { color: rgba(255, 255, 255, 0.78); }

.kicker {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

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

.section__title {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  color: var(--green-900);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__title--left { text-align: left; margin-left: 0; }

.section__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* Ilustrações de fundo */
.mesh-illustration,
.wave-illustration,
.leaf-illustration,
.rays-illustration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.mesh-illustration { inset: 0; width: 100%; height: 100%; }
.mesh-illustration--hero { color: rgba(255, 255, 255, 0.14); }
.mesh-illustration--hero .mesh-illustration__accent { color: var(--gold-300); }

.wave-illustration {
  inset: auto 0 0 0;
  width: 100%;
  height: 240px;
  color: var(--green-100);
}

.leaf-illustration {
  top: -40px;
  right: -60px;
  width: 340px;
  height: 340px;
  color: rgba(255, 255, 255, 0.08);
}

.rays-illustration {
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--gold-500);
  opacity: 0.1;
}

/* ======================== Por que existimos ============================= */

.section--why { background: var(--bg); }

.why__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.why__text .kicker { text-align: left; }

.why__cards { display: grid; gap: 16px; }

.mini-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--green-300);
}

.mini-card__icon {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
}

.mini-card__icon svg { width: 24px; height: 24px; }

.mini-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--green-900);
}

.mini-card p { margin: 0; font-size: 0.94rem; }

/* ========================== Como funciona =============================== */

.flow {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.flow__step {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 30px 22px 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.flow__step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 207, 110, 0.5);
}

/* Linha que liga as etapas no desktop */
.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -14px;
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.flow__icon { display: block; width: 46px; height: 46px; margin-bottom: 14px; }
.flow__icon svg { width: 100%; height: 100%; }

.flow__num {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--green-900);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
}

.flow__step h3 { font-size: 1.05rem; }
.flow__step p { margin: 0; font-size: 0.94rem; color: rgba(255, 255, 255, 0.78); }

.flow__note {
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.section--alt .btn--primary {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================ Vantagens ================================= */

.advantages {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.advantages li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.advantages li:hover { transform: translateX(4px); border-color: var(--green-300); }

.check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  position: relative;
  margin-top: 2px;
}

.check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* =========================== iGreen Club ================================ */

.section--club {
  background: linear-gradient(180deg, var(--green-800) 0%, var(--green-900) 100%);
  color: #fff;
}

.section--club .section__title { color: #fff; }
.section--club p { color: rgba(255, 255, 255, 0.8); }
.section--club .kicker { text-align: left; }

.club__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.club__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }

.club__list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.club__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(245, 185, 66, 0.18);
}

.club__phone { display: flex; justify-content: center; }

.phone {
  position: relative;
  width: 260px;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  animation: float-b 9s ease-in-out infinite;
}

.phone__notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.phone__screen {
  background: linear-gradient(180deg, #0a3320, #062015);
  border-radius: 24px;
  padding: 34px 18px 20px;
  display: grid;
  gap: 12px;
}

.phone__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-300);
}

.phone__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
}

.phone__label { font-size: 0.72rem; color: rgba(255, 255, 255, 0.6); }

.phone__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold-300);
  margin-bottom: 12px;
}

.phone__bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 56px;
}

.phone__bars span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--green-300), var(--green-600));
  animation: bar-grow 1.4s ease-out both;
}

.phone__bars span:nth-child(2) { animation-delay: 0.1s; }
.phone__bars span:nth-child(3) { animation-delay: 0.2s; }
.phone__bars span:nth-child(4) { animation-delay: 0.3s; }
.phone__bars span:nth-child(5) { animation-delay: 0.4s; }
.phone__bars span:nth-child(6) { animation-delay: 0.5s; }

.phone__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 12px;
}

.phone__row em { font-style: normal; color: var(--gold-300); font-weight: 600; }

/* ============================= Cotação ================================== */

.section--cotacao {
  background: radial-gradient(120% 100% at 50% 0%, var(--green-100) 0%, #ffffff 55%);
}

.cotacao-card {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 32px;
}

.progress {
  height: 5px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 24px;
}

.progress__bar {
  display: block;
  height: 100%;
  width: 50%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300));
  transition: width 0.45s ease;
}

.cotacao-step { display: none; }

.cotacao-step.is-active {
  display: block;
  animation: fade-up 0.4s ease both;
}

.cotacao-step h3 { color: var(--green-900); font-size: 1.25rem; }

.cotacao-step__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 8px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317864c' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(31, 168, 95, 0.15);
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.82rem;
  text-align: center;
  color: var(--muted);
}

.result-badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.result-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.result-box > div {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  color: #fff;
}

.result-box__label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-box__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1.35;
  margin-top: 4px;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 12px 14px;
}

.confirm-message { color: var(--green-700); font-weight: 600; }

.form-erro {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #f2b8b5;
  border-left: 4px solid #c5221f;
  background: #fdecea;
  color: #a50e0b;
  font-size: 0.92rem;
  font-weight: 500;
  animation: fade-up 0.28s ease both;
}

.form-erro::before {
  content: "!";
  flex: 0 0 18px;
  height: 18px;
  border-radius: 50%;
  background: #c5221f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.form-erro[hidden] { display: none; }

.redirect-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 14px;
}

/* =============================== FAQ ==================================== */

.section--faq { background: var(--bg-alt); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--green-300); }

.faq-item summary {
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  color: var(--green-900);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after { transform: rotate(135deg); }

.faq-item[open] p { animation: fade-up 0.32s ease both; }

.faq-item p { margin: 14px 0 0; }

/* ============================ Licenciado ================================ */

.section--licenciado {
  background: var(--bg);
  padding: 64px 0;
}

.licenciado__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.licenciado__box .kicker { text-align: left; }
.licenciado__box h2 { font-size: clamp(1.35rem, 2.6vw, 1.8rem); margin-bottom: 10px; }
.licenciado__box p { color: rgba(255, 255, 255, 0.8); margin: 0; max-width: 620px; }
.licenciado__box .btn { flex: none; }

/* ============================== Rodapé ================================== */

.footer {
  position: relative;
  background: linear-gradient(180deg, var(--green-900) 0%, #041610 100%);
  color: #fff;
  padding: 56px 0 40px;
  overflow: hidden;
}

.footer-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  z-index: 0;
}

.footer__content { position: relative; z-index: 1; }

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer__links a:hover { color: var(--green-300); }

.footer__legal {
  margin: 24px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 860px;
  line-height: 1.6;
}

.footer__copy {
  margin: 20px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================== CTA fixo mobile ============================ */

.sticky-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  padding: 15px 20px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  box-shadow: 0 12px 30px rgba(6, 40, 26, 0.4);
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }

/* ============================ Responsivo ================================ */

@media (max-width: 980px) {
  .why__grid,
  .club__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .club__phone { order: 2; }

  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow__step:not(:last-child)::after { display: none; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: absolute;
    top: var(--nav-height);
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(6, 40, 26, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .nav__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

  .nav__menu a:not(.btn) {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .nav__menu a:not(.btn)::after { display: none; }
  .nav__menu a:not(.btn):hover { background: rgba(255, 255, 255, 0.08); }
  .nav__menu .btn { margin-top: 8px; }

  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .advantages { grid-template-columns: 1fr; }

  .licenciado__box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .licenciado__box .btn { width: 100%; }
}

@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .hero { padding: calc(var(--nav-height) + 48px) 0 72px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .leaf-illustration { width: 220px; height: 220px; }
  .mesh-illustration--hero { opacity: 0.6; }
  .rays-illustration { opacity: 0.06; }
  .blob { filter: blur(40px); }

  .flow { grid-template-columns: 1fr; }
  .cotacao-card { padding: 26px 20px; }
  .result-box { grid-template-columns: 1fr; }
  .licenciado__box { padding: 30px 24px; }
  .sticky-cta { display: block; }

  .footer__top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stats strong { font-size: 1.35rem; }
  .phone { width: 100%; max-width: 260px; }
}
