/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
}

.fullFULL {position: absolute !important; width: 0 !important; height: 0 !important; visibility: hidden; overflow: hidden !important;}


a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --primary: #0066ff;
    --primary-dark: #004dcc;
    --secondary: #071a38;

    --text: #172033;
    --muted: #697386;

    --light: #f5f8fc;
    --border: #e7edf5;

    --white: #ffffff;

    --radius: 18px;

    --shadow:
        0 20px 50px rgba(10, 35, 80, .09);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid transparent;

    transition: .3s ease;
}

.header.scrolled {
    box-shadow: 0 10px 35px rgba(0,0,0,.07);
    border-color: var(--border);
}

.header-content {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 107px;
    height: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav > a:not(.nav-button) {
    color: #4c566a;
    font-size: 14px;
    font-weight: 600;

    transition: .2s ease;
}

.nav > a:not(.nav-button):hover {
    color: var(--primary);
}

.nav-button {
    background: var(--primary);
    color: #fff;

    padding: 12px 20px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 700;

    transition: .25s ease;
}

.nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: var(--secondary);

    margin: 5px auto;

    transition: .3s;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    padding-top: 78px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #f7fbff 0%,
            #eef6ff 55%,
            #e6f1ff 100%
        );
}

.hero-background {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -180px;
    top: 30px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(0,102,255,.15),
            transparent 65%
        );
}

.hero-content {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns: 1fr 380px;

    gap: 80px;

    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 7px 13px;

    border-radius: 50px;

    background: #e4efff;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

    margin-bottom: 22px;
}

.pulse {
    width: 8px;
    height: 8px;

    background: #14c66d;

    border-radius: 50%;

    box-shadow: 0 0 0 5px rgba(20,198,109,.12);
}

.hero h1 {
    max-width: 720px;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.04;

    letter-spacing: -2.8px;

    font-weight: 800;

    color: var(--secondary);
}

.hero h1 strong {
    display: block;

    color: var(--primary);
}

.hero-text > p {
    max-width: 620px;

    margin-top: 25px;

    color: #5d687a;

    font-size: 17px;

    line-height: 1.7;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 32px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 11px;

    font-size: 14px;

    font-weight: 800;

    transition: .25s ease;
}

.btn-primary {
    background: var(--primary);
    color: white;

    box-shadow:
        0 12px 25px rgba(0,102,255,.22);
}

.btn-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(0,102,255,.27);
}

.btn-secondary {
    background: white;

    color: var(--secondary);

    border: 1px solid #dce5f0;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);

    transform: translateY(-3px);
}

.whatsapp-icon {
    font-size: 18px;
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;

    gap: 30px;

    margin-top: 42px;

    padding-top: 26px;

    border-top: 1px solid #d9e5f2;
}

.hero-trust div {
    display: flex;

    flex-direction: column;
}

.hero-trust strong {
    font-size: 16px;

    color: var(--secondary);
}

.hero-trust span {
    color: var(--muted);

    font-size: 11px;

    margin-top: 2px;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
    position: relative;

    padding: 38px;

    background: var(--secondary);

    color: white;

    border-radius: 24px;

    box-shadow:
        0 30px 70px rgba(7,26,56,.23);

    overflow: hidden;
}

.hero-card::after {
    content: "";

    position: absolute;

    width: 190px;
    height: 190px;

    right: -80px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(0,102,255,.45);
}

.card-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,102,255,.18);

    color: #4c9aff;

    border-radius: 14px;

    font-size: 27px;

    margin-bottom: 25px;
}

.hero-card > span {
    color: #7caefb;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;
}

.hero-card h2 {
    margin-top: 10px;

    font-size: 31px;

    line-height: 1.15;
}

.hero-card p {
    margin-top: 17px;

    color: #b8c5d8;

    font-size: 14px;
}

.card-button {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 27px;

    padding: 15px 17px;

    background: var(--primary);

    border-radius: 10px;

    font-size: 13px;

    font-weight: 800;

    transition: .25s ease;
}

.card-button:hover {
    background: #1975ff;

    transform: translateY(-2px);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 105px 0;
}

.section-heading {
    max-width: 690px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-label {
    display: inline-block;

    color: var(--primary);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.5px;

    margin-bottom: 13px;
}

.section-heading h2 {
    color: var(--secondary);

    font-size: clamp(31px, 4vw, 45px);

    line-height: 1.12;

    letter-spacing: -1.5px;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    color: var(--muted);

    margin-top: 17px;

    font-size: 15px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: white;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    padding: 31px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: white;

    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: #cfe0f8;

    box-shadow: var(--shadow);
}

.service-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf5ff;

    border-radius: 13px;

    font-size: 24px;

    margin-bottom: 23px;
}

.service-card h3 {
    font-size: 17px;

    color: var(--secondary);
}

.service-card p {
    margin-top: 9px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;
}

.service-card a {
    display: inline-block;

    margin-top: 20px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--light);
}

.about-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 100px;

    align-items: center;
}

.about-visual {
    position: relative;

    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual::before {
    content: "";

    position: absolute;

    width: 310px;
    height: 310px;

    border-radius: 50%;

    background: #dcecff;
}

.about-visual::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    border-radius: 50%;

    border: 1px solid #b8d4fa;
}

.about-box {
    position: relative;
    z-index: 2;

    width: 245px;
    height: 245px;

    border-radius: 50%;

    background: white;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    box-shadow: var(--shadow);
}

.big-number {
    color: var(--primary);

    font-size: 82px;

    font-weight: 900;

    line-height: .9;

    letter-spacing: -6px;
}

.about-box strong {
    display: block;

    text-align: center;

    color: var(--secondary);

    font-size: 21px;
}

.about-box span {
    display: block;

    color: var(--muted);

    font-size: 12px;

    text-align: center;
}

.about-text h2 {
    max-width: 580px;

    color: var(--secondary);

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.1;

    letter-spacing: -1.7px;
}

.about-text h2 span {
    color: var(--primary);
}

.about-text > p {
    max-width: 610px;

    color: var(--muted);

    font-size: 15px;

    margin-top: 20px;
}

.benefits {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

    margin-top: 30px;
}

.benefit {
    display: flex;

    gap: 12px;
}

.benefit > span {
    flex-shrink: 0;

    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #dcecff;

    color: var(--primary);

    font-size: 13px;

    font-weight: 900;
}

.benefit strong {
    display: block;

    color: var(--secondary);

    font-size: 13px;
}

.benefit p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 2px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.process-item {
    position: relative;

    padding: 27px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    transition: .3s;
}

.process-item:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.process-number {
    color: var(--primary);

    font-size: 27px;

    font-weight: 900;

    letter-spacing: -1px;

    margin-bottom: 25px;
}

.process-item h3 {
    color: var(--secondary);

    font-size: 15px;
}

.process-item p {
    color: var(--muted);

    font-size: 12px;

    margin-top: 7px;
}

.process {
    background: #fff;
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 70px 0;

    background:
        linear-gradient(
            115deg,
            #0055d9,
            #0076ff
        );

    color: white;
}

.cta-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.cta-content > div > span {
    font-size: 11px;

    font-weight: 900;

    letter-spacing: 1.4px;

    color: #b9d8ff;
}

.cta h2 {
    font-size: clamp(30px, 4vw, 43px);

    line-height: 1.08;

    margin-top: 8px;

    letter-spacing: -1.5px;
}

.cta p {
    color: #d3e6ff;

    margin-top: 11px;

    font-size: 14px;
}

.btn-white {
    background: white;

    color: var(--primary);

    white-space: nowrap;
}

.btn-white:hover {
    transform: translateY(-3px);

    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}


/* =========================================================
   AREAS
========================================================= */

.areas {
    background: var(--light);
}

.areas-grid {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 11px;
}

.areas-grid span {
    padding: 12px 19px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 50px;

    color: #4e5a6d;

    font-size: 12px;

    font-weight: 700;

    transition: .2s;
}

.areas-grid span:hover {
    color: var(--primary);

    border-color: #bdd5f5;

    transform: translateY(-2px);
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.review {
    padding: 30px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: white;
}

.stars {
    color: #ffb300;

    letter-spacing: 2px;

    font-size: 14px;
}

.review p {
    color: #596477;

    font-size: 13px;

    line-height: 1.7;

    margin: 20px 0;
}

.review strong {
    color: var(--secondary);

    font-size: 12px;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    background: var(--light);
}

.faq-list {
    max-width: 800px;

    margin: auto;
}

.faq-item {
    background: white;

    border: 1px solid var(--border);

    border-radius: 13px;

    margin-bottom: 10px;

    overflow: hidden;
}

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 20px 23px;

    border: 0;

    background: transparent;

    cursor: pointer;

    color: var(--secondary);

    font-size: 14px;

    font-weight: 700;

    text-align: left;
}

.faq-question span {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf5ff;

    color: var(--primary);

    font-size: 18px;

    transition: .3s;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 23px 22px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #06162f;

    color: white;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr;

    gap: 70px;

    padding: 70px 0;
}

.footer-logo {
    width: 107px;

    margin-bottom: 20px;

    filter: brightness(0) invert(1);
}

.footer-grid p {
    max-width: 310px;

    color: #8e9caf;

    font-size: 12px;
}

.footer-grid h3 {
    font-size: 13px;

    margin-bottom: 18px;
}

.footer-grid a,
.footer-grid span {
    display: block;

    color: #8e9caf;

    font-size: 12px;

    margin-bottom: 10px;

    transition: .2s;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom .container {
    min-height: 60px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #68758a;

    font-size: 10px;
}


/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 11px 16px 11px 11px;

    background: #17b968;

    color: white;

    border-radius: 50px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.2);

    transition: .3s;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.02);
}

.whatsapp-float > span {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.17);

    border-radius: 50%;

    font-size: 18px;
}

.whatsapp-float strong,
.whatsapp-float small {
    display: block;
}

.whatsapp-float strong {
    font-size: 11px;
}

.whatsapp-float small {
    font-size: 9px;

    opacity: .85;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .nav {
        position: fixed;

        top: 78px;
        left: 0;

        width: 100%;

        padding: 25px 20px 30px;

        background: white;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        box-shadow: 0 20px 30px rgba(0,0,0,.08);

        transform: translateY(-120%);

        opacity: 0;

        pointer-events: none;

        transition: .3s ease;
    }

    .nav.active {
        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;
    }

    .nav > a {
        padding: 14px 0;

        border-bottom: 1px solid var(--border);
    }

    .nav-button {
        text-align: center;

        margin-top: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .hero {
        padding: 130px 0 80px;
    }

    .hero-card {
        max-width: 500px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-visual {
        min-height: 300px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        min-height: auto;

        padding-top: 125px;
    }

    .hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .hero-text > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 18px;

        justify-content: space-between;
    }

    .hero-card {
        padding: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;

        align-items: flex-start;
    }

    .cta .btn {
        width: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0;
    }

    .footer-bottom .container {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 17px 0;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }

}