/* ===== RESET E VARIÁVEIS (TEMA CLARO/MODERNO) ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-light: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --radius: 12px;
  --transition: 0.2s ease;
  --font: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg-main); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* UTILS */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-primary { color: var(--primary); }
.bg-light { background: var(--bg-light); }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 2.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* BOTOES */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 15px; cursor: pointer; border: 1px solid transparent; transition: all var(--transition); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text-main); }
.btn-outline:hover { background: var(--bg-light); border-color: #cbd5e1; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-cta { width: 100%; padding: 16px; font-size: 16px; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: all 0.3s; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon-wrap { width: 32px; height: 32px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; }
.logo-text { font-size: 18px; font-weight: 500; color: var(--text-main); }
.logo-text strong { font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a:not(.btn) { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.nav-links a:not(.btn):hover { color: var(--text-main); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; padding: 20px; border-bottom: 1px solid var(--border); flex-direction: column; gap: 12px; z-index: 99; box-shadow: var(--shadow-md); }

/* HERO */
.hero { position: relative; padding: 140px 0 80px; overflow: hidden; background: #fff; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.bg-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.bg-shape-1 { width: 500px; height: 500px; background: #dbeafe; top: -100px; right: -100px; }
.bg-shape-2 { width: 400px; height: 400px; background: #e0e7ff; bottom: -50px; left: -100px; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; background: #f1f5f9; border: 1px solid var(--border); color: var(--text-muted); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 500; margin-bottom: 24px; }
.badge-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; }
.hero-title { font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px; }
.hero-subtitle { font-size: 18px; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 24px; font-weight: 800; color: var(--text-main); }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; }
.stat-divider { width: 1px; height: 30px; background: var(--border); }

/* HERO VIDEO */
.hero-video-wrap { position: relative; }
.hero-video-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(37,99,235,0.08); border: 1px solid #dbeafe; color: var(--primary); padding: 7px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.hero-video-frame { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 16px; border: 2px solid var(--border); box-shadow: var(--shadow-lg); background: #0f172a; }
.hero-video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: 14px; }

/* RIBBON */
.trust-ribbon { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; padding: 20px 0; }
.ribbon-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 24px; }
.ribbon-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text-muted); }

/* HEADERS GERAIS */
.section-header { text-align: center; max-width: 650px; margin: 0 auto 50px; }
.tag { display: inline-block; background: #eff6ff; color: var(--primary); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; padding: 6px 14px; border-radius: 100px; margin-bottom: 16px; border: 1px solid #dbeafe; }
.title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; }
.desc { font-size: 16px; color: var(--text-muted); line-height: 1.6; }

/* SECOES */
.benefits { padding: 90px 0; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.icon-wrap { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.icon-wrap.blue { background: #eff6ff; color: #2563eb; }
.icon-wrap.green { background: #f0fdf4; color: #16a34a; }
.icon-wrap.indigo { background: #eef2ff; color: #4f46e5; }
.icon-wrap.orange { background: #fff7ed; color: #ea580c; }
.icon-wrap.teal { background: #f0fdfa; color: #0d9488; }
.icon-wrap.pink { background: #fdf2f8; color: #db2777; }
.benefit-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.benefit-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* MODULES */
.modules { padding: 90px 0; background: #fff; }
.module-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition), transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}
.module-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s, box-shadow 0.2s;
}
.module-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #818cf8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 3px 3px 0 0;
}
.module-item:hover::before { transform: scaleX(1); }
.module-item:hover { border-color: #cbd5e1; background: #fff; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mod-num { font-size: 12px; font-weight: 700; color: #94a3b8; margin-bottom: 12px; }
.module-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.module-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* VIDEOS SECTION - removida (vídeos integrados no hero e app) */

/* APP SECTION */
.app-section { padding: 90px 0; }
.app-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.app-video-col { position: relative; }
.app-video-frame { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 16px; border: 2px solid var(--border); box-shadow: var(--shadow-lg); background: #0f172a; }
.app-video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: 14px; }
.app-text-col { display: flex; flex-direction: column; }
.app-video-col { position: relative; }
.app-video-frame { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 16px; border: 2px solid var(--border); box-shadow: var(--shadow-lg); background: #0f172a; }
.app-video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: 14px; }
.app-text-col { display: flex; flex-direction: column; }
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 16px; }
.feature-list li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.feature-text { display: flex; flex-direction: column; gap: 4px; }
.feature-text strong { font-size: 16px; color: var(--text-main); font-weight: 700; }
.feature-text p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* TESTIMONIALS */
.social-proof { padding: 90px 0; background: #fff; }
.testimonial { display: flex; flex-direction: column; justify-content: space-between; }
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; }
.testimonial p { font-size: 15px; font-style: italic; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); }
.author .info { display: flex; flex-direction: column; }
.author strong { font-size: 14px; }
.author span { font-size: 12px; color: var(--text-muted); }

/* FAQ */
.faq { padding: 90px 0; }
.accordion { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-trigger { width: 100%; padding: 20px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text-main); text-align: left; }
.faq-trigger .icon { transition: 0.3s; color: var(--text-muted); }
.faq-item.active .icon { transform: rotate(180deg); color: var(--primary); }
.faq-content { padding: 0 20px 20px; display: none; }
.faq-item.active .faq-content { display: block; }
.faq-content p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* CTA SECTION */
.cta-section { padding: 90px 0; background: #fff; }
.cta-box { background: linear-gradient(135deg, #f1f5f9 0%, #e8edf4 50%, #dde3ec 100%); border-radius: 24px; padding: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; color: var(--text-main); box-shadow: var(--shadow-lg); border: 1px solid #d1d9e6; }
.cta-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; color: var(--text-main); }
.cta-content p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.cta-form { background: rgba(255,255,255,0.75); backdrop-filter: blur(8px); padding: 32px; border-radius: 16px; border: 1px solid #d1d9e6; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.input { width: 100%; padding: 14px 16px; border-radius: 8px; border: 1px solid #cbd5e1; background: #fff; color: var(--text-main); font-family: var(--font); outline: none; transition: 0.2s; }
.input::placeholder { color: #94a3b8; }
.input:focus { border-color: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
.btn-cta-green { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; border: none; box-shadow: 0 4px 14px rgba(22,163,74,0.35); }
.btn-cta-green:hover { background: linear-gradient(135deg, #15803d, #166534); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(22,163,74,0.45); }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 16px; }

/* FOOTER */
.footer { background: #fff; border-top: 1px solid var(--border); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.brand-col p { font-size: 14px; color: var(--text-muted); max-width: 300px; line-height: 1.6; }
.link-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; color: var(--text-main); }
.link-col ul { display: flex; flex-direction: column; gap: 12px; }
.link-col a { font-size: 14px; color: var(--text-muted); }
.link-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; font-size: 13px; color: var(--text-muted); }

/* WHATSAPP FLOAT */
.float-wa { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 100; transition: 0.2s; }
.float-wa:hover { transform: scale(1.05); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-video-badge { justify-content: center; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .app-video-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-box { grid-template-columns: 1fr; padding: 40px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .ribbon-item { width: 100%; justify-content: center; }
  .cta-box { padding: 32px 20px; }
  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero-video-frame { border-radius: 12px; }
  .app-video-grid { grid-template-columns: 1fr; }
  .app-text-col .btn { width: 100%; justify-content: center; }
}

/* STICKY BAR */
.sticky-bar { position: fixed; top: -80px; left: 0; right: 0; background: #0f172a; color: #fff; padding: 12px 0; z-index: 99; transition: top 0.4s ease; border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: var(--shadow-lg); }
.sticky-bar.visible { top: 72px; }
.sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-text { font-size: 14px; color: #e2e8f0; }
.sticky-close { background: none; border: none; color: #94a3b8; cursor: pointer; font-size: 16px; padding: 4px 8px; transition: color 0.2s; }
.sticky-close:hover { color: #fff; }

/* COMO FUNCIONA */
.how-it-works { padding: 90px 0; background: var(--bg-main); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-top: 40px; }
.step-item { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; background: var(--bg-card); padding: 32px 24px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); position: relative; }
.step-number { position: absolute; top: 16px; right: 20px; font-size: 14px; font-weight: 800; color: var(--text-muted); opacity: 0.5; }
.step-icon-wrap { width: 56px; height: 56px; background: #eff6ff; color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.step-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-main); }
.step-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-connector { flex-shrink: 0; width: 40px; height: 2px; background: var(--border); align-self: center; position: relative; }
.step-connector::after { content: ''; position: absolute; right: 0; top: -4px; width: 10px; height: 10px; border-top: 2px solid var(--text-muted); border-right: 2px solid var(--text-muted); transform: rotate(45deg); opacity: 0.3; }

/* GOOGLE RATINGS & TESTIMONIAL MODS */
.google-rating { display: inline-flex; align-items: center; gap: 8px; background: #fff; padding: 8px 16px; border-radius: 100px; border: 1px solid var(--border); margin-top: 12px; font-size: 13px; }
.rating-stars { color: #f59e0b; }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; position: relative; width: 100%; }
.testimonial-header .avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 14px; }
.testimonial-header .avatar.blue { background: #3b82f6; }
.testimonial-header .avatar.green { background: #10b981; }
.testimonial-header .avatar.indigo { background: #6366f1; }
.testimonial-header .info { display: flex; flex-direction: column; text-align: left; }
.testimonial-header strong { font-size: 14px; color: var(--text-main); }
.testimonial-header span { font-size: 12px; color: var(--text-muted); }
.google-icon { position: absolute; top: 0; right: 0; opacity: 0.8; }

/* LOGO IMG & CAROUSEL INFINTY */
.logo-img { height: 40px; width: auto; max-width: 100%; display: block; }
.logo-wall { padding: 60px 0; background: var(--bg-main); border-bottom: 1px solid var(--border); overflow: hidden; text-align: center; }
.logo-wall-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 30px; }

.logo-ticker-wrap { width: 100%; overflow: hidden; white-space: nowrap; position: relative; display: flex; align-items: center; }
.logo-ticker-wrap::before, .logo-ticker-wrap::after { content: ''; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none; }
.logo-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-main), transparent); }
.logo-ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-main), transparent); }

.logo-ticker-track { display: flex; gap: 45px; align-items: center; width: max-content; animation: tickerScroll 90s linear infinite; }
.logo-ticker-track img { height: 75px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: opacity 0.3s; pointer-events: none; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* CTA TRUST SIGNALS */
.cta-trust-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.cta-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.cta-phone { display: flex; align-items: center; gap: 8px; margin-top: 24px; font-size: 15px; color: var(--text-main); }
.form-headline { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text-main); text-align: left; }
.form-trust { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 11px; color: var(--text-muted); margin-top: 16px; border-top: 1px solid var(--border); padding-top: 12px; }

@media (max-width: 1024px) {
  .steps-grid { flex-direction: column; gap: 16px; }
  .step-connector { display: none; }
  .sticky-bar.visible { top: 0; }
}