:root {

    --primary: #0754f8;
    --primary-dark: #003fc7;
    --primary-light: #2b7cff;

    --navy: #0b1739;

    --text: #121827;
    --muted: #667085;

    --white: #ffffff;

    --soft: #f5f8ff;
    --border: #e5eaf3;

    --shadow:
        0 20px 60px rgba(22, 46, 100, .10);

}


/* ==================================================
GENERAL
================================================== */

* {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: #fff;

    overflow-x: hidden;

}


a {

    text-decoration: none;

}


section {

    position: relative;

}



/* ==================================================
HEADER
================================================== */

.main-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(255,255,255,.88);

    backdrop-filter: blur(20px);

    border-bottom:
        1px solid rgba(10,40,100,.05);

}


.header-content {

    height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 1.25rem;

    font-weight: 800;

    color: var(--primary);

}


.brand-symbol {

    font-size: 28px;

}


.desktop-menu {

    display: flex;

    gap: 30px;

}


.desktop-menu a {

    color: #252b3a;

    font-size: .86rem;

    font-weight: 600;

    transition: .25s;

}


.desktop-menu a:hover {

    color: var(--primary);

}


.btn-header {

    background: var(--primary);

    color: white;

    padding: 11px 25px;

    border-radius: 40px;

    font-weight: 700;

    font-size: .85rem;

    box-shadow:
        0 10px 30px rgba(7,84,248,.24);

}


.mobile-menu-btn {

    display: none;

    border: 0;

    background: none;

    color: var(--primary);

    font-size: 30px;

}



/* ==================================================
MOBILE MENU
================================================== */

.mobile-menu {

    position: fixed;

    inset: 0;

    background:
        linear-gradient(
            150deg,
            #041847,
            var(--primary)
        );

    z-index: 2000;

    display: flex;

    align-items: center;

    justify-content: center;

    transform: translateX(100%);

    transition:
        transform .5s cubic-bezier(.77,0,.18,1);

}


.mobile-menu.active {

    transform: translateX(0);

}


.mobile-menu-close {

    position: absolute;

    top: 25px;

    right: 25px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 30px;

}


.mobile-menu-links {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 22px;

}


.mobile-menu-links a {

    color: white;

    font-size: 1.5rem;

    font-weight: 700;

}


.mobile-menu-cta {

    border:

        1px solid rgba(255,255,255,.6);

    padding: 14px 26px;

    border-radius: 30px;

}



/* ==================================================
HERO
================================================== */

.hero {

    min-height: 760px;

    display: flex;

    align-items: center;

    padding-top: 110px;

    background:

        radial-gradient(
            circle at 80% 40%,
            rgba(13,91,255,.10),
            transparent 30%
        ),

        linear-gradient(
            180deg,
            #fff,
            #fbfcff
        );

}


.hero-content {

    max-width: 630px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        7px 15px;

    background:
        rgba(7,84,248,.08);

    color: var(--primary);

    border-radius: 30px;

    font-size: .8rem;

    font-weight: 700;

    margin-bottom: 25px;

}


.hero h1 {

    font-size:
        clamp(3rem,6vw,5rem);

    line-height: .92;

    letter-spacing: -4px;

    font-weight: 900;

    margin-bottom: 28px;

}


.hero h1 span {

    display: block;

    color: var(--primary);

}


.hero-subtitle {

    font-size: 1.35rem;

    font-weight: 700;

    max-width: 550px;

}


.hero-description {

    color: var(--muted);

    line-height: 1.7;

    max-width: 530px;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 30px;

}


.btn-primary-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding:
        14px 25px;

    border-radius: 40px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    font-weight: 700;

    box-shadow:
        0 12px 35px rgba(7,84,248,.25);

    transition: .3s;

}


.btn-primary-custom:hover {

    color: white;

    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(7,84,248,.30);

}


.btn-whatsapp {

    display: inline-flex;

    gap: 9px;

    align-items: center;

    padding:
        13px 23px;

    border:
        1.5px solid var(--primary);

    border-radius: 40px;

    color: var(--primary);

    font-weight: 700;

}


.hero-visual {

    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.hero-glow {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background:
        rgba(24,99,255,.12);

    filter: blur(35px);

}


.device-placeholder {

    width: 90%;

    max-width: 560px;

    position: relative;

    z-index: 2;

    background:
        linear-gradient(
            145deg,
            #1c2535,
            #020409
        );

    padding: 13px;

    border-radius: 18px;

    box-shadow:
        0 30px 70px rgba(10,25,70,.30);

    animation:
        deviceFloat 5s
        ease-in-out infinite;

}


.screen {

    background: #f6f8fc;

    min-height: 320px;

    border-radius: 10px;

    padding: 20px;

}


.screen-header {

    display: flex;

    justify-content: space-between;

    color: var(--primary);

    font-weight: 800;

}


.screen-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;

    margin-top: 25px;

}


.dashboard-card {

    background: white;

    border-radius: 12px;

    padding: 18px;

    box-shadow:
        0 10px 30px rgba(20,30,80,.06);

}


.dashboard-card strong {

    display: block;

    color: var(--primary);

    font-size: 1.5rem;

}


.dashboard-large {

    grid-column: span 2;

}


.bars {

    height: 100px;

    display: flex;

    gap: 12px;

    align-items: flex-end;

}


.bars i {

    flex: 1;

    background: var(--primary);

    border-radius: 5px 5px 0 0;

}


.bars i:nth-child(1) {height:30%;}
.bars i:nth-child(2) {height:50%;}
.bars i:nth-child(3) {height:40%;}
.bars i:nth-child(4) {height:75%;}
.bars i:nth-child(5) {height:65%;}
.bars i:nth-child(6) {height:95%;}


.floating-card {

    position: absolute;

    z-index: 4;

    background: white;

    border-radius: 14px;

    padding: 13px 17px;

    box-shadow: var(--shadow);

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

}


.floating-card-one {

    left: 0;

    top: 100px;

    animation:
        floatingOne 4s
        ease-in-out infinite;

}


.floating-card-two {

    right: 0;

    bottom: 60px;

    animation:
        floatingTwo 4.5s
        ease-in-out infinite;

}



/* ==================================================
HEADINGS
================================================== */

.section-heading {

    text-align: center;

    margin-bottom: 50px;

}


.section-heading span {

    color: var(--muted);

}


.section-heading h2 {

    font-weight: 900;

    margin-top: 8px;

    font-size:
        clamp(2rem,4vw,3rem);

}


.section-heading strong {

    color: var(--primary);

}



/* ==================================================
PROBLEM
================================================== */

.problem-section {

    padding:
        90px 0 100px;

}


.problem-grid {

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 18px;

}


.problem-card {

    padding:
        28px 20px;

    background: white;

    border-radius: 16px;

    border:
        1px solid var(--border);

    box-shadow:
        0 12px 35px rgba(15,30,80,.05);

    text-align: center;

    transition: .3s;

}


.problem-card:hover {

    transform:
        translateY(-8px);

    box-shadow: var(--shadow);

}


.problem-icon {

    margin: 0 auto 18px;

    width: 70px;

    height: 70px;

    border-radius: 15px;

    background: #eef4ff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 34px;

    color: var(--primary);

}


.whatsapp-icon {

    color: #20b858;

}


.excel-icon {

    color: #138344;

}


.problem-card h3 {

    font-size: .9rem;

    font-weight: 800;

    text-transform: uppercase;

}


.problem-card p {

    color: var(--muted);

    font-size: .83rem;

}


.problem-result {

    text-align: center;

    margin-top: 35px;

}


.problem-result p {

    margin-bottom: 2px;

}


.problem-result span {

    color: var(--primary);

    font-weight: 700;

}



/* ==================================================
SOLUTION
================================================== */

.solution-section {

    padding:
        85px 0;

    background:
        linear-gradient(
            130deg,
            #0644e8,
            #075bff
        );

    color: white;

    overflow: hidden;

}


.solution-content h2 {

    font-size:
        clamp(2.5rem,5vw,4rem);

    font-weight: 900;

    line-height: .95;

}


.solution-content h2 strong {

    display: block;

}


.solution-content p {

    color:
        rgba(255,255,255,.83);

    max-width: 500px;

    margin-top: 22px;

}


.section-tag {

    font-size: .75rem;

    font-weight: 800;

    letter-spacing: 1px;

}


.solution-flow {

    display: flex;

    align-items: center;

    margin-top: 35px;

    gap: 17px;

}


.solution-flow div {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

}


.solution-flow div i {

    width: 55px;

    height: 55px;

    background: white;

    color: var(--primary);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 25px;

}


.solution-screen-bar span {

    width: 7px;
    height: 7px;

    background: #fff;

    opacity: .5;

    border-radius: 50%;

}

/* ==================================================
IMAGEN SECCION SOLUCION
================================================== */

.solution-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 390px;

    overflow: visible;
}


.solution-image {
    position: relative;

    width: 115%;
    max-width: 820px;

    height: auto;

    object-fit: contain;

    z-index: 2;

    filter:
        drop-shadow(
            0 30px 40px rgba(0, 20, 80, .35)
        );

    animation:
        solutionLaptopFloat 5s
        ease-in-out infinite;
}


/* MOVIMIENTO LAPTOP */

@keyframes solutionLaptopFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-14px)
            rotate(.4deg);
    }

}

.solution-dashboard div {

    background: white;

    border-radius: 12px;

    box-shadow:
        0 7px 30px rgba(10,30,90,.08);

}


.solution-dashboard .wide {

    grid-column: span 3;

}



/* ==================================================
FEATURES
================================================== */

.features-section {

    padding:
        100px 0;

}


.features-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.feature-card {

    display: flex;

    gap: 18px;

    padding: 27px;

    border-radius: 16px;

    border:
        1px solid var(--border);

    box-shadow:
        0 10px 35px rgba(10,30,80,.05);

    transition: .3s;

}


.feature-card:hover {

    border-color:
        rgba(7,84,248,.25);

    transform:
        translateY(-6px);

}


.feature-icon {

    flex:
        0 0 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        rgba(7,84,248,.07);

    color: var(--primary);

    font-size: 27px;

}


.feature-card h3 {

    font-size: 1rem;

    font-weight: 800;

}


.feature-card p {

    color: var(--muted);

    font-size: .88rem;

    margin: 0;

}



/* ==================================================
HOW
================================================== */

.how-section {

    padding:
        90px 0;

    background: var(--soft);

}





.data-sources div {

    background: white;

    padding:
        9px 18px;

    min-width: 180px;

    border-radius: 8px;

    box-shadow:
        0 5px 20px rgba(10,30,80,.06);

}


.data-sources i {

    color: var(--primary);

    margin-right: 7px;

}




.central-system strong,
.central-system span {

    display: block;

}





.decision-box {

    background: var(--primary);

    color: white;

    padding: 27px;

    border-radius: 15px;

    text-align: center;

}


.decision-box i {

    display: block;

    font-size: 40px;

    margin-bottom: 8px;

}


.decision-box strong {

    display: block;

}

/* ==================================================
COMO FUNCIONA
================================================== */

.how-section {
    padding: 90px 0;
    background: #f4f7fd;
    overflow: hidden;
}


.how-process {
    display: grid;

    grid-template-columns:
        190px
        145px
        170px
        55px
        260px
        55px
        180px;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;
}


/* ==================================================
ENTRADAS
================================================== */

.how-inputs {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


.how-input-item {
    min-height: 45px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 9px 15px;

    background: #fff;

    border-radius: 9px;

    border: 1px solid #e7ecf5;

    box-shadow:
        0 7px 20px rgba(15, 30, 80, .06);

    font-size: .83rem;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.how-input-item:hover {
    transform: translateX(6px);

    box-shadow:
        0 12px 28px rgba(15, 30, 80, .10);
}


.how-input-item i {
    color: var(--primary);
    font-size: 20px;
}


/* WHATSAPP */

.how-input-item:nth-child(2) i {
    color: #25d366;
}


/* EXCEL */

.how-input-item:nth-child(1) i {
    color: #168346;
}


/* ==================================================
LINEAS CURVAS
================================================== */

.how-connections {
    height: 260px;
}


.connection-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}


.connection-svg path {
    fill: none;

    stroke: var(--primary);

    stroke-width: 2.3;

    stroke-linecap: round;

    opacity: .88;

    stroke-dasharray: 300;

    stroke-dashoffset: 300;

    animation:
        drawConnection 2.5s ease forwards;
}


.connection-svg path:nth-child(2) {
    animation-delay: .15s;
}


.connection-svg path:nth-child(3) {
    animation-delay: .30s;
}


.connection-svg path:nth-child(4) {
    animation-delay: .45s;
}


.connection-svg path:nth-child(5) {
    animation-delay: .60s;
}


@keyframes drawConnection {

    to {
        stroke-dashoffset: 0;
    }

}


/* ==================================================
CENTRO
================================================== */

.how-core {
    text-align: center;

    position: relative;

    z-index: 3;
}


.how-logo-circle {
    width: 110px;
    height: 110px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 16px 38px rgba(22, 57, 120, .12);

    animation:
        coreFloat 4s ease-in-out infinite;
}


.how-logo-symbol {
    font-size: 58px;
    color: var(--primary);
}


.how-core strong {
    display: block;

    font-size: 1.8rem;

    font-style: italic;

    color: var(--primary);

    font-weight: 900;

    line-height: 1;
}


.how-core span {
    display: block;

    font-size: .72rem;

    margin-top: 3px;

    color: #555;
}


/* ==================================================
FLECHAS PRINCIPALES
================================================== */

.how-main-arrow {
    text-align: center;

    color: var(--primary);

    font-size: 38px;

    animation:
        arrowMove 1.8s ease-in-out infinite;
}


@keyframes arrowMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(7px);
    }

}


/* ==================================================
RESULTADOS
================================================== */

.how-results {
    padding: 22px 24px;

    background: #fff;

    border-radius: 12px;

    border: 1px solid #e5ebf5;

    box-shadow:
        0 12px 30px rgba(15, 35, 90, .08);
}


.how-results p {
    display: flex;

    align-items: center;

    gap: 9px;

    margin: 0 0 10px;

    font-size: .82rem;
}


.how-results p:last-child {
    margin-bottom: 0;
}


.how-results i {
    color: var(--primary);
}


/* ==================================================
DECISION FINAL
================================================== */

.how-decision {
    min-height: 165px;

    padding: 25px;

    border-radius: 15px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #0754f8,
            #0444d5
        );

    color: white;

    box-shadow:
        0 20px 40px rgba(7, 84, 248, .24);

    animation:
        decisionFloat 4s ease-in-out infinite;
}


.how-decision i {
    font-size: 42px;
    margin-bottom: 12px;
}


.how-decision strong {
    font-size: 1rem;

    line-height: 1.1;
}


/* ==================================================
MOVIMIENTOS
================================================== */

@keyframes coreFloat {

    0%,
    100% {
        transform:
            translateY(0)
            scale(1);
    }

    50% {
        transform:
            translateY(-8px)
            scale(1.025);
    }

}


@keyframes decisionFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}

/* ==================================================
TABLET
================================================== */

@media(max-width: 1100px) {

    .how-process {
        grid-template-columns:
            170px
            110px
            145px
            40px
            220px
            40px
            155px;

        gap: 8px;
    }


    .how-input-item {
        font-size: .75rem;
    }


    .how-results {
        padding: 18px;
    }


    .how-results p {
        font-size: .75rem;
    }

}

/* ==================================================
MOBILE
================================================== */

@media(max-width: 767px) {

    .how-section {
        padding:
            70px 0 80px;
    }


    .how-process {
        display: flex;

        flex-direction: column;

        gap: 22px;
    }


    .how-inputs {
        width: 100%;

        max-width: 300px;
    }


    .how-input-item {
        width: 100%;

        min-height: 48px;

        font-size: .88rem;

        animation:
            mobileInputFloat 3s
            ease-in-out infinite;
    }


    .how-input-item:nth-child(2) {
        animation-delay: .15s;
    }


    .how-input-item:nth-child(3) {
        animation-delay: .30s;
    }


    .how-input-item:nth-child(4) {
        animation-delay: .45s;
    }


    .how-input-item:nth-child(5) {
        animation-delay: .60s;
    }


    /*
    En celular cambiamos las líneas
    curvas horizontales por una flecha
    vertical visual.
    */

    .how-connections {
        display: none;
    }


    .how-core::before {
        content: "↓";

        display: block;

        color: var(--primary);

        font-size: 32px;

        margin-bottom: 14px;

        animation:
            verticalArrow 1.6s
            ease-in-out infinite;
    }


    .how-logo-circle {
        width: 115px;
        height: 115px;
    }


    .how-main-arrow {
        transform: rotate(90deg);

        font-size: 34px;

        animation:
            verticalArrow 1.6s
            ease-in-out infinite;
    }


    .how-results {
        width: 100%;

        max-width: 310px;
    }


    .how-results p {
        font-size: .85rem;
    }


    .how-decision {
        width: 100%;

        max-width: 280px;

        min-height: 150px;
    }

}


@keyframes mobileInputFloat {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }

}


@keyframes verticalArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

}


/* ==================================================
TABLET
================================================== */

@media(max-width: 1100px) {

    .how-process {
        grid-template-columns:
            170px
            110px
            145px
            40px
            220px
            40px
            155px;

        gap: 8px;
    }


    .how-input-item {
        font-size: .75rem;
    }


    .how-results {
        padding: 18px;
    }


    .how-results p {
        font-size: .75rem;
    }

}

/* ==================================================
MOBILE
================================================== */

@media(max-width: 767px) {

    .how-section {
        padding:
            70px 0 80px;
    }


    .how-process {
        display: flex;

        flex-direction: column;

        gap: 22px;
    }


    .how-inputs {
        width: 100%;

        max-width: 300px;
    }


    .how-input-item {
        width: 100%;

        min-height: 48px;

        font-size: .88rem;

        animation:
            mobileInputFloat 3s
            ease-in-out infinite;
    }


    .how-input-item:nth-child(2) {
        animation-delay: .15s;
    }


    .how-input-item:nth-child(3) {
        animation-delay: .30s;
    }


    .how-input-item:nth-child(4) {
        animation-delay: .45s;
    }


    .how-input-item:nth-child(5) {
        animation-delay: .60s;
    }


    /*
    En celular cambiamos las líneas
    curvas horizontales por una flecha
    vertical visual.
    */

    .how-connections {
        display: none;
    }


    .how-core::before {
        content: "↓";

        display: block;

        color: var(--primary);

        font-size: 32px;

        margin-bottom: 14px;

        animation:
            verticalArrow 1.6s
            ease-in-out infinite;
    }


    .how-logo-circle {
        width: 115px;
        height: 115px;
    }


    .how-main-arrow {
        transform: rotate(90deg);

        font-size: 34px;

        animation:
            verticalArrow 1.6s
            ease-in-out infinite;
    }


    .how-results {
        width: 100%;

        max-width: 310px;
    }


    .how-results p {
        font-size: .85rem;
    }


    .how-decision {
        width: 100%;

        max-width: 280px;

        min-height: 150px;
    }

}


@keyframes mobileInputFloat {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }

}


@keyframes verticalArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }

}


/* ==================================================
BENEFITS
================================================== */

.benefits-section {

    padding:
        95px 0;

}


.benefits-grid {

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

}


.benefit {

    padding:
        15px 25px;

    border-right:
        1px solid var(--border);

}


.benefit:last-child {

    border-right: 0;

}


.benefit i {

    color: var(--primary);

    font-size: 19px;

}


.benefit h3 {

    font-size: .9rem;

    font-weight: 800;

    margin-top: 12px;

}


.benefit p {

    font-size: .8rem;

    color: var(--muted);

}



/* ==================================================
PRICE
================================================== */

.price-section {

    padding:
        95px 0;

    background: var(--soft);

}


.price-card {

    max-width: 620px;

    margin: auto;

    background: white;

    border-radius: 25px;

    padding:
        45px;

    box-shadow: var(--shadow);

    text-align: center;

    border:
        1px solid #e6ecfb;

}


.price-label {

    background:
        rgba(7,84,248,.08);

    color: var(--primary);

    padding:
        7px 16px;

    border-radius: 30px;

    font-weight: 800;

    font-size: .74rem;

}


.price-card h3 {

    margin-top: 20px;

    font-weight: 900;

}


.price-description {

    color: var(--muted);

}


.price {

    margin:
        25px 0;

}


.price small {

    display: block;

    color: var(--muted);

}


.price strong {

    color: var(--primary);

    font-size: 3rem;

}


.price-features {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 12px;

    text-align: left;

    margin:
        30px 0;

}


.price-features i {

    color: var(--primary);

}


.price-button {

    width: 100%;

}



/* ==================================================
FINAL CTA
================================================== */

.final-cta {

    padding:
        75px 0;

    background:
        linear-gradient(
            120deg,
            #043ecb,
            #0761ff
        );

    color: white;

    overflow: hidden;

}


.final-content span {

    font-size: .78rem;

    font-weight: 700;

}


.final-content h2 {

    font-size:
        clamp(2.4rem,5vw,4rem);

    font-weight: 900;

    line-height: .95;

    margin:
        12px 0 22px;

}


.final-content h2 strong {

    display: block;

}


.final-content p {

    color:
        rgba(255,255,255,.82);

    max-width: 560px;

}


.final-buttons {

    display: flex;

    gap: 13px;

    flex-wrap: wrap;

    margin-top: 28px;

}


.btn-white {

    padding:
        14px 25px;

    border-radius: 30px;

    background: white;

    color: var(--primary);

    font-weight: 700;

}


.btn-outline-white {

    padding:
        13px 25px;

    border-radius: 30px;

    border:
        1px solid rgba(255,255,255,.7);

    color: white;

    font-weight: 700;

}


.cta-visual {

    font-size: 190px;

    text-align: center;

    color:
        rgba(255,255,255,.92);

    animation:
        ctaFloat 4s
        ease-in-out infinite;

}



/* ==================================================
FOOTER
================================================== */

.footer {

    background: #05070d;

    color: white;

    padding:
        25px 0;

}


.footer-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.footer-brand {

    display: flex;

    gap: 7px;

    align-items: center;

}


.footer p {

    margin: 0;

    font-size: .75rem;

    color: #999;

}


.social-links {

    display: flex;

    gap: 10px;

}


.social-links a {

    width: 34px;

    height: 34px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: white;

    color: #111;

    border-radius: 50%;

}



/* ==================================================
WHATSAPP
================================================== */

.floating-whatsapp {

    position: fixed;

    right: 20px;

    bottom: 20px;

    width: 56px;

    height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 27px;

    z-index: 800;

    box-shadow:
        0 12px 30px rgba(0,0,0,.2);

    animation:
        whatsappPulse 2.4s infinite;

}



/* ==================================================
SCROLL ANIMATIONS
================================================== */

/*
Por defecto TODO es visible.
Así, aunque JS falle, la landing nunca queda en blanco.
*/

.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 1;
    transform: none;
}


/*
Las animaciones solamente se activan
cuando Javascript confirma que está funcionando.
*/

body.animations-ready .reveal-up,
body.animations-ready .reveal-left,
body.animations-ready .reveal-right {

    opacity: 0;

    transition:
        opacity .85s ease,
        transform .85s cubic-bezier(.16, 1, .3, 1);

}


body.animations-ready .reveal-up {
    transform: translateY(60px);
}


body.animations-ready .reveal-left {
    transform: translateX(-80px);
}


body.animations-ready .reveal-right {
    transform: translateX(80px);
}


/* ELEMENTO VISIBLE */

body.animations-ready .reveal-active {

    opacity: 1;

    transform: translate3d(0, 0, 0);

}

/* ==================================================
ANIMATIONS
================================================== */

@keyframes deviceFloat {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-14px);

    }

}


@keyframes floatingOne {

    0%,100% {

        transform:
            translate(0,0);

    }

    50% {

        transform:
            translate(8px,-14px);

    }

}


@keyframes floatingTwo {

    0%,100% {

        transform:
            translate(0,0);

    }

    50% {

        transform:
            translate(-10px,10px);

    }

}


@keyframes ctaFloat {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-15px);

    }

}


@keyframes whatsappPulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(37,211,102,.45);

    }

    70% {

        box-shadow:
            0 0 0 18px
            rgba(37,211,102,0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(37,211,102,0);

    }

}



/* ==================================================
TABLET
================================================== */

@media(max-width:991px) {

    .desktop-menu,
    .btn-header {

        display: none;

    }


    .mobile-menu-btn {

        display: block;

    }


    .hero {

        text-align: center;

        padding:
            130px 0 70px;

    }


    .hero-content {

        margin: auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-visual {

        margin-top: 60px;

    }


    .problem-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .features-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .solution-content {

        text-align: center;

    }


    .solution-flow {

        justify-content: center;

        margin-bottom: 50px;

    }


    .how-flow {

        flex-direction: column;

    }


    .how-arrow {

        transform:
            rotate(90deg);

    }


    .benefits-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .benefit {

        border-right: 0;

    }

}



/* ==================================================
MOBILE
================================================== */

@media(max-width:576px) {


    .container {

        padding-left: 20px;

        padding-right: 20px;

    }


    .header-content {

        height: 68px;

    }


    .hero {

        min-height: auto;

        padding-top: 110px;

    }


    .hero h1 {

        font-size: 3.15rem;

        letter-spacing: -2.8px;

    }


    .hero-subtitle {

        font-size: 1.12rem;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn-primary-custom,
    .btn-whatsapp {

        width: 100%;

    }


    /*
    MUCHO MOVIMIENTO EN CELULAR
    */

    .hero-visual {

        min-height: 400px;

    }


    .device-placeholder {

        width: 95%;

        animation:
            mobileDevice 3.3s
            ease-in-out infinite;

    }


    .floating-card-one {

        left: -8px;

        top: 30px;

        animation:
            mobileCardOne 2.8s
            ease-in-out infinite;

    }


    .floating-card-two {

        right: -8px;

        bottom: 25px;

        animation:
            mobileCardTwo 3s
            ease-in-out infinite;

    }


    .problem-grid {

        grid-template-columns:
            1fr;

    }


    .problem-card {

        display: flex;

        text-align: left;

        align-items: center;

        gap: 16px;

    }


    .problem-icon {

        margin: 0;

        flex:
            0 0 70px;

    }


    .problem-card p {

        margin-bottom: 0;

    }


    .solution-section {

        padding:
            70px 0;

    }


    .solution-content h2 {

        font-size: 2.7rem;

    }


    .solution-flow {

        gap: 10px;

    }


    .solution-flow div i {

        width: 48px;

        height: 48px;

    }


    .solution-screen {

        margin-top: 20px;

        animation:
            mobileScreen 3.5s
            ease-in-out infinite;

    }


    .features-grid {

        grid-template-columns:
            1fr;

    }


    .feature-card {

        animation:
            mobileFeatureFloat 4s
            ease-in-out infinite;

    }


    .feature-card:nth-child(even) {

        animation-delay:
            .5s;

    }


    .benefits-grid {

        grid-template-columns:
            1fr;

    }


    .benefit {

        padding:
            20px 10px;

        border-bottom:
            1px solid var(--border);

    }


    .price-card {

        padding:
            35px 24px;

    }


    .price-features {

        grid-template-columns:
            1fr;

    }


    .final-cta {

        text-align: center;

    }


    .final-buttons {

        flex-direction: column;

    }


    .btn-white,
    .btn-outline-white {

        width: 100%;

    }


    .cta-visual {

        font-size: 110px;

        margin-top: 35px;

    }


    .footer-content {

        flex-direction: column;

        gap: 17px;

        text-align: center;

    }

    .hero-visual {
        min-height: 390px;
        margin-top: 35px;
    }


    .hero-main-image {
        position: relative;
        z-index: 2;

        /* MÁS GRANDE */
        width: 125%;
        max-width: 760px;

        height: auto;
        object-fit: contain;

        filter:
            drop-shadow(
                0 30px 35px rgba(15, 35, 80, .25)
            );

        animation:
            heroImageFloat 5s ease-in-out infinite;

        transition:
            transform .4s ease;
    }


    .hero-image-glow {
        width: 330px;
        height: 280px;
    }


    @keyframes heroImageMobile {

        0%,
        100% {
            transform:
                translateY(0)
                rotate(-1deg);
        }

        50% {
            transform:
                translateY(-16px)
                rotate(1deg);
        }

    }

    .solution-visual {
        min-height: 300px;

        margin-top: 35px;
    }


    .solution-image {
        width: 125%;
        max-width: none;

        animation:
            solutionLaptopMobile 3.2s
            ease-in-out infinite;
    }


    @keyframes solutionLaptopMobile {

        0%,
        100% {
            transform:
                translateY(0)
                rotate(-1deg);
        }

        50% {
            transform:
                translateY(-15px)
                rotate(1deg);
        }

    }

}


/* ANIMACIONES MOBILE */

@keyframes mobileDevice {

    0%,100% {

        transform:
            translateY(0)
            rotate(-1deg);

    }

    50% {

        transform:
            translateY(-16px)
            rotate(1deg);

    }

}


@keyframes mobileCardOne {

    0%,100% {

        transform:
            translate(0,0)
            rotate(-2deg);

    }

    50% {

        transform:
            translate(13px,-16px)
            rotate(2deg);

    }

}


@keyframes mobileCardTwo {

    0%,100% {

        transform:
            translate(0,0)
            rotate(2deg);

    }

    50% {

        transform:
            translate(-12px,14px)
            rotate(-2deg);

    }

}


@keyframes mobileScreen {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}


@keyframes mobileFeatureFloat {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-6px);

    }

}


/*
ACCESIBILIDAD:
si el usuario desactiva animaciones
en su dispositivo, las respetamos.
*/

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }

}

/* ==================================================
IMAGEN HERO REAL
================================================== */

.hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* permite que la imagen sobresalga de su columna */
    overflow: visible;
}


.hero-image-glow {
    position: absolute;

    width: 470px;
    height: 370px;

    background:
        radial-gradient(
            circle,
            rgba(7, 84, 248, .20),
            rgba(7, 84, 248, 0) 70%
        );

    filter: blur(20px);

    z-index: 0;
}


.hero-main-image {
    position: relative;

    z-index: 2;

    width: 140%;
    max-width: 620px;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 30px 35px rgba(15, 35, 80, .25)
        );

    animation:
        heroImageFloat 5s ease-in-out infinite;

    transition:
        transform .4s ease;
}


.hero-main-image:hover {
    transform:
        scale(1.025);
}


/* MOVIMIENTO DE LA IMAGEN */

@keyframes heroImageFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-14px)
            rotate(.4deg);
    }

}

/* ==========================================
   IMAGEN CTA FINAL
========================================== */

.cta-visual {
    position: relative;
    width: 100%;
    min-height: 310px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: visible;
}

.cta-system-image {
    display: block;

    width: 200%;
    max-width: 1500px;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 30px rgba(0, 20, 80, .28));

    animation:
        ctaSystemFloat 4s ease-in-out infinite;
}

@keyframes ctaSystemFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.cta-section h2 {
    margin: 12px 0 15px;

    font-size: clamp(2.3rem, 3.3vw, 3.7rem);
    font-weight: 900;
    line-height: .95;

    letter-spacing: -1.5px;

    color: #fff;
}

.cta-eyebrow {
    display: block;

    font-size: .78rem;
    font-weight: 800;

    color: #fff;

    text-transform: uppercase;
}

.cta-section p {
    max-width: 500px;

    margin-bottom: 24px;

    font-size: .95rem;
    line-height: 1.55;

    color: rgba(255,255,255,.92);
}

.navbar-logo {
    display: block;
    width: auto;
    height: 100px;
    object-fit: contain;
}

@media (max-width: 767px) {

    .navbar-logo {
        height: 36px;
        max-width: 165px;
    }

}

.how-logo-img {
    display: block;

    width: 108px;
    height: 108px;

    object-fit: contain;
}