/* ============================
   BNKS CONSULTORIA — MAIN CSS
   ============================ */

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

:root {
    --red: #E30613;
    --red-dark: #B8040F;
    --red-light: #FF1F2E;
    --dark: #0F0F0F;
    --dark-2: #1C1C1C;
    --gray-1: #333333;
    --gray-2: #666666;
    --gray-3: #999999;
    --gray-4: #CCCCCC;
    --gray-5: #F0F0F0;
    --gray-6: #F8F8F8;
    --white: #FFFFFF;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,.12);
    --shadow-lg: 0 16px 48px rgba(0,0,0,.16);
    --shadow-red: 0 8px 24px rgba(227,6,19,.3);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === BOTÕES === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gray-5);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-xl { padding: 20px 40px; font-size: 18px; border-radius: 10px; }

.btn-header {
    background: var(--red);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}
.btn-header:hover { background: var(--red-dark); transform: translateY(-1px); }

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
    padding: 0;
}
.site-header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.site-header.scrolled .main-nav a { color: var(--dark); }
.site-header.scrolled .logo-bnks { color: var(--red); }
.site-header.scrolled .logo-text { color: var(--dark); }

.header-inner {
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-shrink: 0;
}
.logo-bnks {
    font-size: 24px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -1px;
}
.logo-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.logo-footer .logo-text { color: var(--gray-4); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all var(--transition);
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.1); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.site-header.scrolled .menu-toggle span { background: var(--dark); }

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    background: rgba(227,6,19,.1);
    color: var(--red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-header p {
    color: var(--gray-2);
    font-size: 17px;
    line-height: 1.7;
}

/* === HERO === */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-2) 0%, #2a0007 50%, var(--dark-2) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(227,6,19,.25) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(227,6,19,.15) 0%, transparent 50%);
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
}
.hero-badge {
    display: inline-block;
    background: rgba(227,6,19,.2);
    border: 1px solid rgba(227,6,19,.4);
    color: #ff8080;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}
.hero-title .highlight {
    color: var(--red-light);
    position: relative;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: #4ade80; flex-shrink: 0; }

/* Hero Cards */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}
.hero-card:hover {
    background: rgba(255,255,255,.12);
    transform: translateX(4px);
}
.hero-card-icon { font-size: 32px; flex-shrink: 0; }
.hero-card-label { color: rgba(255,255,255,.6); font-size: 13px; margin-bottom: 4px; }
.hero-card-value { color: var(--white); font-size: 20px; font-weight: 700; }
.hero-card-cta {
    background: var(--red);
    border-color: var(--red);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.hero-card-cta span { color: rgba(255,255,255,.8); font-size: 14px; }
.hero-card-cta strong { color: var(--white); font-size: 28px; font-weight: 900; }
.hero-card-cta a { color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.4); }

.hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
}
.hero-wave svg { width: 100%; display: block; }

/* === STATS === */
.stats-bar {
    background: var(--white);
    padding: 48px 0;
    border-bottom: 1px solid var(--gray-5);
}
.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
    padding: 16px 48px;
    flex: 1;
    min-width: 150px;
}
.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}
.stat-suffix {
    font-size: 36px;
    font-weight: 900;
    color: var(--red);
}
.stat-label {
    display: block;
    color: var(--gray-2);
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-4);
    flex-shrink: 0;
}

/* === COMO FUNCIONA === */
.how-it-works {
    padding: 100px 0;
    background: var(--gray-6);
}
.steps-grid {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
}
.step-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-card:hover::before { transform: scaleX(1); }
.step-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(227,6,19,.08);
    line-height: 1;
    margin-bottom: -16px;
}
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: var(--gray-2); font-size: 15px; line-height: 1.6; }
.step-arrow { font-size: 28px; color: var(--red); flex-shrink: 0; font-weight: 300; }
.how-cta { text-align: center; }

/* === PRODUCTS === */
.products {
    padding: 100px 0;
    background: var(--white);
}
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-5);
    transition: all var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
}
.product-bg {
    position: absolute;
    inset: 0;
    opacity: .04;
}
.product-imovel .product-bg {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='.9em' font-size='90'%3E🏠%3C/text%3E%3C/svg%3E") center/cover;
}
.product-veiculo .product-bg {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext y='.9em' font-size='90'%3E🚗%3C/text%3E%3C/svg%3E") center/cover;
}
.product-content {
    position: relative;
    z-index: 1;
    padding: 40px;
}
.product-icon { font-size: 48px; margin-bottom: 16px; }
.product-tag {
    display: inline-block;
    background: rgba(227,6,19,.1);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.product-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}
.product-content > p {
    color: var(--gray-2);
    margin-bottom: 24px;
    line-height: 1.6;
}
.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-1);
    font-weight: 500;
}
.product-features li svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

/* === VANTAGENS === */
.advantages {
    padding: 100px 0;
    background: var(--dark-2);
}
.advantages-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}
.advantages-text .section-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.advantages-text h2 { color: var(--white); }
.advantages-text p { color: rgba(255,255,255,.6); margin-bottom: 32px; }
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.advantage-item {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}
.advantage-item:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(227,6,19,.3);
    transform: translateY(-2px);
}
.advantage-icon { font-size: 28px; margin-bottom: 12px; }
.advantage-item h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.advantage-item p { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.6; }

/* === DEPOIMENTOS === */
.testimonials {
    padding: 100px 0;
    background: var(--gray-6);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-5);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-featured {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-12px);
}
.testimonial-featured:hover { transform: translateY(-16px); }
.testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; }
.testimonial-featured .testimonial-stars { color: #fde68a; }
.testimonial-card p {
    color: var(--gray-1);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-featured p { color: rgba(255,255,255,.9); }
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-featured .testimonial-avatar { background: rgba(255,255,255,.2); }
.testimonial-author strong { display: block; font-size: 15px; color: var(--dark); }
.testimonial-featured .testimonial-author strong { color: var(--white); }
.testimonial-author span { font-size: 13px; color: var(--gray-3); }
.testimonial-featured .testimonial-author span { color: rgba(255,255,255,.65); }

/* === CTA FINAL === */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.final-cta-inner {
    position: relative;
    text-align: center;
}
.final-cta h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}
.final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.final-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* === FOOTER === */
.site-footer {
    background: var(--dark-2);
    padding: 72px 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    transition: all var(--transition);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a { color: rgba(255,255,255,.5); font-size: 14px; transition: color var(--transition); }
.footer-links ul a:hover { color: var(--red); }
.footer-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4ade80;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}
.footer-whatsapp svg { width: 20px; height: 20px; }
.footer-atendimento { color: rgba(255,255,255,.4); font-size: 13px; line-height: 1.6; }
.footer-bottom {
    padding: 24px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: 13px; }

/* === WHATSAPP FLUTUANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 14px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    transition: all var(--transition);
    text-decoration: none;
}
.whatsapp-float svg { width: 24px; height: 24px; flex-shrink: 0; }
.whatsapp-float:hover {
    background: #1ea956;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(37,211,102,.6);
}

/* ============================
   LANDING PAGE
   ============================ */
.landing-page { background: var(--white); }

.landing-header {
    background: var(--dark-2);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.landing-header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-weight: 600;
    font-size: 15px;
}
.landing-header-phone svg { width: 18px; height: 18px; }

.landing-hero {
    background: linear-gradient(135deg, var(--dark-2) 0%, #2a0007 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(227,6,19,.2) 0%, transparent 60%);
}
.landing-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
}
.landing-badge {
    display: inline-block;
    background: rgba(227,6,19,.2);
    border: 1px solid rgba(227,6,19,.4);
    color: #ff8080;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.landing-hero-text h1 {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.landing-hero-text h1 .highlight { color: var(--red-light); }
.landing-subtitle {
    color: rgba(255,255,255,.75);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.landing-benefits { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.landing-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.85);
    font-size: 15px;
}
.landing-benefit svg { width: 20px; height: 20px; color: #4ade80; flex-shrink: 0; }
.landing-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-avatars {
    display: flex;
    font-size: 20px;
}
.lp-avatars span { margin-right: -4px; }
.landing-social-proof p { color: rgba(255,255,255,.65); font-size: 14px; }
.landing-social-proof strong { color: var(--white); }

/* Formulário Landing */
.landing-form-wrapper { flex-shrink: 0; }
.landing-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
}
.form-header { margin-bottom: 28px; text-align: center; }
.form-header h2 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.form-header p { color: var(--gray-2); font-size: 14px; line-height: 1.6; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-1);
    margin-bottom: 6px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-4);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--red); }
.form-group input.error,
.form-group select.error { border-color: var(--red); background: #fff5f5; }

.btn-form {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 17px;
    border-radius: 8px;
    margin-top: 4px;
}
.form-privacy {
    text-align: center;
    color: var(--gray-3);
    font-size: 12px;
    margin-top: 12px;
}

.form-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.form-success p { color: var(--gray-2); margin-bottom: 24px; }

/* Landing Proof */
.landing-proof { padding: 64px 0; background: var(--gray-6); }
.landing-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 48px;
}
.lp-stat { text-align: center; padding: 12px 40px; flex: 1; min-width: 120px; }
.lp-stat-num { display: block; font-size: 36px; font-weight: 900; color: var(--red); }
.lp-stat-label { display: block; font-size: 13px; color: var(--gray-2); font-weight: 500; margin-top: 4px; }
.lp-stat-div { width: 1px; height: 48px; background: var(--gray-4); }
.lp-testimonials { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.lp-testimonial {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--gray-5);
}
.lp-testimonial-mid { background: var(--red); border-color: var(--red); }
.lp-testimonial-mid p { color: rgba(255,255,255,.9) !important; }
.lp-testimonial-mid strong { color: rgba(255,255,255,.7) !important; }
.lp-testimonial-mid .lp-t-stars { color: #fde68a !important; }
.lp-t-stars { color: #f59e0b; font-size: 16px; margin-bottom: 10px; }
.lp-testimonial p { color: var(--gray-1); font-size: 14px; line-height: 1.6; margin-bottom: 12px; font-style: italic; }
.lp-testimonial strong { color: var(--gray-3); font-size: 13px; }

.landing-footer {
    background: var(--dark-2);
    padding: 28px 0;
    text-align: center;
}
.landing-footer p { color: rgba(255,255,255,.3); font-size: 13px; margin-bottom: 4px; }

/* ============================
   RESPONSIVO
   ============================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .advantages-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .landing-hero-inner { grid-template-columns: 1fr; }
    .landing-form-wrapper { max-width: 520px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); padding: 24px; box-shadow: var(--shadow-md); }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { color: var(--dark); display: block; padding: 12px 16px; }
    .btn-header { display: none; }
    .menu-toggle { display: flex; }

    .steps-grid { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .products-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-featured { transform: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .lp-testimonials { grid-template-columns: 1fr; }
    .landing-stats { gap: 8px; }
    .hero-ctas { flex-direction: column; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    .stat-divider { display: none; }
    .stats-inner { gap: 0; }
    .stat-item { padding: 16px 24px; }

    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
    .landing-form-card { padding: 28px 20px; }
    .hero-title { letter-spacing: -0.5px; }
}
