/* ==========================
   SPLASH SCREEN
========================== */

.splash {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #dedede;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.splash::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.25) 1px, transparent 1px);
    background-size: 30px 30px;
}

.splash::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 55% 55% at 50% 48%,
            rgba(255,255,255,.3) 0%,
            transparent 65%
        );
}

.logo-wrap {
    position: relative;
    width: 520px;
    height: 520px;
    z-index: 10;
}

.piece {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.piece-k {
    opacity: 0;
    animation:
        slideFromLeft .9s cubic-bezier(.16,1,.3,1) forwards;
    animation-delay: .3s;
}

.piece-p {
    opacity: 0;
    animation:
        slideFromRight .9s cubic-bezier(.16,1,.3,1) forwards;
    animation-delay: .6s;
}

.piece-sol {
    opacity: 0;
    animation:
        slideFromBottom .9s cubic-bezier(.16,1,.3,1) forwards;
    animation-delay: .9s;
}

@keyframes slideFromLeft {

    0% {
        transform: translateX(-150vw);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {

    0% {
        transform: translateX(150vw);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromBottom {

    0% {
        transform: translateY(150vh);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.flash {
    position: absolute;
    inset: 0;
    z-index: 5;

    background:
        radial-gradient(
            ellipse 60% 60% at 50% 48%,
            rgba(255,255,255,.5) 0%,
            transparent 70%
        );

    opacity: 0;

    animation:
        flashPulse .6s ease forwards;

    animation-delay: 1.6s;
}

@keyframes flashPulse {

    0% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.splash.fade-out {
    animation: fadeOutPage .8s ease forwards;
}

@keyframes fadeOutPage {

    from {
        opacity: 1;
        filter: blur(0px);
    }

    to {
        opacity: 0;
        filter: blur(12px);
    }
}

.icon img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.system-item {
    position: relative;
    overflow: hidden;
    height: 82px;
    cursor: pointer;
}

.system-item strong {
    position: relative;
    z-index: 2;
    transition: .35s ease;
}

.system-item img {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%) scale(.6);
    max-width: 120px;
    max-height: 55px;
    object-fit: contain;
    opacity: 0;
    z-index: 3;
    transition: .35s ease;
}

.system-item:hover strong {
    opacity: 0;
    transform: translateY(-20px);
}

.system-item:hover img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.82);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.image-modal.active {
    display: flex;
}

.image-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: imageZoom .45s ease forwards;
}

.image-modal-close {
    position: fixed;
    top: 25px;
    right: 35px;
    background: white;
    color: black;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    z-index: 1000000;
}

@keyframes imageZoom {
    from {
        opacity: 0;
        transform: scale(.6) rotate(-3deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}



/* ==========================
   estilos pagina
========================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --naranja: #ff8a00;
    --naranja-hover: #e87900;
    --azul: #0789c2;
    --texto: #3f4245;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--texto);
    background: #f3f3f3;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Encabezado */

.encabezado {
    height: 90px;
    background: #ffffff;
    border-bottom: 1px solid #e8edf1;
    box-shadow: 0 3px 14px rgba(20, 32, 45, 0.06);
}

.encabezado-contenido {
    width: min(1500px, calc(100% - 50px));
    height: 100%;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* Logo izquierdo */

.logo {
    justify-self: start;
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: auto;
    height: 58px;
}

/* Centro del encabezado */

.menu-central {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Botón Nosotros */

.boton-nosotros {
    min-width: 145px;
    min-height: 46px;
    padding: 11px 22px;

    border: 1px solid rgba(0, 151, 220, 0.25);
    border-radius: 999px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: #087fb8;
    background:
        linear-gradient(
            135deg,
            #eef9ff 0%,
            #ffffff 100%
        );

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    box-shadow:
        0 6px 18px rgba(0, 142, 205, 0.12);

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.boton-nosotros i {
    font-size: 16px;
}

/* Efecto al pasar el cursor */

.boton-nosotros:hover {
    color: #ffffff;
    border-color: #0799dc;

    background:
        linear-gradient(
            135deg,
            #08aceb 0%,
            #087fc1 100%
        );

    transform: translateY(-2px);

    box-shadow:
        0 10px 23px rgba(0, 142, 205, 0.25);
}

/* Efecto al presionar */

.boton-nosotros:active {
    transform: translateY(0);
}

/* Accesibilidad al navegar con teclado */

.boton-nosotros:focus-visible {
    outline: 3px solid rgba(8, 172, 235, 0.25);
    outline-offset: 4px;
}

/* Ventas lado derecho */

.ventas {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 5px;

    color: #333333;
    font-size: 17px;
}

.ventas a {
    color: #078fd4;
    font-weight: 700;
    text-decoration: none;
}


/* Presentación superior */

.presentacion {
    min-height: 150px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7f8fa 100%
        );
    text-align: center;
}

.etiqueta-presentacion {
    margin-bottom: 8px;
    color: #0789c2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.presentacion h1 {
    margin: 0 0 10px;
    color: #252b33;
    font-size: clamp(27px, 2.4vw, 38px);
    font-weight: 600;
    line-height: 1.2;
}

.presentacion p {
    margin: 0;
    color: #69717a;
    font-size: 17px;
    line-height: 1.5;
}


/* Contenedor compartido */

.contenedor-paneles {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: calc(100vh - 218px);
    overflow: hidden;

    background:
        radial-gradient(
            circle at 26% 45%,
            rgba(255, 122, 33, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 76% 45%,
            rgba(0, 181, 255, 0.18),
            transparent 30%
        ),
        linear-gradient(
            90deg,
            #59416f 0%,
            #72506f 20%,
            #9e5d65 40%,
            #825966 50%,
            #315b77 60%,
            #09668f 78%,
            #0ba7e4 100%
        );
}

.contenedor-paneles::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.025) 0,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 5px
        );

    opacity: 0.7;
}


/* Cada opción */

.panel {
    position: relative;
    z-index: 1;
    min-height: 430px;
    padding: 55px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.panel-soft-restaurant,
.panel-siigo-aspel {
    background: transparent;
}

.contenido-panel {
    width: 100%;
    max-width: 650px;
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* Contenedor de logotipos */

.contenedor-logo-marca {
    width: min(510px, 92%);
    height: 150px;
    margin-bottom: 26px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(244, 249, 252, 0.95)
        );

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.panel:hover .contenedor-logo-marca {
    transform: translateY(-5px);
    box-shadow:
        0 20px 42px rgba(0, 0, 0, 0.28);
}

.logo-marca {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Descripción */

.descripcion-marca,
.contenido-panel p {
    max-width: 610px;
    min-height: 58px;
    margin: 0 0 27px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;

    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.35);
}


/* Botones */

.botones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.boton {
    min-width: 155px;
    min-height: 52px;
    padding: 13px 22px;

    border: 1px solid transparent;
    border-radius: 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    font-weight: 700;
    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.boton:hover {
    transform: translateY(-3px);
    box-shadow:
        0 9px 20px rgba(0, 0, 0, 0.27);
}

.boton-naranja {
    color: #ffffff;
    background: #ff7900;
}

.boton-naranja:hover {
    background: #e56800;
}

.boton-azul {
    color: #ffffff;
    background: #00a8e8;
}

.boton-azul:hover {
    background: #008fc7;
}

.boton-blanco {
    color: #252525;
    background: #ffffff;
}

.boton-blanco:hover {
    background: #f0f2f4;
}

/* Laptop */

.laptop {
    position: absolute;
    left: 50%;
    bottom: 19px;
    width: 235px;
    height: 168px;
    transform: translateX(-50%);
}

.pantalla-laptop {
    position: absolute;
    top: 0;
    left: 25px;
    width: 185px;
    height: 115px;
    padding: 8px;
    border: 6px solid #252525;
    border-radius: 6px 6px 2px 2px;
    background: #d8e7ef;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.pantalla-contenido {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            #1a6288 0 30%,
            #f1f5f7 30% 100%
        );
}

.panel-pequeno .pantalla-contenido {
    position: relative;
    background:
        linear-gradient(
            135deg,
            #d5e2e8,
            #ffffff
        );
}

.panel-pequeno .pantalla-contenido::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 17px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 50% 35%,
            #f0bf9c 0 18%,
            #56331e 19% 35%,
            #dc9c72 36% 48%,
            #183c51 49% 100%
        );
}

.panel-pequeno .pantalla-contenido::after {
    content: "";
    position: absolute;
    top: 25px;
    right: 12px;
    width: 55px;
    height: 8px;
    border-radius: 10px;
    background: #79a6bd;
    box-shadow:
        0 18px 0 #cbd9df,
        0 36px 0 #e19b59;
}

.base-laptop {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 235px;
    height: 57px;
    border-radius: 3px 3px 12px 12px;
    background:
        linear-gradient(
            145deg,
            #d8dadd,
            #a8adb2
        );
    clip-path: polygon(
        10% 0,
        90% 0,
        100% 100%,
        0 100%
    );
    box-shadow: 0 8px 11px rgba(0, 0, 0, 0.3);
}

.teclado {
    position: absolute;
    top: 8px;
    left: 29px;
    width: 177px;
    height: 29px;
    opacity: 0.85;
    background:
        repeating-linear-gradient(
            90deg,
            #202020 0 8px,
            transparent 8px 11px
        ),
        repeating-linear-gradient(
            0deg,
            #202020 0 6px,
            transparent 6px 9px
        );
}

.trackpad {
    position: absolute;
    left: 86px;
    bottom: 5px;
    width: 65px;
    height: 16px;
    border: 1px solid #8c8f92;
    border-radius: 2px;
}

@media (max-width: 800px) {
    .encabezado-contenido {
        width: calc(100% - 30px);
    }

    .contenedor-paneles {
        grid-template-columns: 1fr;
        min-height: auto;

        background:
            linear-gradient(
                180deg,
                #644573 0%,
                #995d65 43%,
                #285e7c 58%,
                #0b9fd9 100%
            );
    }

    .panel {
        min-height: 430px;
        padding: 45px 20px;
    }

    .contenedor-logo-marca {
        height: 130px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 38px;
    }

    .ventas {
        font-size: 13px;
    }

    .presentacion {
        min-height: 145px;
        padding: 25px 18px;
    }

    .presentacion h1 {
        font-size: 26px;
    }

    .presentacion p {
        font-size: 15px;
    }

    .contenedor-logo-marca {
        width: 100%;
        height: 110px;
        padding: 20px;
    }

    .descripcion-marca,
    .contenido-panel p {
        font-size: 15px;
    }

    .botones {
        width: 100%;
        gap: 10px;
    }

    .boton {
        flex: 1;
        min-width: 0;
        padding: 12px 10px;
        font-size: 13px;
    }
}

/* Tablet */

.tablet {
    position: absolute;
    right: 7%;
    bottom: 38px;
    width: 115px;
    height: 150px;
    padding: 7px;
    border: 6px solid #1d1f20;
    border-radius: 7px;
    transform: rotate(9deg);
    background: #242424;
    box-shadow: 0 9px 14px rgba(0, 0, 0, 0.35);
}

.pantalla-tablet {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 20px 20px,
            #8ac4df 0 5px,
            transparent 6px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0 24px,
            #d4e1e8 24px 25px
        ),
        #f5f8f9;
}

/* Teléfono de oficina */

.telefono-oficina {
    position: absolute;
    left: 5%;
    bottom: 22px;
    width: 112px;
    height: 180px;
    transform: rotate(-23deg);
}

.auricular {
    position: absolute;
    top: 0;
    left: 30px;
    width: 48px;
    height: 145px;
    border-radius: 18px;
    background:
        linear-gradient(
            to right,
            #283037,
            #14181b
        );
}

.base-telefono {
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 80px;
    height: 105px;
    border-radius: 6px;
    background: #151b20;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.4);
}

.pantalla-oficina {
    width: 52px;
    height: 33px;
    margin: 10px auto;
    border-radius: 2px;
    background: #2c839a;
}

.teclas-oficina {
    width: 54px;
    height: 45px;
    margin: 5px auto;
    background:
        radial-gradient(
            circle,
            #00a8c6 0 3px,
            transparent 4px
        );
    background-size: 18px 15px;
}

/* Brazos */

.brazo {
    position: absolute;
    z-index: 2;
    bottom: -90px;
    width: 62px;
    height: 235px;
    border-radius: 40px;
    transform-origin: bottom center;
}

.brazo-izquierdo {
    left: 37%;
    transform: rotate(-18deg);
    background:
        linear-gradient(
            to top,
            #df9d72 0 70%,
            #efb68d 70% 100%
        );
}

.brazo-derecho {
    right: 32%;
    transform: rotate(15deg);
    background:
        linear-gradient(
            to top,
            #d99265 0 70%,
            #efb68d 70% 100%
        );
}

.panel-empresa .brazo {
    background:
        linear-gradient(
            to top,
            #14293b 0 65%,
            #ffffff 65% 70%,
            #dca17d 70% 100%
        );
}

.panel-empresa .brazo-izquierdo {
    left: 32%;
    transform: rotate(-27deg);
}

.panel-empresa .brazo-derecho {
    right: 29%;
    transform: rotate(20deg);
}

/* Objetos decorativos */

.regla {
    position: absolute;
    right: 12%;
    bottom: 38px;
    width: 100px;
    height: 14px;
    transform: rotate(30deg);
    background: rgba(219, 190, 151, 0.85);
}

.lapiz {
    position: absolute;
    right: 17%;
    bottom: 4px;
    width: 15px;
    height: 110px;
    transform: rotate(18deg);
    background:
        linear-gradient(
            to bottom,
            #262626 0 9%,
            #e5b300 9% 91%,
            #d79e73 91% 100%
        );
}

/* Notificación */

.notificacion {
    position: fixed;
    left: 50%;
    bottom: 25px;
    z-index: 20;
    padding: 12px 18px;
    border-radius: 5px;
    color: #ffffff;
    background: rgba(25, 29, 32, 0.94);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 20px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.notificacion.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Diseño adaptable */

@media (max-width: 800px) {
    .encabezado {
        height: auto;
    }

    .encabezado-contenido {
        min-height: 70px;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .contenedor-paneles {
        grid-template-columns: 1fr;
    }

    .panel {
        min-height: 520px;
    }

    .presentacion {
        min-height: 125px;
    }

    .laptop {
        transform: translateX(-50%) scale(1.05);
    }
}

@media (max-width: 480px) {
    .encabezado-contenido {
        width: calc(100% - 24px);
    }

    .logo {
        font-size: 17px;
    }

    .ventas {
        font-size: 12px;
    }

    .ventas span {
        display: none;
    }

    .menu {
        gap: 18px;
    }

    .menu a {
        font-size: 10px;
    }

    .presentacion h1 {
        font-size: 20px;
    }

    .contenido-panel {
        padding-inline: 12px;
    }

    .contenido-panel p {
        font-size: 14px;
    }

    .botones {
        gap: 9px;
    }

    .boton {
        min-width: 103px;
        padding: 11px 13px;
    }

    .tablet {
        right: 2%;
        transform: rotate(9deg) scale(0.8);
    }

    .telefono-oficina {
        left: -4%;
        transform: rotate(-23deg) scale(0.8);
    }
}


@media (max-width: 800px) {
    .contenedor-paneles {
        grid-template-columns: 1fr;
    }

    .panel,
    .contenido-panel {
        min-height: 390px;
    }

    .contenedor-logo-marca {
        width: min(390px, 92%);
        height: 115px;
    }
}

@media (max-width: 480px) {
    .contenido-panel {
        padding: 35px 16px;
    }

    .contenedor-logo-marca {
        height: 100px;
        padding: 16px 20px;
    }

    .contenido-panel p {
        font-size: 15px;
    }

    .botones {
        width: 100%;
        gap: 10px;
    }

    .boton {
        flex: 1;
        min-width: 0;
        padding: 12px 10px;
        font-size: 13px;
    }
}

.presentacion {
    min-height: 135px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    text-align: center;
}

.presentacion h1 {
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 400;
    color: #333333;
}

.presentacion p {
    margin: 0;
    font-size: 17px;
    color: #666666;
}

/* =========================================
   MODAL CONOCER MÁS
========================================= */

.modal-soft {
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(25, 20, 29, 0.78);
    backdrop-filter: blur(7px);
}

.modal-soft.visible {
    display: flex;
}

.modal-soft-contenido {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 40px);
    padding: 42px;
    overflow-y: auto;
    border-radius: 24px;
    color: #292d33;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #fff8f3 60%,
            #f8f3fa 100%
        );
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    animation: aparecerModalSoft 0.25s ease;
}

.cerrar-modal-soft {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #4b4f54;
    background: #f0f1f3;
    font-size: 18px;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.cerrar-modal-soft:hover {
    color: #ffffff;
    background: #f36c16;
    transform: rotate(90deg);
}

.modal-soft-logo {
    width: min(390px, calc(100% - 50px));
    height: 105px;
    margin: 0 auto 25px;
    padding: 15px 25px;
    border: 1px solid #e8e9ec;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.modal-soft-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-soft-etiqueta {
    display: block;
    margin-bottom: 8px;
    color: #f36c16;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
}

.modal-soft-contenido > h2 {
    max-width: 580px;
    margin: 0 auto 13px;
    color: #292c32;
    font-size: clamp(27px, 4vw, 38px);
    line-height: 1.2;
    text-align: center;
}

.modal-soft-descripcion {
    max-width: 590px;
    margin: 0 auto 30px;
    color: #69717a;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.beneficios-soft {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.beneficio-soft {
    min-height: 105px;
    padding: 18px;
    border: 1px solid #e6e8eb;
    border-radius: 14px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: #ffffff;
}

.beneficio-soft-icono {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #f36c16;
    background: rgba(243, 108, 22, 0.12);
    font-size: 18px;
}

.beneficio-soft h3 {
    margin: 2px 0 5px;
    color: #30343a;
    font-size: 16px;
}

.beneficio-soft p {
    margin: 0;
    color: #69717a;
    font-size: 13px;
    line-height: 1.45;
}

.modal-soft-botones {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 13px;
}

.modal-soft-principal,
.modal-soft-secundario {
    min-height: 50px;
    padding: 13px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.modal-soft-principal {
    border: 1px solid #f36c16;
    color: #ffffff;
    background: #f36c16;
    box-shadow: 0 7px 18px rgba(243, 108, 22, 0.24);
}

.modal-soft-secundario {
    border: 1px solid #d8dce1;
    color: #30343a;
    background: #ffffff;
}

.modal-soft-principal:hover,
.modal-soft-secundario:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(36, 40, 45, 0.18);
}

body.modal-soft-abierto {
    overflow: hidden;
}

@keyframes aparecerModalSoft {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 600px) {
    .modal-soft {
        padding: 14px;
    }

    .modal-soft-contenido {
        padding: 35px 20px 25px;
    }

    .beneficios-soft {
        grid-template-columns: 1fr;
    }

    .modal-soft-botones {
        flex-direction: column;
    }

    .modal-soft-principal,
    .modal-soft-secundario {
        width: 100%;
    }
}


/* =========================================
   MODAL CONOCER MÁS SIIGO ASPEL
========================================= */

.modal-aspel {
    position: fixed;
    inset: 0;
    z-index: 1000;
    padding: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(5, 23, 54, 0.82);
    backdrop-filter: blur(7px);
}

.modal-aspel.visible {
    display: flex;
}

.modal-aspel-contenido {
    position: relative;
    width: min(760px, 100%);
    max-height: calc(100vh - 40px);
    padding: 42px;
    overflow-y: auto;
    border-radius: 24px;
    color: #252c35;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f9ff 65%,
            #edf5ff 100%
        );
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    animation: mostrarModalAspel 0.25s ease;
}

.cerrar-modal-aspel {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #424b55;
    background: #edf1f6;
    font-size: 18px;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.cerrar-modal-aspel:hover {
    color: #ffffff;
    background: #1264d6;
    transform: rotate(90deg);
}

.modal-aspel-logo {
    width: min(390px, calc(100% - 50px));
    height: 110px;
    margin: 0 auto 24px;
    padding: 17px 27px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.modal-aspel-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-aspel-etiqueta {
    display: block;
    margin-bottom: 8px;
    color: #1264d6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
}

.modal-aspel-contenido > h2 {
    max-width: 620px;
    margin: 0 auto 13px;
    color: #222a34;
    font-size: clamp(28px, 4vw, 39px);
    line-height: 1.2;
    text-align: center;
}

.modal-aspel-descripcion {
    max-width: 610px;
    margin: 0 auto 30px;
    color: #657181;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.areas-aspel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.area-aspel {
    min-height: 108px;
    padding: 18px;
    border: 1px solid #e1e7ef;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: #ffffff;
    box-shadow: 0 7px 20px rgba(20, 48, 88, 0.05);
}

.area-aspel-icono {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #1264d6;
    background: rgba(18, 100, 214, 0.11);
    font-size: 18px;
}

.area-aspel h3 {
    margin: 2px 0 5px;
    color: #28313b;
    font-size: 16px;
}

.area-aspel p {
    margin: 0;
    color: #697483;
    font-size: 13px;
    line-height: 1.45;
}

.beneficios-aspel {
    margin-top: 23px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.beneficios-aspel span {
    padding: 9px 13px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #284971;
    background: #e9f2ff;
    font-size: 13px;
    font-weight: 700;
}

.beneficios-aspel i {
    color: #1264d6;
}

.modal-aspel-botones {
    margin-top: 29px;
    display: flex;
    justify-content: center;
    gap: 13px;
}

.modal-aspel-principal,
.modal-aspel-secundario {
    min-height: 51px;
    padding: 13px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.modal-aspel-principal {
    border: 1px solid #1264d6;
    color: #ffffff;
    background: #1264d6;
    box-shadow: 0 8px 20px rgba(18, 100, 214, 0.24);
}

.modal-aspel-secundario {
    border: 1px solid #d5dce5;
    color: #303945;
    background: #ffffff;
}

.modal-aspel-principal:hover,
.modal-aspel-secundario:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(28, 42, 61, 0.18);
}

body.modal-aspel-abierto {
    overflow: hidden;
}

@keyframes mostrarModalAspel {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 620px) {
    .modal-aspel {
        padding: 13px;
    }

    .modal-aspel-contenido {
        padding: 36px 20px 25px;
    }

    .areas-aspel {
        grid-template-columns: 1fr;
    }

    .modal-aspel-botones {
        flex-direction: column;
    }

    .modal-aspel-principal,
    .modal-aspel-secundario {
        width: 100%;
    }
}


@media (max-width: 650px) {
    .encabezado {
        height: auto;
    }

    .encabezado-contenido {
        width: calc(100% - 24px);
        min-height: 80px;
        padding: 10px 0;

        grid-template-columns: auto 1fr;
        gap: 10px;
    }

    .logo img {
        height: 45px;
    }

    .menu-central {
        justify-self: end;
    }

    .boton-nosotros {
        min-width: auto;
        min-height: 41px;
        padding: 9px 15px;
        font-size: 13px;
    }

    .ventas {
        grid-column: 1 / -1;
        justify-self: center;
        padding-bottom: 4px;
        font-size: 13px;
    }
}

.modal-redes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100000;
    padding: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(25, 20, 29, 0.78);
    backdrop-filter: blur(7px);
}

.modal-redes.visible {
    display: flex;
}
.modal-redes-contenido {
    position: relative;
    width: min(420px, 100%);
    padding: 40px 35px;
    text-align: center;
    border-radius: 24px;
    color: #292d33;
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f9ff 65%,
            #edf5ff 100%
        );
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    animation: aparecerModalRedes 0.25s ease;
}

.cerrar-modal-redes {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #4b4f54;
    background: #f0f1f3;
    font-size: 18px;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.cerrar-modal-redes:hover {
    color: #ffffff;
    background: #1264d6;
    transform: rotate(90deg);
}

.modal-redes-contenido h2 {
    margin: 0 0 24px;
    color: #222a34;
    font-size: clamp(20px, 3vw, 24px);
    line-height: 1.3;
}

.redes-sociales {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.redes-sociales a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border: 1px solid #e1e7ef;
    border-radius: 12px;
    color: #292d33;
    font-weight: 700;
    font-size: 15px;
    background: #ffffff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.redes-sociales a:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(20, 48, 88, 0.12);
    border-color: #1264d6;
}

.redes-sociales i {
    width: 22px;
    font-size: 19px;
    color: #1264d6;
}

body.modal-redes-abierto {
    overflow: hidden;
}

@keyframes aparecerModalRedes {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 480px) {
    .modal-redes {
        padding: 16px;
    }

    .modal-redes-contenido {
        padding: 30px 22px;
    }
}