/* ===== TOKENS ===== */
:root {
  --bg: #15161e;
  --bg-soft: #1b1d27;
  --bg-card: #1e212b;
  --line: #2c2e36;
  --text: #f3f5f8;
  --text-dim: #a5acc2;
  --accent: #2e8bff;        /* brand green */
  --accent-2: #6db3ff;
  --accent-soft: rgba(46,139,255,.12);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1180px;
  --shadow: 0 24px 60px -20px rgba(0,0,0,.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
h1, h2, h3, .logo-text { font-family: 'Sora', sans-serif; line-height: 1.1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-weight: 600; font-size: .95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #ffffff;
  box-shadow: 0 10px 30px -8px rgba(46,139,255,.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -8px rgba(46,139,255,.6); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(21,22,30,.75);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); background: rgba(21,22,30,.94); }
.nav { display: flex; align-items: center; gap: 32px; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark-img { height: 34px; width: auto; display: block; }
.logo-wordmark { height: 22px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--text-dim); font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ===== HERO ===== */
.hero { position: relative; padding: 90px 0 40px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,139,255,.22), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -.02em; }
.hero-lead { font-size: 1.18rem; color: var(--text-dim); margin: 24px 0 36px; max-width: 600px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat strong { display: block; font-family: 'Sora', sans-serif; font-size: 1.9rem; color: var(--text); }
.stat span { color: var(--text-dim); font-size: .9rem; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -.02em; }
.section-head p { color: var(--text-dim); margin-top: 14px; font-size: 1.08rem; }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 20px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s, border-color .25s, background .25s;
}
.card:hover { transform: translateY(-6px); border-color: var(--accent); background: #181d28; }
.card-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.18rem; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: .95rem; }

/* ===== SPLIT ===== */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.split-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 700; letter-spacing: -.02em; }
.split-text .lead { color: var(--text-dim); font-size: 1.1rem; margin: 20px 0 28px; }
.check-list { list-style: none; margin-bottom: 32px; }
.check-list li {
  position: relative; padding-left: 34px; margin-bottom: 14px;
  color: var(--text); font-weight: 500;
}
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: .8rem; font-weight: 700;
}
.split-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature-tile {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.feature-tile strong {
  display: block; font-family: 'Sora', sans-serif;
  font-size: 1.6rem; color: var(--accent); margin-bottom: 10px;
}
.feature-tile span { color: var(--text-dim); font-size: .92rem; }
.eco-tile { position: relative; }
.eco-icon { position: absolute; top: 22px; right: 22px; width: 34px; height: auto; opacity: .9; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, #0f1a2e, var(--bg-card));
  box-shadow: var(--shadow);
}
.badge {
  position: absolute; top: -13px; left: 30px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #ffffff; font-weight: 700; font-size: .75rem;
  padding: 5px 14px; border-radius: 999px;
  letter-spacing: .04em;
}
.price-card h3,
.price-card .price-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem; font-weight: 700;
}
.price-sub { color: var(--accent); font-size: .9rem; margin: 6px 0 24px; font-weight: 500; }
.price-card ul { list-style: none; margin-bottom: 28px; flex: 1; }
.price-card li {
  position: relative; padding-left: 26px; margin-bottom: 12px;
  color: var(--text-dim); font-size: .96rem;
}
.price-card li::before {
  content: "→"; position: absolute; left: 0; color: var(--accent);
}
.price-card .btn { width: 100%; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; padding: 56px 24px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: #ffffff; }
.cta-band p { color: rgba(255,255,255,.85); font-weight: 500; }
.cta-band .btn-primary {
  background: #0b1830; color: var(--accent-2);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.4);
}
.cta-band .btn-primary:hover { background: #000; }

/* ===== CONTACT ===== */
.contact-list { list-style: none; margin: 24px 0 32px; }
.contact-list li {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px; color: var(--text); font-size: 1.02rem;
}
.contact-list .ci {
  width: 38px; height: 38px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 10px; font-size: 1.05rem;
}
.map-wrap { display: block; }
.map-wrap iframe {
  width: 100%; height: 420px; border: 1px solid var(--line);
  border-radius: var(--radius); filter: grayscale(.4) contrast(1.1);
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 56px 0 40px;
}
.footer-inner { text-align: center; display: grid; gap: 14px; justify-items: center; }
.footer-logo { height: 30px; width: auto; }
.site-footer p { color: var(--text-dim); }
.copyright { font-size: .85rem; color: #5e6675; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.5);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== MODAL PRÉ-AGENDAMENTO ===== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(6,7,11,.78); backdrop-filter: blur(4px);
}
.modal-card {
  position: relative; z-index: 1;
  width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 32px;
  box-shadow: var(--shadow);
  animation: modalIn .28s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: 0; cursor: pointer;
  color: var(--text-dim); font-size: 1.8rem; line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--text); }
.modal-head h3 { font-size: 1.6rem; font-weight: 700; margin: 4px 0 6px; }
.modal-sub { color: var(--text-dim); font-size: .96rem; }

.steps {
  list-style: none; display: flex; margin: 26px 0 4px; padding: 0;
}
.step {
  flex: 1; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
}
/* linha de ligação entre os pontos */
.step::before {
  content: ""; position: absolute; z-index: 0;
  top: 16px; left: -50%; right: 50%; height: 2px;
  background: var(--line); transition: background .3s;
}
.step:first-child::before { display: none; }
.step.is-active::before, .step.is-done::before { background: var(--accent); }
.step-dot {
  position: relative; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-card); border: 2px solid var(--line);
  color: var(--text-dim); font-weight: 700; font-size: .9rem;
  transition: all .25s ease;
}
.step.is-active .step-dot {
  border-color: var(--accent); color: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}
.step.is-done .step-dot {
  background: var(--accent); border-color: var(--accent); color: #fff;
  font-size: 0;
}
.step.is-done .step-dot::after { content: "✓"; font-size: 1rem; }
.step-label {
  font-size: .8rem; font-weight: 600; color: var(--text-dim);
  text-align: center; transition: color .2s;
}
.step.is-active .step-label { color: var(--accent); }
.step.is-done .step-label { color: var(--text); }

#agendaForm { margin-top: 26px; }
.fstep { display: none; animation: fadeIn .25s ease; }
.fstep.is-active { display: block; }
@keyframes fadeIn { from { opacity: 0; } }
.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-size: .85rem; font-weight: 600; color: var(--text-dim); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px; padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #6b7385; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field .invalid, .field input.invalid, .invalid { border-color: #e3506b !important; }
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check { display: flex; align-items: center; gap: 10px; color: var(--text-dim); font-size: .9rem; margin: 4px 0 8px; cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--accent); }
.slots-msg { font-size: .82rem; color: var(--text-dim); margin: -6px 0 4px; min-height: 1em; }
.slots-msg.is-ok { color: var(--accent); }
.slots-msg.is-warn { color: #e3a14b; }
.fstep-actions { display: flex; gap: 12px; margin-top: 22px; }
.fstep-actions .btn { flex: 1; }
.modal-foot { text-align: center; font-size: .8rem; color: #6b7385; margin-top: 14px; }

/* sucesso */
.fstep-ok { text-align: center; padding: 12px 0 4px; }
.ok-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  font-size: 2rem; font-weight: 700;
  box-shadow: 0 0 0 6px var(--accent-soft);
}
.fstep-ok h4 { font-family: 'Sora', sans-serif; font-size: 1.4rem; margin-bottom: 10px; }
.ok-sub { color: var(--text-dim); margin-bottom: 24px; font-size: .98rem; }
.fstep-ok .btn { width: 100%; margin-bottom: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--bg-soft); border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px -12px rgba(0,0,0,.6);
    padding: 8px 24px; margin: 0;
    opacity: 0; visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .section { padding: 70px 0; }
}
@media (max-width: 460px) {
  .split-visual { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .modal-card { padding: 28px 20px; }
  .step { font-size: .72rem; }
}

/* ===== PREÇOS ===== */
.price-group { margin-bottom: 72px; }
.price-group:last-of-type { margin-bottom: 0; }
.price-group-head { max-width: 760px; margin-bottom: 32px; }
.price-group-head h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 1.9rem);
  font-weight: 700; margin-bottom: 12px;
}
.price-group-head p { color: var(--text-dim); line-height: 1.7; }
.price-group-head strong { color: var(--text); font-weight: 600; }
.price-icon { font-size: .9em; }

.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }

.price-rows {
  margin: 4px 0 28px; flex: 1;
  border-top: 1px solid var(--line);
}
.price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line);
}
.price-row span { color: var(--text-dim); font-size: .88rem; }
.price-row strong {
  font-family: 'Sora', sans-serif; font-size: 1.25rem;
  font-weight: 700; color: var(--text); letter-spacing: -.02em;
}
.price-card.featured .price-row strong { color: var(--accent-2); }

.price-note {
  color: var(--text-dim); font-size: .9rem;
  margin-top: 22px; text-align: center;
}
.price-included {
  margin-top: 32px; padding: 28px 30px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); max-width: 760px;
}
.price-included h4 {
  font-family: 'Sora', sans-serif; font-size: 1.05rem;
  font-weight: 700; margin-bottom: 18px;
}
.price-included .check-list { margin: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 12px;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 56px 22px 26px; position: relative;
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 1.02rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 26px; top: 50%;
  transform: translateY(-50%); color: var(--accent);
  font-size: 1.5rem; font-weight: 400; line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--accent-2); }
.faq-item > p {
  padding: 0 26px 24px; color: var(--text-dim);
  line-height: 1.75; font-size: .96rem;
}

@media (max-width: 1024px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .pricing-grid-4, .pricing-grid-2 { grid-template-columns: 1fr; }
  .price-group { margin-bottom: 56px; }
  .faq-item summary { padding: 18px 48px 18px 20px; font-size: .98rem; }
  .faq-item > p { padding: 0 20px 20px; }
}
