/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #102a43;
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =====================================================
   VARIÁVEIS
===================================================== */

:root {

    --ravi-blue: #0878ed;
    --ravi-blue-dark: #062c63;
    --ravi-blue-deep: #031f46;

    --ravi-light: #eaf4ff;

    --text: #102a43;
    --text-light: #627d98;

    --white: #ffffff;

    --gray: #f5f8fc;

    --border: #dce8f5;

    --whatsapp: #25d366;

    --radius: 18px;

    --shadow:
        0 15px 40px rgba(6, 44, 99, 0.10);
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: relative;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid var(--border);

    z-index: 1000;
}

.header-content {
    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.logo-symbol {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #0878ed,
            #0755b5
        );

    color: white;

    font-size: 26px;

    font-weight: 800;
}

.logo-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}

.logo-text strong {
    color: var(--ravi-blue-dark);

    font-size: 24px;

    letter-spacing: 1px;
}

.logo-text small {
    margin-top: 4px;

    color: #536b85;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: .8px;
}


/* =====================================================
   MENU DESKTOP
===================================================== */

.nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

.nav a {
    position: relative;

    color: #334e68;

    font-size: 14px;

    font-weight: 600;

    padding: 8px 0;

    transition: color .25s ease;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--ravi-blue);

    transition: width .25s ease;
}

.nav a:hover {
    color: var(--ravi-blue);
}

.nav a:hover::after {
    width: 100%;
}


/* =====================================================
   BOTÃO WHATSAPP HEADER
===================================================== */

.header-whatsapp {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 18px;

    border-radius: 10px;

    background: var(--whatsapp);

    color: white;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition: .25s ease;
}

.header-whatsapp:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(37, 211, 102, .25);
}


/* =====================================================
   BOTÃO MENU MOBILE
===================================================== */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 10px;

    background: var(--ravi-light);

    color: var(--ravi-blue);

    font-size: 20px;

    cursor: pointer;

    transition: .25s ease;
}

.menu-toggle:hover {
    background: var(--ravi-blue);

    color: white;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    overflow: hidden;

    padding: 80px 0;

    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f3f8ff 55%,
            #e8f3ff 100%
        );
}

.hero-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;
}

.eyebrow,
.section-label {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--ravi-blue);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.hero h1 {
    max-width: 650px;

    margin-bottom: 25px;

    color: var(--ravi-blue-dark);

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.hero h1 span {
    display: block;

    color: var(--ravi-blue);
}

.hero p {
    max-width: 570px;

    margin-bottom: 32px;

    color: var(--text-light);

    font-size: 18px;
}


/* =====================================================
   BOTÕES
===================================================== */

.hero-buttons,
.cta-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}

.btn {
    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 24px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    transition: .25s ease;
}

.btn-primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            #0878ed,
            #0755b5
        );

    box-shadow:
        0 10px 25px rgba(8, 104, 216, .22);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-whatsapp {
    color: white;

    background: var(--whatsapp);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
}

.btn-light {
    background: white;

    color: var(--ravi-blue-dark);
}


/* =====================================================
   HERO INFO
===================================================== */

.hero-info {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 28px;
}

.hero-info div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #486581;

    font-size: 13px;

    font-weight: 600;
}

.hero-info i {
    color: var(--ravi-blue);

    font-size: 17px;
}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image img {
    display: block;
    width: 100%;
    height: auto;

    border-radius: 24px;

    box-shadow:
        0 25px 60px rgba(6, 44, 99, .15);
}

.hero-image {
    border-radius: 24px;
}


/* =====================================================
   SEÇÕES
===================================================== */

.section {
    padding: 95px 0;
}

.section-header {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-header h2 {
    margin-bottom: 18px;

    color: var(--ravi-blue-dark);

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;
}

.section-header p {
    color: var(--text-light);

    font-size: 16px;
}


/* =====================================================
   BENEFÍCIOS
===================================================== */

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.benefit-card {
    padding: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition: .25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background: var(--ravi-light);

    color: var(--ravi-blue);

    font-size: 22px;
}

.benefit-card h3 {
    margin-bottom: 10px;

    color: var(--ravi-blue-dark);

    font-size: 18px;
}

.benefit-card p {
    color: var(--text-light);

    font-size: 14px;
}


/* =====================================================
   COBERTURA
===================================================== */

.coverage {
    background: var(--gray);
}

.coverage-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;
}

.coverage-image img {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 22px;

    box-shadow: var(--shadow);
}

.coverage-image {
    border-radius: 22px;
}

.coverage-text h2 {
    margin-bottom: 20px;

    color: var(--ravi-blue-dark);

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;
}

.coverage-text > p {
    margin-bottom: 28px;

    color: var(--text-light);
}

.coverage-list {
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 25px;

    padding: 0;

    list-style: none;
}

.coverage-list li {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #334e68;

    font-size: 15px;

    font-weight: 600;
}

.coverage-list i {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--ravi-blue);

    color: white;

    font-size: 11px;
}

.coverage-note {
    display: block;

    color: #829ab1;

    font-size: 11px;
}


/* =====================================================
   ETAPAS
===================================================== */

.steps {
    max-width: 900px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.step {
    display: flex;

    gap: 20px;

    padding: 28px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 8px 25px rgba(6, 44, 99, .05);
}

.step-number {
    min-width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #0878ed,
            #0755b5
        );

    color: white;

    font-size: 14px;

    font-weight: 800;
}

.step h3 {
    margin-bottom: 7px;

    color: var(--ravi-blue-dark);

    font-size: 17px;
}

.step p {
    color: var(--text-light);

    font-size: 14px;
}


/* =====================================================
   CORRETORA
===================================================== */

.broker {
    background:
        linear-gradient(
            135deg,
            #f5f9ff,
            #e9f3ff
        );
}

.broker-content {
    display: grid;

    grid-template-columns: 1.5fr .8fr;

    align-items: center;

    gap: 70px;
}

.broker-text h2 {
    max-width: 700px;

    margin-bottom: 22px;

    color: var(--ravi-blue-dark);

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;
}

.broker-text p {
    max-width: 680px;

    margin-bottom: 15px;

    color: var(--text-light);
}

.broker-features {
    display: flex;

    flex-direction: column;

    gap: 20px;

    margin-top: 30px;
}

.broker-features > div {
    display: flex;

    align-items: center;

    gap: 15px;
}

.broker-features i {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: white;

    color: var(--ravi-blue);

    box-shadow:
        0 5px 20px rgba(6, 44, 99, .08);
}

.broker-features span {
    display: flex;

    flex-direction: column;
}

.broker-features strong {
    color: var(--ravi-blue-dark);

    font-size: 14px;
}

.broker-features small {
    color: var(--text-light);

    font-size: 12px;
}


/* =====================================================
   CARD
===================================================== */

.broker-card {
    padding: 40px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #062c63,
            #031f46
        );

    color: white;

    box-shadow:
        0 25px 50px rgba(3, 31, 70, .22);
}

.broker-card > i {
    margin-bottom: 25px;

    color: #49a3ff;

    font-size: 42px;
}

.broker-card h3 {
    margin-bottom: 15px;

    font-size: 27px;

    line-height: 1.2;
}

.broker-card p {
    margin-bottom: 28px;

    color: #bdd4ed;

    font-size: 14px;
}


/* =====================================================
   CTA
===================================================== */

.cta {
    padding: 75px 0;

    background:
        linear-gradient(
            135deg,
            #0868d8,
            #063f8f
        );

    color: white;
}

.cta-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.cta span {
    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.cta h2 {
    max-width: 600px;

    margin: 10px 0 15px;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.1;
}

.cta p {
    max-width: 600px;

    color: #d8eaff;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: var(--ravi-blue-deep);

    color: white;
}

.footer-content {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 60px;

    padding: 65px 0;
}

.footer-brand p {
    max-width: 350px;

    margin-top: 20px;

    color: #9bb7d4;

    font-size: 13px;
}

.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.footer h3 {
    margin-bottom: 8px;

    font-size: 15px;
}

.footer a {
    color: #a9c1da;

    font-size: 13px;

    transition: .2s ease;
}

.footer a:hover {
    color: white;
}

.footer-contact a {
    display: flex;

    align-items: center;

    gap: 9px;
}

.footer-contact i {
    color: #36a1ff;
}

.footer-bottom {
    border-top:
        1px solid rgba(255,255,255,.08);

    padding: 20px 0;
}

.footer-bottom p {
    color: #7895b3;

    font-size: 11px;

    text-align: center;
}


/* =====================================================
   WHATSAPP FLUTUANTE
===================================================== */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--whatsapp);

    color: white;

    font-size: 29px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.20);

    z-index: 900;

    transition: .25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {

    .nav {
        gap: 18px;
    }

    .header-whatsapp span {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .container {
        width: min(100% - 30px, 650px);
    }


    /* HEADER */

    .header-content {
        min-height: 72px;
    }


    /*
       O MENU DESKTOP É ESCONDIDO
       E O JS CONTROLA O .active
    */

    .nav {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 15px 15px;

        background: white;

        border-top:
            1px solid var(--border);

        box-shadow:
            0 15px 30px rgba(6, 44, 99, .12);

        /*
            Estado inicial fechado
        */

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform: translateY(-10px);

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;

        z-index: 999;
    }


    /*
        MENU ABERTO
    */

    .nav.active {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform: translateY(0);
    }


    .nav a {

        display: flex;

        align-items: center;

        width: 100%;

        min-height: 50px;

        padding: 0 10px;

        border-bottom:
            1px solid #edf2f7;

        color: var(--ravi-blue-dark);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav a::after {
        display: none;
    }

    .nav a:hover {
        padding-left: 16px;

        background: var(--ravi-light);
    }


    /*
        BOTÃO HAMBURGUER
    */

    .menu-toggle {
        display: flex;

        position: relative;

        z-index: 1100;
    }


    /*
        ESCONDE BOTÃO DESKTOP
    */

    .header-whatsapp {
        display: none;
    }


    /* HERO */

    .hero {
        padding: 55px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;

        letter-spacing: -1px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-info {
        justify-content: center;
    }


    /* COVERAGE */

    .coverage-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    /* BROKER */

    .broker-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    /* CTA */

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

}


/* =====================================================
   MOBILE PEQUENO
===================================================== */

@media (max-width: 550px) {

    .container {
        width: calc(100% - 30px);
    }

    .logo-text strong {
        font-size: 21px;
    }

    .logo-symbol {
        width: 38px;
        height: 38px;

        font-size: 23px;
    }


    .hero h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-info {
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }


    .benefits-grid {
        grid-template-columns: 1fr;
    }


    .steps {
        grid-template-columns: 1fr;
    }


    .step {
        padding: 22px;
    }


    .broker-card {
        padding: 30px;
    }


    .cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }


    .footer-content {
        grid-template-columns: 1fr;
    }


    .whatsapp-float {
        width: 55px;
        height: 55px;

        right: 18px;
        bottom: 18px;

        font-size: 25px;
    }

}