:root {
    --dark: #111111;
    --dark-2: #2a2a2a;
    --gray: #6e6e6e;
    --light: #f6f1d5;
    --light-2: #fbf8eb;
    --accent: #d9c97c;
    --accent-2: #c7b45d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
}

.navbar {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.brand {
    font-weight: 900;
    letter-spacing: -1px;
}

.btn-wa {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: none;
    color: var(--dark);
    font-weight: 800;
    padding: .9rem 1.4rem;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(255, 166, 0, .25);
}

.btn-wa:hover {
    transform: translateY(-2px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(217, 201, 124, .18), transparent 30%),
        radial-gradient(circle at bottom left, rgba(19, 77, 143, .15), transparent 35%),
        var(--light-2);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    background: #eef6ff;
    border-radius: 999px;
    font-weight: 700;
    color: var(--gray);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: .92;
    font-weight: 900;
    letter-spacing: -3px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    color: #5a6b7f;
}
.color-blue-brand {
    color: #5a6b7f;
}

.product-panel {
    background: linear-gradient(180deg, var(--dark), var(--dark-2));
    color: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .18);
}

.product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.product-item:last-child {
    border: none;
}

.product-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    background: rgba(255, 255, 255, .08);
}

.trust-bar {
    background: var(--dark);
    color: white;
}

.trust-item i {
    font-size: 2rem;
    color: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -2px;
}

.category-layout {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 1.5rem;
}

.big-card {
    min-height: 340px;
}

.category-card {
    border: none;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    padding: 2rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
}

.category-card i {
    font-size: 4rem;
}

.card-blue {
    background: linear-gradient(135deg, #0d2d4f, #1b5ca5);
    color: white;
}

.card-light {
    background: #f6f9fc;
}

.card-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #111;
}

.diagonal-section {
    overflow: hidden;
    position: relative;
    background: var(--dark);
    color: white;
    padding: 120px 0;
}

.diagonal-section:before {
    content: "";
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 140px;
    background: white;
    transform: skewY(-4deg);
}

.step {
    text-align: center;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gray);
    line-height: 1;
}

.cta-band {
    background:
        linear-gradient(135deg, var(--dark), #102f50);
    color: white;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.cta-band:after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 181, 71, .08);
    border-radius: 50%;
    right: -150px;
    top: -120px;
}

.quote-card {
    border-left: 5px solid var(--accent);
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .05);
}

.differentiator {
    background: #f7fbff;
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
}

.differentiator i {
    font-size: 2.5rem;
    color: var(--gray);
}

.footer {
    background: var(--light);
    color: var(--dark);
}

.floating-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #111;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

@media(max-width:991px) {

    .category-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        overflow: hidden;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

}

.faq-card {
    background: white;
    border: 1px solid rgba(7, 26, 45, .08);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    transition: .25s;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.faq-card .faq-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(19, 77, 143, .08);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-card h5 {
    font-weight: 800;
    margin-bottom: .75rem;
}

.faq-card p {
    margin: 0;
    color: #5a6b7f;
}

.nav-links {
    gap: .5rem;
}

.nav-link {
    color: #13253b;
    font-weight: 700;
    padding: .7rem 1rem !important;
    border-radius: 12px;
    transition: all .25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gray);
    background: rgba(19, 77, 143, .08);
}

.navbar-toggler {
    color: var(--dark);
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {

    .navbar-collapse {
        padding-top: 1rem;
    }

    .nav-links {
        gap: .25rem;
        margin: 1rem 0;
    }

    .nav-link {
        text-align: center;
        background: #f7fbff;
    }

    .nav-wa {
        width: 100%;
        text-align: center;
    }
}