:root {
    --fondo: #081225;
    --fondo-secundario: #0f1e38;
    --azul: #2563eb;
    --azul-claro: #4f8cff;
    --celeste: #23c4ff;
    --verde: #25d366;
    --texto: #10203a;
    --texto-suave: #5f6f85;
    --blanco: #ffffff;
    --gris-claro: #f3f6fb;
    --borde: #dce4ef;
    --sombra: 0 24px 70px rgba(8, 18, 37, .14);
    --radio: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--texto);
    background: var(--blanco);
    line-height: 1.6;
}

body.menu-abierto {
    overflow: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.contenedor {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.encabezado {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 18, 37, .86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.barra-navegacion {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.marca {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--blanco);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.4px;
    white-space: nowrap;
}

.marca-icono {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--azul-claro), var(--celeste));
    box-shadow: 0 10px 25px rgba(35,196,255,.22);
}

.menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    font-weight: 700;
    transition: .25s ease;
}

.menu a:hover {
    color: var(--blanco);
}

.boton {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.boton:hover {
    transform: translateY(-2px);
}

.boton-ingresar {
    min-height: 42px;
    padding: 0 19px;
    color: var(--blanco);
    border: 1px solid rgba(255,255,255,.28);
    font-size: 14px;
}

.boton-ingresar:hover {
    background: rgba(255,255,255,.1);
}

.boton-principal {
    color: var(--blanco);
    background: linear-gradient(135deg, var(--azul), var(--azul-claro));
    box-shadow: 0 16px 34px rgba(37,99,235,.28);
}

.boton-secundario {
    color: var(--blanco);
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.06);
}

.boton-blanco {
    color: var(--azul);
    background: var(--blanco);
    box-shadow: 0 16px 35px rgba(0,0,0,.12);
    white-space: nowrap;
}

.boton-menu {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.boton-menu span {
    width: 24px;
    height: 2px;
    margin: 5px auto;
    display: block;
    background: var(--blanco);
    transition: .25s ease;
}

.hero {
    position: relative;
    min-height: 780px;
    padding: 150px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 24%, rgba(35,196,255,.18), transparent 31%),
        radial-gradient(circle at 15% 18%, rgba(79,140,255,.19), transparent 28%),
        linear-gradient(145deg, #07101f, #0a1930 58%, #0c2344);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    background: linear-gradient(to bottom right, transparent 49%, #fff 50%);
    opacity: .045;
}

.hero-contenido {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 72px;
}

.etiqueta,
.subtitulo {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--azul-claro);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 720px;
    color: var(--blanco);
    font-size: clamp(46px, 6vw, 74px);
    line-height: 1.04;
    letter-spacing: -3px;
}

.hero-texto > p {
    max-width: 670px;
    margin-top: 25px;
    color: rgba(255,255,255,.74);
    font-size: 19px;
}

.hero-acciones {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-datos {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hero-datos div {
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.14);
}

.hero-datos strong,
.hero-datos span {
    display: block;
}

.hero-datos strong {
    color: var(--blanco);
    font-size: 16px;
}

.hero-datos span {
    margin-top: 3px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
}

.hero-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pantalla-demo {
    width: 100%;
    max-width: 520px;
    padding: 9px;
    border-radius: 25px;
    background: #030912;
    box-shadow: 0 40px 80px rgba(0,0,0,.42);
    transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);
}

.pantalla-barra {
    height: 28px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #111b2d;
    border-radius: 16px 16px 0 0;
}

.pantalla-barra span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.24);
}

.pantalla-contenido {
    min-height: 330px;
    display: grid;
    place-items: center;
    padding: 30px;
    border-radius: 0 0 17px 17px;
    background:
        linear-gradient(rgba(7,16,31,.15), rgba(7,16,31,.15)),
        linear-gradient(135deg, #2b62ff, #13c8ff);
}

.pantalla-promocion {
    text-align: center;
    color: var(--blanco);
}

.pantalla-promocion small,
.pantalla-promocion strong,
.pantalla-promocion span {
    display: block;
}

.pantalla-promocion small {
    margin-bottom: 18px;
    font-weight: 900;
    letter-spacing: 2px;
}

.pantalla-promocion strong {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.pantalla-promocion span {
    margin-top: 20px;
    opacity: .82;
}

.celular-demo {
    position: absolute;
    left: -18px;
    bottom: 10px;
    width: 170px;
    padding: 7px;
    border-radius: 28px;
    background: #020711;
    box-shadow: 0 28px 60px rgba(0,0,0,.5);
    transform: rotate(-5deg);
}

.celular-camara {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 50%;
    width: 53px;
    height: 13px;
    border-radius: 10px;
    background: #030912;
    transform: translateX(-50%);
}

.celular-pantalla {
    min-height: 315px;
    padding: 38px 13px 15px;
    border-radius: 22px;
    background: #eef4ff;
}

.mini-titulo {
    display: block;
    margin-bottom: 16px;
    color: #13233e;
    font-size: 13px;
    font-weight: 900;
}

.mini-tarjeta {
    height: 82px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--azul), var(--celeste));
}

.mini-tarjeta.corta {
    height: 52px;
    background: #d7e2f3;
}

.mini-boton {
    margin-top: 18px;
    padding: 9px;
    border-radius: 10px;
    color: var(--blanco);
    background: var(--azul);
    text-align: center;
    font-size: 11px;
    font-weight: 900;
}

.estado-flotante {
    position: absolute;
    top: 38px;
    right: -22px;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 14px;
    color: #dce9ff;
    background: rgba(12,28,53,.92);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 20px 45px rgba(0,0,0,.24);
    font-size: 13px;
    font-weight: 800;
}

.punto-activo {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #31db7c;
    box-shadow: 0 0 0 6px rgba(49,219,124,.13);
}

.seccion {
    padding: 105px 0;
}

.seccion-clara {
    background: var(--blanco);
}

.seccion-suave {
    background: var(--gris-claro);
}

.seccion-oscura {
    color: var(--blanco);
    background:
        radial-gradient(circle at 85% 10%, rgba(35,196,255,.12), transparent 25%),
        var(--fondo);
}

.bloque-presentacion {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.bloque-presentacion h2,
.encabezado-seccion h2,
.beneficios h2,
.llamada-final h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.bloque-presentacion p {
    color: var(--texto-suave);
    font-size: 18px;
}

.encabezado-seccion {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.encabezado-seccion p {
    margin-top: 16px;
    color: var(--texto-suave);
    font-size: 17px;
}

.encabezado-claro p {
    color: rgba(255,255,255,.62);
}

.grilla-soluciones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tarjeta-solucion {
    position: relative;
    padding: 34px;
    border: 1px solid var(--borde);
    border-radius: var(--radio);
    background: var(--blanco);
    box-shadow: 0 12px 35px rgba(8,18,37,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.tarjeta-solucion:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra);
}

.tarjeta-solucion.destacada {
    color: var(--blanco);
    border-color: transparent;
    background: linear-gradient(155deg, #163f9e, #0c1c36);
}

.insignia {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 7px 10px;
    border-radius: 999px;
    color: #d7ecff;
    background: rgba(255,255,255,.1);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.icono-solucion {
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--azul);
    background: #eaf1ff;
    font-weight: 900;
}

.destacada .icono-solucion {
    color: var(--blanco);
    background: rgba(255,255,255,.12);
}

.tarjeta-solucion h3 {
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 1.2;
}

.tarjeta-solucion p {
    min-height: 120px;
    color: var(--texto-suave);
}

.destacada p,
.destacada li {
    color: rgba(255,255,255,.68);
}

.tarjeta-solucion ul {
    margin: 23px 0;
    list-style: none;
}

.tarjeta-solucion li {
    position: relative;
    margin: 10px 0;
    padding-left: 22px;
    color: #43526a;
    font-size: 14px;
}

.tarjeta-solucion li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--azul);
    font-weight: 900;
}

.destacada li::before {
    color: var(--celeste);
}

.tarjeta-solucion a {
    color: var(--azul);
    font-weight: 900;
    font-size: 14px;
}

.destacada a {
    color: #7bdcff;
}

.pasos {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.paso {
    padding: 31px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    background: rgba(255,255,255,.04);
}

.paso > span {
    width: 44px;
    height: 44px;
    margin-bottom: 25px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--celeste);
    background: rgba(35,196,255,.1);
    font-weight: 900;
}

.paso h3 {
    margin-bottom: 10px;
    font-size: 19px;
}

.paso p {
    color: rgba(255,255,255,.58);
    font-size: 14px;
}

.grilla-usos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.grilla-usos article {
    min-height: 180px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 20px;
    color: var(--blanco);
    background:
        linear-gradient(145deg, rgba(37,99,235,.88), rgba(8,18,37,.96)),
        var(--fondo);
    box-shadow: 0 18px 35px rgba(8,18,37,.12);
}

.grilla-usos article:nth-child(even) {
    background:
        linear-gradient(145deg, rgba(8,18,37,.86), rgba(35,196,255,.78)),
        var(--fondo);
}

.grilla-usos span {
    font-size: 23px;
    font-weight: 900;
}

.grilla-usos p {
    margin-top: 5px;
    color: rgba(255,255,255,.66);
}

.beneficios {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 85px;
}

.beneficios-texto > p {
    margin: 22px 0 30px;
    color: var(--texto-suave);
    font-size: 17px;
}

.lista-beneficios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.lista-beneficios article {
    padding: 27px;
    border-radius: 20px;
    background: var(--blanco);
    border: 1px solid var(--borde);
}

.lista-beneficios strong {
    font-size: 17px;
}

.lista-beneficios p {
    margin-top: 8px;
    color: var(--texto-suave);
    font-size: 14px;
}

.acordeon {
    max-width: 860px;
    margin: 0 auto;
}

.pregunta {
    border-bottom: 1px solid var(--borde);
}

.pregunta button {
    width: 100%;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--texto);
    background: transparent;
    border: 0;
    text-align: left;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
}

.pregunta button span {
    color: var(--azul);
    font-size: 27px;
    font-weight: 400;
    transition: transform .25s ease;
}

.respuesta {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.respuesta p {
    padding: 0 45px 24px 0;
    color: var(--texto-suave);
}

.pregunta.abierta .respuesta {
    max-height: 240px;
}

.pregunta.abierta button span {
    transform: rotate(45deg);
}

.llamada-final {
    padding: 82px 0;
    color: var(--blanco);
    background:
        radial-gradient(circle at 82% 30%, rgba(35,196,255,.28), transparent 26%),
        linear-gradient(135deg, #1442b8, #0b2247);
}

.llamada-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.llamada-final .subtitulo {
    color: #bfeaff;
}

.llamada-final h2 {
    max-width: 780px;
}

.llamada-final p {
    margin-top: 12px;
    color: rgba(255,255,255,.65);
}

.pie {
    padding: 70px 0 26px;
    color: rgba(255,255,255,.68);
    background: #050b15;
}

.pie-contenido {
    display: grid;
    grid-template-columns: 1.4fr .7fr .7fr;
    gap: 55px;
}

.marca-pie {
    margin-bottom: 17px;
}

.pie p {
    max-width: 420px;
}

.pie-enlaces,
.pie-contacto {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.pie-enlaces a:hover,
.pie-contacto a:hover {
    color: var(--blanco);
}

.pie-contacto strong {
    color: var(--blanco);
}

.pie-inferior {
    margin-top: 45px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
}

.whatsapp-flotante {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    min-height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--blanco);
    background: var(--verde);
    box-shadow: 0 14px 35px rgba(37,211,102,.3);
    font-size: 14px;
    font-weight: 900;
}


/* ---------------------------------------------------------
   LOGO PAMPADISPLAY
--------------------------------------------------------- */
.marca-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 70px;
    overflow: hidden;
}

.logo-principal {
    display: block;
    width: auto;
    height: 58px;
    max-width: 220px;
    max-height: 58px;
    object-fit: contain;
    object-position: center;
}

.logo-pie {
    display: block;
    width: auto;
    height: 110px;
    max-width: 280px;
    max-height: 110px;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 560px) {
    .marca-logo {
        height: 58px;
    }

    .logo-principal {
        width: auto;
        height: 46px;
        max-width: 155px;
        max-height: 46px;
    }

    .logo-pie {
        width: auto;
        height: 85px;
        max-width: 220px;
        max-height: 85px;
    }
}

@media (max-width: 1050px) {
    .menu {
        gap: 17px;
    }

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

    .hero-contenido {
        gap: 35px;
    }

    .grilla-soluciones {
        grid-template-columns: 1fr;
    }

    .tarjeta-solucion p {
        min-height: auto;
    }

    .pasos {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 840px) {
    .barra-navegacion {
        min-height: 70px;
    }

    .boton-menu {
        display: block;
    }

    .menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        padding: 35px 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        background: rgba(5,11,21,.98);
        transform: translateX(100%);
        transition: transform .28s ease;
    }

    .menu.activo {
        transform: translateX(0);
    }

    .menu a {
        width: 100%;
        padding-bottom: 13px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 17px;
    }

    .boton-ingresar {
        margin-left: 0;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 75px;
    }

    .hero-contenido,
    .bloque-presentacion,
    .beneficios {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 30px;
    }

    .bloque-presentacion,
    .beneficios {
        gap: 35px;
    }

    .grilla-usos {
        grid-template-columns: 1fr 1fr;
    }

    .llamada-contenido {
        align-items: flex-start;
        flex-direction: column;
    }

    .pie-contenido {
        grid-template-columns: 1fr 1fr;
    }

    .pie-contenido > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .contenedor {
        width: min(100% - 28px, 1180px);
    }

    .marca-texto {
        font-size: 17px;
    }

    .boton-ingresar {
        min-height: 38px;
        padding: 0 13px;
        font-size: 12px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-texto > p {
        font-size: 17px;
    }

    .hero-acciones {
        flex-direction: column;
    }

    .hero-acciones .boton {
        width: 100%;
    }

    .hero-datos {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 400px;
    }

    .pantalla-promocion strong {
        font-size: 28px;
    }

    .pantalla-contenido {
        min-height: 265px;
    }

    .celular-demo {
        width: 135px;
        left: -5px;
    }

    .celular-pantalla {
        min-height: 250px;
    }

    .estado-flotante {
        top: 10px;
        right: 2px;
        font-size: 11px;
    }

    .seccion {
        padding: 75px 0;
    }

    .bloque-presentacion h2,
    .encabezado-seccion h2,
    .beneficios h2,
    .llamada-final h2 {
        font-size: 36px;
    }

    .pasos,
    .grilla-usos,
    .lista-beneficios,
    .pie-contenido {
        grid-template-columns: 1fr;
    }

    .pie-contenido > div:first-child {
        grid-column: auto;
    }

    .whatsapp-flotante {
        right: 14px;
        bottom: 14px;
    }
}
