html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: white;
}

.navbar-custom {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
    padding: 14px 0;
    z-index: 1000;
}

.nav-link {
    color: #0A3E87;
    font-weight: 600;
    margin-left: 20px;
}

.nav-link:hover {
    color: #E51E2A;
}

.btn-menu {
    padding: 12px 22px;
    font-size: 14px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 180px 0 120px;
    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #f7f9fc 100%);
}

.hero-bg {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 700px;
    height: 700px;
    background:
        radial-gradient(circle,
            rgba(10, 62, 135, .12),
            transparent 65%);
    filter: blur(20px);
}

.hero::before {
    content: '';
    position: absolute;
    left: -180px;
    bottom: -220px;
    width: 500px;
    height: 500px;
    background:
        radial-gradient(circle,
            rgba(229, 30, 42, .05),
            transparent 70%);
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #eef4ff;
    color: #0A3E87;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    color: #0A3E87;
}

.hero p {
    font-size: 20px;
    line-height: 1.8;
    margin: 30px 0;
    color: #475569;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.dashboard-shot {
    width: 100%;
    max-width: 720px;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
    position: relative;
    z-index: 1;
    transition: .35s;
}

.dashboard-shot:hover {
    transform: translateY(-6px);
}

.mobile-shot {
    position: absolute;
    right: -10px;
    bottom: -20px;
    width: 180px;
    border-radius: 32px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
    z-index: 2;
    transition: .35s;
    background: white;
}

.mobile-shot:hover {
    transform: translateY(-6px);
}

.section {
    padding: 100px 0;
}

.section-light {
    background: #f8fafc;
}

.section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0A3E87;
}

.section-text {
    max-width: 850px;
    margin: auto;
    color: #64748b;
    font-size: 18px;
}

.feature-box {
    padding: 35px;
    border-radius: 24px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .35s;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.feature-box i {
    font-size: 42px;
    margin-bottom: 20px;
    color: #E51E2A;
}

.solution-card {
    background: white;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    max-width: 850px;
    margin: auto;
}

.solution-card h3 {
    color: #0A3E87;
    font-size: 34px;
    font-weight: 700;
}

.solution-card ul {
    margin: 25px 0;
    padding-left: 20px;
}

.solution-card li {
    margin-bottom: 12px;
    color: #475569;
}

.btn-primary-custom {
    background: #0A3E87;
    color: white;
    padding: 15px 32px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: #E51E2A;
    color: white;
    transform: translateY(-2px);
}

.btn-outline-custom {
    border: 2px solid #0A3E87;
    color: #0A3E87;
    padding: 15px 32px;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-outline-custom:hover {
    background: #0A3E87;
    color: white;
}

.eco-card {
    background: white;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    height: 100%;
    transition: .35s;
}

.eco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.eco-icon {
    width: 70px;
    height: 70px;
    background: #eef4ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #0A3E87;
    margin-bottom: 25px;
}

.eco-card h4 {
    font-weight: 700;
    color: #0A3E87;
    margin-bottom: 15px;
}

.eco-card p {
    color: #64748b;
}

.coming-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 16px;
    background: #ffe8ea;
    color: #E51E2A;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.contact-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
    padding: 16px 28px;
    border-radius: 16px;
    background: #0A3E87;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.contact-buttons a:hover {
    background: #E51E2A;
    transform: translateY(-3px);
}

.map-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    z-index: 999;
    text-decoration: none;
    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: white;
}

footer {
    background: #0A3E87;
    padding: 45px 0;
    color: white;
}

footer p {
    margin-top: 15px;
    opacity: .85;
}

@media(max-width:991px) {

    .hero {
        padding: 140px 0 80px;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section {
        padding: 70px 0;
    }

    .section h2 {
        font-size: 34px;
    }

    .solution-card {
        padding: 35px;
    }

    .contact-buttons a {
        width: 100%;
        justify-content: center;
        margin: 8px 0;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .hero-mockup {
        margin-top: 40px;
    }

    .dashboard-shot {
        max-width: 100%;
    }

    .mobile-shot {
        position: relative;
        right: auto;
        bottom: auto;
        width: 130px;
        margin-top: -50px;
        margin-left: auto;
        display: block;
    }

}