/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #FF5A00;
  --orange-hover: #D94A00;
  --blue-dark: #071B2C;
  --blue-deep: #0E2A3F;
  --white: #FFFFFF;
  --beige: #FFF3E6;
  --graphite: #1F2933;
  --gray-light: #D8DEE6;
  --green: #2ECC71;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --nav-top: 20px;
  --nav-height: 46px;
  --hero-height: 100vh;
  --hero-min-height: 600px;
  --hero-video-scale: 2px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--graphite); line-height: 1.6; overflow-x: hidden; background: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(255,90,0,0.45); outline-offset: 3px; }

/* ========== UTILITIES ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 1.5px; line-height: 1.1; margin-bottom: 16px; }
.section-subtitle { font-size: clamp(0.95rem, 2vw, 1.1rem); font-weight: 300; max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }
.section-kicker { display: inline-block; margin-bottom: 12px; color: var(--orange); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.text-center { text-align: center; }

/* ========== BUTTONS ========== */
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-body); font-weight: 700; font-size: 0.96rem; padding: 15px 32px; border-radius: 50px; border: 2px solid transparent; cursor: pointer; transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease; letter-spacing: 0.2px; }
.btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); box-shadow: 0 4px 20px rgba(255,90,0,0.35); }
.btn-primary:hover { background: var(--orange-hover); border-color: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,90,0,0.45); }
.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-secondary.dark { color: var(--orange); border-color: var(--orange); }
.btn-secondary.dark:hover { background: var(--orange); color: var(--white); }
.btn svg, .btn i { font-size: 1.2em; }

/* ========== FLOATING NAV ========== */
.floating-nav { position: fixed; top: var(--nav-top); left: 50%; transform: translateX(-50%); z-index: 1000; transition: top 0.3s ease, opacity 0.3s ease; }
.nav-toggle { display: none; }
.nav-pill { display: flex; align-items: center; gap: 4px; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 50px; padding: 6px 8px; box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.nav-link { font-family: var(--font-body); font-weight: 600; font-size: 0.76rem; letter-spacing: 0.5px; color: var(--graphite); padding: 10px 14px; border-radius: 50px; transition: all 0.3s ease; white-space: nowrap; }
.nav-link:hover { color: var(--orange); background: rgba(255,90,0,0.06); }
.nav-link.active { background: var(--orange); color: var(--white); box-shadow: 0 2px 12px rgba(255,90,0,0.35); }
.nav-instagram { position: absolute; top: 50%; right: calc(100% + 10px); width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--orange); box-shadow: 0 4px 24px rgba(0,0,0,0.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transform: translateY(-50%); transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.nav-instagram svg { width: 23px; height: 23px; }
.nav-instagram:hover { color: var(--white); background: var(--orange); transform: translateY(-50%) scale(1.06); box-shadow: 0 6px 26px rgba(255,90,0,0.35); }

/* ========== HERO ========== */
.hero { position: relative; width: 100%; height: var(--hero-height); min-height: var(--hero-min-height); overflow: hidden; display: flex; align-items: flex-end; justify-content: center; background: var(--blue-dark); }
.hero-media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-poster, .hero-video { position: absolute; inset: calc(var(--hero-video-scale) / -2); width: calc(100% + var(--hero-video-scale)); height: calc(100% + var(--hero-video-scale)); object-fit: cover; object-position: center center; }
.hero-poster { z-index: 0; }
.hero-video { z-index: 1; opacity: 0; transition: opacity 0.7s ease; }
.hero-video.is-playing { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,27,44,0.96) 0%, rgba(7,27,44,0.72) 45%, rgba(7,27,44,0.28) 100%); z-index: 1; }
.hero-logo { position: fixed; top: var(--nav-top); right: 8px; z-index: 999; height: var(--nav-height); display: flex; align-items: center; }
.hero-logo img { width: 160px; height: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); transition: transform 0.3s; }
.hero-logo img:hover { transform: scale(1.05); }
.hero-content { position: relative; z-index: 2; width: min(960px, calc(100% - 48px)); margin: 0 auto; text-align: center; padding-bottom: clamp(42px, 7vh, 76px); color: var(--white); }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; padding: 7px 14px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; background: rgba(7,27,44,0.28); color: rgba(255,255,255,0.9); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.7px; text-transform: uppercase; backdrop-filter: blur(8px); }
.hero-content h1 { max-width: 900px; margin: 0 auto 16px; font-family: var(--font-display); font-size: clamp(2.8rem, 6.5vw, 5.7rem); font-weight: 400; letter-spacing: 1.5px; line-height: 0.94; text-wrap: balance; text-shadow: 0 4px 30px rgba(0,0,0,0.28); }
.hero-subtitle { max-width: 690px; margin: 0 auto 26px; color: rgba(255,255,255,0.88); font-size: clamp(0.96rem, 1.6vw, 1.12rem); font-weight: 400; line-height: 1.65; text-wrap: balance; }
.hero-kicker, .hero-content h1, .hero-subtitle { transition: opacity 0.45s ease, transform 0.45s ease; }
.hero.video-playing .hero-kicker, .hero.video-playing .hero-content h1, .hero.video-playing .hero-subtitle { opacity: 0; transform: translateY(12px); }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 11px; }
.hero-assurance { margin-bottom: 24px; color: rgba(255,255,255,0.66); font-size: 0.75rem; font-weight: 500; }
.hero-badges { display: flex; gap: 12px 24px; justify-content: center; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.82); }
.hero-badge strong { color: var(--orange); font-size: 1rem; }
.hero-badge svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }

/* ========== FAIXA DE CONFIANÇA ========== */
.trust-strip { position: relative; z-index: 3; background: var(--white); border-bottom: 1px solid rgba(7,27,44,0.08); box-shadow: 0 12px 32px rgba(7,27,44,0.06); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid > div { position: relative; display: flex; min-height: 112px; padding: 24px 32px; flex-direction: column; justify-content: center; text-align: center; }
.trust-grid > div + div::before { content: ''; position: absolute; left: 0; top: 30%; bottom: 30%; width: 1px; background: rgba(7,27,44,0.12); }
.trust-grid strong { margin-bottom: 3px; color: var(--blue-dark); font-size: 0.95rem; }
.trust-grid span { color: #65727e; font-size: 0.78rem; line-height: 1.55; }

/* ========== CHAMADA (CTA) ========== */
.chamada { padding: 96px 0; background: var(--white); text-align: center; }
.chamada .section-title { color: var(--blue-dark); }
.chamada .section-subtitle { max-width: 720px; color: #52606d; }

/* ========== BENEFÍCIOS ========== */
.beneficios { padding: 80px 0; background: var(--beige); }
.beneficios .section-title { color: var(--blue-dark); text-align: center; }
.beneficios-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.benefit-card { background: var(--white); border-radius: 16px; padding: 36px 24px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.benefit-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--beige); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.benefit-icon svg { width: 32px; height: 32px; color: var(--orange); }
.benefit-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; color: var(--blue-dark); margin-bottom: 8px; }
.benefit-card p { font-size: 0.88rem; color: #5a6a7a; font-weight: 400; line-height: 1.65; }

/* ========== SIMULAÇÃO ========== */
.simulacao { padding: 80px 0; background: var(--blue-dark); color: var(--white); }
.simulacao-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.simulacao-info .section-title { color: var(--white); }
.simulacao-info .impact-phrase { font-size: 1.3rem; font-weight: 300; color: rgba(255,255,255,0.85); margin-bottom: 32px; line-height: 1.6; }
.simulacao-benefits { display: flex; flex-direction: column; gap: 16px; }
.simulacao-benefit { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.simulacao-benefit svg { width: 22px; height: 22px; color: var(--green); flex-shrink: 0; }
.form-card { background: var(--blue-deep); border-radius: 20px; padding: 40px; border: 1px solid rgba(255,255,255,0.08); }
.form-step { display: inline-block; margin-bottom: 9px; color: var(--orange); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.form-card h3 { font-family: var(--font-display); font-size: 2rem; line-height: 1.05; letter-spacing: 1px; margin-bottom: 8px; color: var(--white); }
.form-intro { margin-bottom: 24px; color: rgba(255,255,255,0.62); font-size: 0.82rem; line-height: 1.55; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; margin-bottom: 6px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select { width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color: var(--white); font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.3s; }
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--orange); }
.form-group select option { background: var(--blue-dark); color: var(--white); }
.input-prefix { display: flex; align-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; background: rgba(255,255,255,0.06); transition: border-color 0.3s; }
.input-prefix:focus-within { border-color: var(--orange); }
.input-prefix span { padding-left: 16px; color: rgba(255,255,255,0.65); font-size: 0.9rem; font-weight: 600; }
.form-group .input-prefix input { border: 0; background: transparent; }
.form-card .btn-primary { width: 100%; margin-top: 8px; font-size: 1.05rem; padding: 18px; }
.form-privacy { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; color: rgba(255,255,255,0.48); font-size: 0.69rem; line-height: 1.4; text-align: center; }
.form-privacy svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* ========== COMO FUNCIONA ========== */
.como-funciona { padding: 80px 0; background: var(--white); }
.como-funciona .section-title { color: var(--blue-dark); text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 40px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--gray-light)); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number { width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 50%; background: var(--orange); color: var(--white); font-family: var(--font-display); font-size: 2rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(255,90,0,0.3); }
.step-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: #5a6a7a; font-weight: 300; }

/* ========== PROJETOS ========== */
.projetos { padding: 80px 0; background: var(--blue-dark); color: var(--white); overflow: hidden; }
.projetos .section-title { color: var(--white); }
.projetos .section-subtitle { color: rgba(255,255,255,0.76); }
.projetos-counter { display: inline-flex; align-items: center; gap: 12px; margin-top: -8px; padding: 10px 18px; border-radius: 50px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.projetos-counter strong { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; letter-spacing: 1px; color: var(--orange); }
.projetos-counter span { font-size: 0.92rem; font-weight: 600; color: rgba(255,255,255,0.88); }
.projetos-showcase { position: relative; display: flex; flex-direction: column; gap: 18px; width: 100%; margin: 36px 0 40px; overflow: hidden; }
.projetos-track { display: flex; gap: 18px; width: max-content; padding: 0 18px; }
.projetos-track-left { animation: projetos-left 48s linear infinite; }
.projetos-track-right { animation: projetos-right 52s linear infinite; transform: translateX(-28%); }
.projetos-showcase:hover .projetos-track { animation-play-state: paused; }
.projeto-card { position: relative; flex: 0 0 clamp(280px, 34vw, 480px); aspect-ratio: 16 / 10; overflow: hidden; border-radius: 8px; background: var(--blue-deep); box-shadow: 0 16px 40px rgba(0,0,0,0.28); }
.projeto-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.projeto-card:hover img { transform: scale(1.05); }
.projeto-card::after { content: ''; position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(to top, rgba(7,27,44,0.82), transparent); pointer-events: none; }
.projeto-card figcaption { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; font-weight: 700; font-size: 0.95rem; color: var(--white); text-align: left; }
.projetos-fade { position: absolute; top: 0; bottom: 0; z-index: 3; width: min(12vw, 140px); pointer-events: none; }
.projetos-fade-left { left: 0; background: linear-gradient(90deg, var(--blue-dark), transparent); }
.projetos-fade-right { right: 0; background: linear-gradient(270deg, var(--blue-dark), transparent); }

@keyframes projetos-left {
  from { transform: translateX(0); }
  to { transform: translateX(-42%); }
}

@keyframes projetos-right {
  from { transform: translateX(-28%); }
  to { transform: translateX(0); }
}

/* ========== PARA QUEM É ========== */
.para-quem { padding: 80px 0; background: var(--beige); }
.para-quem .section-title { color: var(--blue-dark); text-align: center; }
.quem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.quem-card { background: var(--white); border-radius: 16px; padding: 32px 20px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.quem-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.quem-icon { width: 72px; height: 72px; margin: 0 auto 16px; background: linear-gradient(135deg, var(--orange), #ff8c42); border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.quem-icon svg { width: 36px; height: 36px; color: var(--white); }
.quem-card h3 { font-weight: 700; font-size: 1.05rem; color: var(--blue-dark); margin-bottom: 6px; }
.quem-card p { font-size: 0.85rem; color: #5a6a7a; font-weight: 300; }

/* ========== PROVA SOCIAL ========== */
.prova-social { padding: 80px 0; background: var(--blue-deep); color: var(--white); }
.prova-social .section-title { color: var(--white); text-align: center; }
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.depoimento-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 32px; transition: transform 0.3s; }
.depoimento-card:hover { transform: translateY(-4px); }
.depoimento-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.depoimento-stars svg { width: 20px; height: 20px; color: var(--orange); }
.depoimento-card blockquote { font-size: 1rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 20px; font-style: italic; }
.depoimento-author { font-weight: 600; font-size: 0.9rem; color: var(--orange); }

/* ========== CHAMADA FINAL ========== */
.chamada-final { padding: 80px 0; background: var(--beige); text-align: center; }
.chamada-final .section-title { color: var(--blue-dark); }
.chamada-final .section-subtitle { color: var(--graphite); }
.chamada-final .hero-buttons { margin-top: 32px; }

/* ========== LOCALIZAÇÃO ========== */
.localizacao { padding: 80px 0; background: var(--white); }
.localizacao-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.localizacao-info .section-title { color: var(--blue-dark); }
.localizacao-info .section-subtitle { margin: 0 0 24px; color: #5a6a7a; }
.localizacao-tag { display: inline-flex; align-items: center; margin-bottom: 14px; padding: 7px 14px; border-radius: 50px; background: var(--beige); color: var(--orange); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.localizacao address { margin: 0 0 28px; padding-left: 20px; border-left: 4px solid var(--orange); color: var(--graphite); font-style: normal; font-size: 1rem; line-height: 1.8; }
.localizacao-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.localizacao-map { min-height: 390px; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 48px rgba(7,27,44,0.16); background: var(--gray-light); }
.localizacao-map iframe { width: 100%; height: 100%; min-height: 390px; border: 0; display: block; }

/* ========== FAQ ========== */
.faq { padding: 80px 0; background: var(--white); }
.faq .section-title { color: var(--blue-dark); text-align: center; margin-bottom: 48px; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #f7f9fc; border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,0.05); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--blue-dark); background: none; border: none; cursor: pointer; text-align: left; transition: background 0.3s; }
.faq-question:hover { background: rgba(255,90,0,0.04); }
.faq-question svg { width: 20px; height: 20px; transition: transform 0.3s; color: var(--orange); flex-shrink: 0; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.92rem; color: #5a6a7a; font-weight: 300; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 200px; }

/* ========== RODAPÉ ========== */
.footer { padding: 48px 0 24px; background: var(--blue-dark); color: var(--white); }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 8px; max-width: 280px; }
.footer-logo { margin-bottom: 4px; }
.footer-logo-img { width: 180px; height: auto; }
.footer-logo span { color: var(--orange); }
.footer-links h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-links li > span { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--orange); }
.footer-links svg { width: 18px; height: 18px; }
.footer-bottom { text-align: center; padding-top: 24px; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ========== WHATSAPP FLUTUANTE ========== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; min-height: 56px; padding: 0 20px 0 16px; background: #25D366; color: var(--white); border-radius: 50px; display: flex; gap: 10px; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s; animation: pulse-wpp 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }
.whatsapp-float span { font-size: 0.82rem; font-weight: 700; }
.hero-in-view .whatsapp-float, .form-in-view .whatsapp-float { opacity: 0; visibility: hidden; transform: translateY(12px); pointer-events: none; }
@keyframes pulse-wpp { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); } }

/* ========== ANIMAÇÕES ========== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVO ========== */
@media (max-width: 992px) {
  :root { --nav-height: 40px; --hero-height: 92vh; --hero-min-height: 640px; --hero-video-scale: 8px; }
  .nav-instagram { display: none; }
  .nav-pill { gap: 2px; padding: 5px 6px; overflow-x: auto; max-width: 92vw; }
  .nav-link { font-size: 0.7rem; padding: 8px 10px; }
  .hero-logo { right: 6px; }
  .hero-logo img { width: 124px; }
  .hero-poster, .hero-video { object-position: left center; }
  .hero-content h1 { font-size: clamp(3rem, 8vw, 4.7rem); }
  .trust-grid > div { padding-left: 20px; padding-right: 20px; }
  .projeto-card { flex-basis: clamp(260px, 58vw, 440px); }
  .beneficios-grid, .steps-grid, .quem-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .simulacao-grid { grid-template-columns: 1fr; }
  .localizacao-grid { grid-template-columns: 1fr; gap: 32px; }
  .localizacao-info { text-align: center; }
  .localizacao-info .section-subtitle { margin-left: auto; margin-right: auto; }
  .localizacao address { display: inline-block; text-align: left; }
  .localizacao-actions { justify-content: center; }
  .steps-grid::before { display: none; }
  .footer-content { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-links { text-align: center; }
  .footer-links a { justify-content: center; }
}

@media (min-width: 761px) and (max-width: 992px) and (orientation: portrait) {
  :root { --hero-height: 78vh; --hero-min-height: 700px; --hero-video-scale: 10px; }
  .hero-content { padding-bottom: 76px; }
  .hero-logo img { width: 132px; }
  .hero-poster { inset: 0; width: 100%; height: 70%; object-position: left top; }
  .hero-video { object-position: 43% center; }
}

@media (min-width: 761px) and (max-width: 992px) and (orientation: landscape) {
  :root { --hero-height: 100svh; --hero-min-height: 520px; --hero-video-scale: 10px; }
  .hero-content { padding-bottom: 42px; }
}

@media (max-width: 760px) {
  :root { --nav-top: 12px; --nav-height: 46px; --hero-height: max(100svh, 720px); --hero-min-height: max(100svh, 720px); --hero-video-scale: 12px; }
  .container { padding: 0 18px; }
  .floating-nav { left: 12px; right: 12px; transform: none; display: flex; align-items: flex-start; justify-content: flex-start; pointer-events: none; }
  .nav-toggle { pointer-events: auto; display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 0; border-radius: 50%; background: rgba(255,255,255,0.95); box-shadow: 0 4px 24px rgba(0,0,0,0.12); cursor: pointer; }
  .nav-toggle span { width: 20px; height: 2px; border-radius: 2px; background: var(--graphite); transition: transform 0.25s ease, opacity 0.25s ease; }
  .floating-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .floating-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .floating-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-pill { pointer-events: auto; position: absolute; top: 56px; left: 0; width: min(320px, calc(100vw - 24px)); max-width: none; max-height: 0; opacity: 0; visibility: hidden; overflow: hidden; display: flex; flex-direction: column; align-items: stretch; gap: 4px; padding: 0 8px; border-radius: 18px; transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease, padding 0.2s ease; }
  .floating-nav.nav-open .nav-pill { max-height: calc(100svh - 88px); opacity: 1; visibility: visible; overflow-y: auto; padding: 8px; }
  .nav-link { width: 100%; font-size: 0.78rem; padding: 12px 16px; text-align: left; border-radius: 12px; }
  .hero-logo { top: 8px; right: 8px; height: 54px; z-index: 1001; }
  .hero-logo img { width: 112px; }
  .hero-poster { inset: 0; width: 100%; height: 70%; object-position: left top; }
  .hero-video { object-position: 43% center; }
  .hero-content { width: 100%; padding: 0 18px 34px; }
  .hero-kicker { margin-bottom: 11px; padding: 6px 10px; font-size: 0.63rem; letter-spacing: 0.45px; }
  .hero-content h1 { max-width: 520px; margin-bottom: 12px; font-size: clamp(2.65rem, 12vw, 3.55rem); line-height: 0.94; }
  .hero-subtitle { max-width: 520px; margin-bottom: 20px; font-size: 0.9rem; line-height: 1.52; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 420px; margin-left: auto; margin-right: auto; }
  .hero-buttons .btn { width: 100%; }
  .hero-assurance { margin: 10px 0 18px; }
  .hero-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: min(100%, 460px); margin: 0 auto; }
  .hero-badge { min-width: 0; flex-direction: column; gap: 4px; font-size: 0.65rem; line-height: 1.3; }
  .hero-badge svg { width: 18px; height: 18px; }
  .hero-badge strong { font-size: 0.95rem; line-height: 18px; }
  .trust-grid { grid-template-columns: 1fr; padding-top: 6px; padding-bottom: 6px; }
  .trust-grid > div { min-height: auto; padding: 14px 18px; }
  .trust-grid > div + div::before { top: 0; left: 22%; right: 22%; bottom: auto; width: auto; height: 1px; }
  .trust-grid strong { font-size: 0.86rem; }
  .trust-grid span { font-size: 0.72rem; }
  .chamada, .beneficios, .simulacao, .como-funciona, .para-quem, .prova-social, .chamada-final, .faq { padding: 64px 0; }
  .beneficios-grid, .steps-grid, .quem-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
  .depoimentos-grid { gap: 18px; margin-top: 32px; }
  .simulacao-grid { gap: 32px; }
  .simulacao-info { text-align: center; }
  .simulacao-benefits { align-items: center; }
  .form-card { padding: 28px 20px; border-radius: 14px; }
  .form-card h3 { font-size: 1.8rem; }
  .projetos { padding: 64px 0; }
  .projetos-counter { gap: 10px; padding: 9px 15px; }
  .projetos-counter strong { font-size: 1.9rem; }
  .projetos-counter span { font-size: 0.84rem; }
  .projetos-showcase { gap: 12px; margin: 28px 0 32px; }
  .projetos-track { gap: 12px; padding: 0 12px; }
  .projeto-card { flex-basis: 82vw; }
  .projeto-card figcaption { left: 14px; right: 14px; bottom: 12px; font-size: 0.86rem; }
  .projetos-fade { width: 44px; }
  .localizacao { padding: 64px 0; }
  .localizacao-actions { flex-direction: column; }
  .localizacao-actions .btn { width: 100%; }
  .localizacao-map, .localizacao-map iframe { min-height: 320px; }
  .section-title { font-size: 2rem; }
  .btn { padding: 14px 28px; font-size: 0.95rem; }
  .chamada-final .hero-buttons { flex-direction: column; }
  .chamada-final .hero-buttons .btn { width: 100%; }
  .footer { padding: 42px 0 22px; }
  .footer-content { align-items: stretch; gap: 22px; padding-bottom: 24px; }
  .footer-brand { text-align: center; }
  .footer-logo-img { width: 132px; margin: 0 auto; }
  .footer-brand p { max-width: 240px; font-size: 0.86rem; }
  .footer-links { width: 100%; max-width: 420px; margin: 0 auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); text-align: left; }
  .footer-links h4 { margin-bottom: 10px; text-align: left; }
  .footer-links ul { display: flex; flex-direction: column; gap: 8px; }
  .footer-links li { margin-bottom: 0; }
  .footer-links a, .footer-links li > span { width: 100%; justify-content: flex-start; min-height: 46px; padding: 11px 13px; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.82); text-align: left; }
  .footer-links a:hover { background: rgba(255,90,0,0.12); }
  .footer-links a.btn-primary { justify-content: center; min-height: 48px; margin-top: 4px !important; padding: 13px 18px !important; border-color: var(--orange); background: var(--orange); color: var(--white); box-shadow: none; }
  .footer-bottom { padding-top: 18px; font-size: 0.74rem; line-height: 1.5; }
  .whatsapp-float { width: 52px; min-height: 52px; padding: 0; right: 14px; bottom: 14px; border-radius: 50%; }
  .whatsapp-float span { display: none; }
}

@media (max-width: 420px) {
  :root { --hero-video-scale: 14px; }
  .container { padding: 0 14px; }
  .hero-logo img { width: 96px; }
  .hero-content { padding-left: 14px; padding-right: 14px; }
  .btn { min-height: 50px; padding-left: 18px; padding-right: 18px; }
  .benefit-card, .quem-card, .depoimento-card { padding: 26px 18px; }
  .projeto-card { flex-basis: 86vw; }
  .faq-question { padding: 18px; font-size: 0.95rem; gap: 14px; }
  .faq-answer p { padding-left: 18px; padding-right: 18px; }
  .whatsapp-float { width: 52px; min-height: 52px; padding: 0; right: 14px; bottom: 14px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-float span { display: none; }
}

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

@supports (content-visibility: auto) {
  .beneficios, .simulacao, .como-funciona, .projetos, .para-quem, .prova-social, .chamada-final, .localizacao, .faq, .footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}
