/*=================================
            Hero Section
==================================*/

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(13,17,54,.92) 0%, rgba(13,17,54,.78) 42%, rgba(13,17,54,.35) 75%, rgba(13,17,54,.15) 100%),
        linear-gradient(0deg, rgba(13,17,54,.75) 0%, rgba(13,17,54,0) 45%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 140px 8% 60px;
}

.hero-content {
    max-width: 680px;
}

.hero-kicker {
    display: inline-block;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 999px;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}

.hero-content h1 {
    font-size: 58px;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.25;
    font-weight: 800;
    text-shadow: 0 4px 24px rgba(0,0,0,.35);
}

.hero-content p {
    font-size: 19px;
    color: #dfe3f5;
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

    .hero-buttons .btn-primary {
        background: linear-gradient(90deg, var(--primary), #4338CA);
        box-shadow: 0 12px 30px rgba(45,36,141,.45);
    }

    .hero-buttons .btn-whatsapp {
        box-shadow: 0 12px 30px rgba(37,211,102,.35);
    }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    margin-top: 56px;
    max-width: 720px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-stat {
    background: rgba(13,17,54,.35);
    text-align: center;
    padding: 22px 10px;
}

    .hero-stat h3 {
        color: #fff;
        font-size: 30px;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .hero-stat span {
        color: #cfd4ec;
        font-size: 13px;
    }

@media (max-width: 768px) {
    .hero {
        align-items: center;
        min-height: 100vh;
    }

    .hero-inner {
        padding: 110px 6% 50px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 36px;
    }
}
