/* ═══════════════════════════════════════════════════
   LEADFLOW — style.css
   Visual: dark performance · neon green · bold type
   ═══════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #080b08;
  color: #dde8dd;
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── TOKENS ────────────────────────────────────── */
:root {
  --green:       #00e676;
  --green-dark:  #00b85c;
  --green-glow:  rgba(0,230,118,0.3);
  --green-dim:   rgba(0,230,118,0.08);
  --green-border:rgba(0,230,118,0.2);
  --yellow:      #f5e642;
  --yellow-dim:  rgba(245,230,66,0.1);
  --red:         #ff4757;
  --red-dim:     rgba(255,71,87,0.1);
  --bg:          #080b08;
  --bg-2:        #0c100c;
  --bg-3:        #111811;
  --bg-card:     #0e120e;
  --border:      rgba(255,255,255,0.05);
  --border-hi:   rgba(0,230,118,0.25);
  --text:        #dde8dd;
  --text-muted:  #7a9478;
  --text-dim:    #4a5e4a;
  --white:       #ffffff;
  --nav-h:       70px;
  --r-sm: 4px; --r-md: 6px; --r-lg: 10px;
  --r-xl: 16px; --r-2xl: 24px; --r-3xl: 32px; --r-4xl: 40px;
}

/* ── LAYOUT ─────────────────────────────────────  */
.wrap    { max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; }
.wrap-sm { max-width: 52rem; margin-inline: auto; padding-inline: 1.5rem; }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.875rem; border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; max-width: 44rem;
}

/* ── BUTTONS ─────────────────────────────────────  */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--green); color: #080b08;
  font-weight: 800; font-size: 1rem;
  padding: 0.875rem 1.75rem; border-radius: var(--r-md);
  box-shadow: 0 0 24px var(--green-glow);
  transition: all 0.2s; white-space: nowrap;
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 0 48px var(--green-glow); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); }

.btn-primary-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  background: var(--green); color: #080b08;
  font-weight: 900; font-size: 1.1rem;
  padding: 1.1rem 2.25rem; border-radius: var(--r-md);
  box-shadow: 0 0 36px var(--green-glow);
  transition: all 0.2s; white-space: nowrap;
}
.btn-primary-lg:hover { background: var(--green-dark); box-shadow: 0 0 60px var(--green-glow); transform: translateY(-2px); }
.btn-primary-lg:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: transparent; color: var(--text-muted);
  font-weight: 600; font-size: 0.95rem;
  padding: 0.875rem 1.5rem; border-radius: var(--r-md);
  border: 1px solid var(--border); transition: all 0.2s; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--green-border); color: var(--green); }

.btn-green {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: #25d366; color: #080b08;
  font-weight: 900; font-size: 1.25rem;
  padding: 1.1rem 2rem; border-radius: var(--r-xl);
  box-shadow: 0 0 32px rgba(37,211,102,0.35);
  transition: all 0.2s;
}
.btn-green:hover { background: #1db954; box-shadow: 0 0 56px rgba(37,211,102,0.5); transform: translateY(-2px); }
.btn-green:active { transform: scale(0.97); }
.btn-green svg { width: 1.75rem; height: 1.75rem; flex-shrink: 0; }

.btn-nav {
  background: var(--green); color: #080b08;
  font-weight: 800; font-size: 0.75rem;
  padding: 0.55rem 1.125rem; border-radius: var(--r-md);
  box-shadow: 0 0 16px var(--green-glow);
  transition: all 0.2s; white-space: nowrap;
}
.btn-nav:hover { background: var(--green-dark); box-shadow: 0 0 32px var(--green-glow); }

/* ── NAVBAR ──────────────────────────────────────  */
#navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,11,8,0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h); display: flex; align-items: center;
  transition: all 0.3s;
}
#navbar.scrolled { border-bottom-color: var(--green-border); box-shadow: 0 1px 40px rgba(0,0,0,0.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 34px; width: auto; display: block; }
.nav-logo-text { font-size: 1.5rem; font-weight: 900; color: var(--white); letter-spacing: -0.04em; }
.nav-logo-text span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 0.875rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
#mob-btn {
  display: none; align-items: center; justify-content: center;
  color: var(--text-muted); padding: 0.375rem; transition: color 0.2s;
}
#mob-btn:hover { color: var(--white); }
#mob-btn svg { width: 2rem; height: 2rem; }
#icon-close { display: none; }
#mob-menu { display: none; background: var(--bg-2); border-top: 1px solid var(--border); }
#mob-menu.open { display: block; }
.mob-links { display: flex; flex-direction: column; padding: 1.25rem 1.5rem 1.75rem; }
.mob-links a {
  color: var(--text-muted); font-weight: 500; font-size: 1.1rem;
  padding: 0.875rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mob-links a:last-of-type { border-bottom: none; }
.mob-links a:hover { color: var(--white); }
.mob-links .btn-wa-mob {
  display: block; text-align: center;
  background: var(--green); color: #080b08;
  font-weight: 800; font-size: 0.95rem;
  padding: 0.875rem; border-radius: var(--r-md);
  margin-top: 1.25rem; border-bottom: none !important;
  box-shadow: 0 0 20px var(--green-glow);
}

/* ── URGENCY BANNER ──────────────────────────────  */
.urgency-banner {
  background: var(--green-dim);
  border-bottom: 1px solid var(--green-border);
  padding: 0.75rem 1rem;
}
.urgency-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.5rem 1.25rem;
  font-size: 0.875rem; color: var(--text-muted);
}
.urgency-inner strong { color: var(--green); }
.urgency-inner .dot { width: 7px; height: 7px; background: var(--green); border-radius: 9999px; display: inline-block; animation: blink 1.5s infinite; }
.urgency-inner a { color: var(--green); font-weight: 700; }
.urgency-inner a:hover { text-decoration: underline; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ── HERO ────────────────────────────────────────  */
#inicio {
  background: var(--bg);
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
#inicio::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,230,118,0.06) 1px, transparent 0);
  background-size: 32px 32px; pointer-events: none;
}
#inicio::after {
  content: ''; position: absolute;
  bottom: -8rem; left: -8rem;
  width: 50rem; height: 50rem;
  background: radial-gradient(ellipse at center, rgba(0,230,118,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
  padding-block: 5rem; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green-dim); border: 1px solid var(--green-border);
  color: var(--green); padding: 0.35rem 1rem; border-radius: 9999px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 1.5rem; width: fit-content;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 900; line-height: 1.04; letter-spacing: -0.04em;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--green); }
.hero-desc {
  font-size: 1.15rem; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 0.75rem; max-width: 38rem;
}
.hero-subdesc {
  font-size: 0.95rem; color: var(--text-dim); line-height: 1.7;
  margin-bottom: 2.25rem; max-width: 38rem;
}
.hero-cta-group {
  display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; margin-bottom: 2.25rem;
}
.hero-guarantee {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-dim);
}
.hero-guarantee svg { color: var(--green); width: 14px; height: 14px; flex-shrink: 0; }
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  padding-top: 1.75rem; border-top: 1px solid var(--border); margin-top: 1.5rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--text-muted); font-weight: 500;
}
.trust-item svg { color: var(--green); width: 13px; height: 13px; flex-shrink: 0; }
.hero-img-wrap { position: relative; }
.hero-glow {
  position: absolute; inset: -2rem;
  background: radial-gradient(ellipse, rgba(0,230,118,0.12) 0%, transparent 65%);
  pointer-events: none; border-radius: 9999px;
}
.hero-img {
  width: 100%; height: 34rem; object-fit: cover;
  border-radius: var(--r-2xl);
  border: 1px solid var(--border-hi);
  box-shadow: 0 0 60px rgba(0,230,118,0.1), 0 32px 64px rgba(0,0,0,0.7);
  position: relative; z-index: 1;
}

/* ── PRICE HIGHLIGHT ─────────────────────────────  */
.price-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 4rem;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 40px rgba(0,230,118,0.12);
}
.price-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #080b08;
  font-size: 0.6rem; font-weight: 900; letter-spacing: 0.15em;
  padding: 3px 12px; border-radius: 9999px;
}
.price-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.75rem; }
.price-amount { font-size: 2.8rem; font-weight: 900; color: var(--white); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.25rem; }
.price-amount span { font-size: 1.2rem; color: var(--text-muted); font-weight: 600; }
.price-period { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1.25rem; }
.price-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.price-feature-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; text-align: left; }
.price-feature {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.price-feature svg { color: var(--green); flex-shrink: 0; width: 14px; height: 14px; }

/* ── PAIN SECTION ────────────────────────────────  */
#problemas { background: var(--bg); padding-block: 5.5rem; border-top: 1px solid var(--border); }
.pain-intro { text-align: center; margin-bottom: 3.5rem; }
.pain-intro .section-title { color: var(--white); margin-bottom: 1rem; }
.pain-intro .section-desc { margin: 0 auto; text-align: center; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }
.pain-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--red); border-radius: var(--r-lg); padding: 1.75rem;
  transition: border-color 0.3s;
}
.pain-card:hover { border-left-color: var(--red); border-color: rgba(255,71,87,0.3); }
.pain-card-icon { font-size: 1.75rem; margin-bottom: 0.875rem; }
.pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.pain-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.pain-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,230,118,0.08), rgba(0,230,118,0.03));
  border: 1px solid var(--border-hi); border-radius: var(--r-2xl); padding: 3rem;
}
.pain-cta h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.025em; }
.pain-cta p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.75rem; }

/* ── ABOUT ───────────────────────────────────────  */
#sobre { background: var(--bg-2); padding-block: 5.5rem; border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.about-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-2xl); border: 1px solid var(--border-hi);
  box-shadow: 0 0 40px rgba(0,230,118,0.08);
}
.about-title { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 900; color: var(--white); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
.about-lead { font-size: 1.1rem; font-weight: 600; color: var(--text); line-height: 1.65; margin-bottom: 1rem; }
.about-text { font-size: 0.975rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.about-bullets { margin: 1.25rem 0 1.75rem; display: flex; flex-direction: column; gap: 0.625rem; }
.about-bullet { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.about-bullet svg { color: var(--green); flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding-top: 1.75rem; border-top: 1px solid var(--border); }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--green); letter-spacing: -0.04em; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.72rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── SERVICES ────────────────────────────────────  */
#servicos { background: var(--bg); padding-block: 5.5rem; border-top: 1px solid var(--border); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-title { color: var(--white); margin-bottom: 1rem; }
.services-header .section-desc { margin: 0 auto; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { border-color: var(--border-hi); transform: translateY(-4px); box-shadow: 0 0 40px rgba(0,230,118,0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 3rem; height: 3rem;
  background: var(--green-dim); border: 1px solid var(--green-border);
  border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center;
  color: var(--green); margin-bottom: 1.25rem;
}
.service-icon svg { width: 1.5rem; height: 1.5rem; }
.service-title { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.service-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.service-list { display: flex; flex-direction: column; gap: 0.375rem; }
.service-list-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-dim); font-weight: 500; }
.service-list-item svg { color: var(--green); width: 12px; height: 12px; flex-shrink: 0; }

/* ── TESTIMONIALS ────────────────────────────────  */
#depoimentos { background: var(--bg-2); padding-block: 5.5rem; border-top: 1px solid var(--border); }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-title { color: var(--white); margin-bottom: 0.75rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 2rem;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--border-hi); }
.testimonial-stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; color: var(--yellow); }
.testimonial-stars svg { width: 16px; height: 16px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-text::before { content: '"'; } .testimonial-text::after { content: '"'; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 2.75rem; height: 2.75rem; border-radius: 9999px;
  background: var(--green-dim); border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 900; color: var(--green); flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.author-city { font-size: 0.75rem; color: var(--text-dim); }
.testimonials-cta { text-align: center; margin-top: 2.5rem; }
.testimonials-cta p { color: var(--text-muted); margin-bottom: 1.25rem; font-size: 0.95rem; }

/* ── PORTFOLIO ───────────────────────────────────  */
#portfolio { background: var(--bg); padding-block: 5.5rem; border-top: 1px solid var(--border); overflow: hidden; }
.portfolio-header { text-align: center; margin-bottom: 3.5rem; }
.portfolio-header .section-title { color: var(--white); margin-bottom: 0.75rem; }
.carousel { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; padding-bottom: 1.5rem; }
.carousel::-webkit-scrollbar { display: none; }
.carousel-item { flex: 0 0 300px; scroll-snap-align: center; background: var(--bg-card); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s; }
.carousel-item:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.carousel-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.carousel-body { padding: 1.5rem; }
.carousel-badge { display: inline-block; background: var(--green-dim); color: var(--green); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.625rem; border-radius: 9999px; margin-bottom: 0.75rem; }
.carousel-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.carousel-desc { font-size: 0.825rem; color: var(--text-muted); line-height: 1.65; }
.carousel-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.carousel-btn { width: 3rem; height: 3rem; border-radius: 9999px; background: var(--bg-card); color: var(--text-muted); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.carousel-btn:hover { background: var(--green); color: #080b08; border-color: var(--green); box-shadow: 0 0 16px var(--green-glow); }
.carousel-btn svg { width: 1.2rem; height: 1.2rem; }

/* ── DIFFERENTIATORS ─────────────────────────────  */
#diferenciais { background: var(--bg-2); padding-block: 5.5rem; border-top: 1px solid var(--border); }
.diff-header { text-align: center; margin-bottom: 3.5rem; }
.diff-header .section-title { color: var(--white); margin-bottom: 0.75rem; }
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.diff-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.diff-icon { width: 3.5rem; height: 3.5rem; background: var(--green-dim); border: 1px solid var(--green-border); border-radius: var(--r-xl); display: flex; align-items: center; justify-content: center; color: var(--green); margin-bottom: 1.25rem; }
.diff-icon svg { width: 1.75rem; height: 1.75rem; }
.diff-title { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 0.625rem; }
.diff-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────  */
#faq { background: var(--bg); padding-block: 5.5rem; border-top: 1px solid var(--border); }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header .section-title { color: var(--white); margin-bottom: 0.75rem; }
.faq-list { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.625rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--border-hi); }
.faq-question { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 700; font-size: 0.975rem; color: var(--text); background: var(--bg-card); transition: background 0.2s; user-select: none; }
.faq-question:hover { background: rgba(0,230,118,0.04); }
.faq-chevron { flex-shrink: 0; width: 1.1rem; height: 1.1rem; color: var(--green); transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: rgba(0,230,118,0.03); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ── CREDIBILITY ──────────────────────────────────  */
#credibilidade {
  background: linear-gradient(135deg, rgba(0,230,118,0.07), rgba(0,230,118,0.02));
  border-top: 1px solid var(--border-hi); border-bottom: 1px solid var(--border);
  padding-block: 5.5rem; overflow: hidden;
}
.proof-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.proof-title { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 900; color: var(--white); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1.25rem; }
.proof-desc { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.location-item { display: flex; align-items: center; gap: 0.625rem; font-weight: 700; font-size: 0.95rem; color: var(--text); }
.location-item svg { width: 1.1rem; height: 1.1rem; color: var(--green); flex-shrink: 0; }
.proof-guarantee { background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-left: 3px solid var(--green); border-radius: var(--r-lg); padding: 1.25rem 1.5rem; margin-bottom: 2rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.proof-guarantee svg { color: var(--green); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.proof-guarantee p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.proof-guarantee strong { color: var(--white); }
.proof-img-wrap { position: relative; }
.proof-img-bg { position: absolute; inset: 0; background: rgba(0,230,118,0.05); border-radius: var(--r-2xl); transform: rotate(2deg); }
.proof-img { width: 100%; object-fit: cover; aspect-ratio: 16/9; border-radius: var(--r-2xl); border: 1px solid var(--border-hi); box-shadow: 0 0 60px rgba(0,230,118,0.1), 0 32px 64px rgba(0,0,0,0.6); position: relative; z-index: 1; }

/* ── CONTACT ─────────────────────────────────────  */
#contato { background: var(--bg-2); padding-block: 5.5rem; border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; }
.contact-title { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 900; color: var(--white); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.contact-subtitle { font-size: 0.975rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.875rem 1.125rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
  font-size: 0.975rem; font-weight: 500; font-family: inherit; color: var(--white);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,230,118,0.12); }
.form-select option { background: var(--bg-3); color: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; background: var(--green); color: #080b08;
  font-weight: 900; font-size: 1.05rem; padding: 1rem; border-radius: var(--r-lg);
  border: none; cursor: pointer; box-shadow: 0 0 24px var(--green-glow);
  transition: all 0.2s; margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--green-dark); box-shadow: 0 0 48px var(--green-glow); transform: translateY(-1px); }
.btn-submit:active { transform: scale(0.98); }
#contact-status { display: none; margin-bottom: 1.25rem; padding: 0.875rem 1rem; border-radius: var(--r-lg); font-weight: 700; font-size: 0.9rem; border-left: 3px solid; }
#contact-status.success { background: var(--green-dim); color: var(--green); border-color: var(--green); display: block; }
#contact-status.error { background: var(--red-dim); color: var(--red); border-color: var(--red); display: block; }
.contact-aside { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.aside-title { font-size: 1.6rem; font-weight: 900; color: var(--white); line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 0.75rem; }
.aside-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.75rem; }
.aside-info { display: flex; flex-direction: column; gap: 0.875rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.aside-info-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--text-muted); }
.aside-info-item svg { color: var(--green); flex-shrink: 0; width: 16px; height: 16px; }
.aside-info-item strong { color: var(--white); }

/* ── FOOTER ──────────────────────────────────────  */
footer { background: var(--bg); border-top: 1px solid var(--border); padding-block: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand-name { font-size: 1.75rem; font-weight: 900; letter-spacing: -0.04em; color: var(--white); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand-name span { color: var(--green); }
.footer-brand-desc { font-size: 0.875rem; color: var(--text-dim); line-height: 1.75; max-width: 22rem; }
.footer-col-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--text-dim); margin-bottom: 0.75rem; }
.footer-contact-item svg { color: var(--green); flex-shrink: 0; width: 1rem; height: 1rem; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom a { color: var(--green); }

/* ── WHATSAPP FLOAT ──────────────────────────────  */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; background: #25d366; color: var(--white); border-radius: 9999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.4); z-index: 100; transition: transform 0.3s, box-shadow 0.3s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 40px rgba(37,211,102,0.55); }
.wa-float svg { width: 32px; height: 32px; }

/* ── ANIMATIONS ──────────────────────────────────  */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.hero-anim { opacity: 0; animation: fadeUp 0.65s cubic-bezier(0.22,1,0.36,1) forwards; }
.d0{animation-delay:0s} .d1{animation-delay:.1s} .d2{animation-delay:.2s} .d3{animation-delay:.3s} .d4{animation-delay:.45s}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1{transition-delay:.1s} .reveal-delay-2{transition-delay:.2s} .reveal-delay-3{transition-delay:.3s}

/* ── RESPONSIVE ──────────────────────────────────  */
@media(min-width:480px){ .hero-cta-group{flex-direction:row} .carousel-item{flex:0 0 380px} }
@media(min-width:768px){ .form-row{grid-template-columns:1fr 1fr} }
@media(min-width:1024px){
  .wrap{padding-inline:2rem}
  .hero-grid{grid-template-columns:55% 45%;padding-block:6rem}
  .about-grid{grid-template-columns:1fr 1fr}
  .about-img-wrap{order:1} .about-content{order:2}
  .contact-grid{grid-template-columns:1fr 1fr}
  .contact-aside{padding:3.5rem}
  .diff-grid{grid-template-columns:repeat(4,1fr)}
  .proof-grid{grid-template-columns:55% 45%}
  .footer-grid{grid-template-columns:2fr 1fr 1fr}
  .nav-links{display:flex}
  #mob-btn{display:none!important}
  .carousel-nav{display:none}
  .proof-img{aspect-ratio:1}
}
@media(max-width:1023px){ .nav-links{display:none!important} #mob-btn{display:flex!important} }
@media(max-width:640px){ .diff-grid{grid-template-columns:1fr 1fr} .locations-grid{grid-template-columns:1fr} .stats-grid{gap:1rem} .stat-num{font-size:1.5rem} .form-row{grid-template-columns:1fr} .price-grid{grid-template-columns:1fr} }
