/*==================================================
SGSNEST LANDING V2.0
==================================================*/

:root{

    --azul:#2563eb;
    --azul-hover:#1d4ed8;

    --verde:#22c55e;

    --morado:#7c3aed;

    --oscuro:#0f172a;

    --gris:#64748b;

    --fondo:#f7f9fc;

    --blanco:#ffffff;

    --borde:#e2e8f0;

    --radio:18px;

    --sombra:0 15px 40px rgba(15,23,42,.08);

    --transicion:.30s;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Segoe UI",Arial,sans-serif;

    background:var(--fondo);

    color:var(--oscuro);

    overflow-x:hidden;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;

}

.contenedor{

    width:min(1240px,92%);

    margin:auto;

}

/*==================================================
HEADER
==================================================*/

header{

    position:sticky;

    top:0;

    z-index:999;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(226,232,240,.7);

}

header .contenedor{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:18px;

    color:var(--oscuro);

}

.logo img{

    height:78px;

}

.logo h1{

    font-size:38px;

    color:var(--azul);

}

.logo p{

    color:var(--gris);

}

nav{

    display:flex;

    align-items:center;

    gap:30px;

}

nav a{

    color:var(--oscuro);

    font-weight:600;

    transition:var(--transicion);

}

nav a:hover{

    color:var(--azul);

}

.boton-menu{

    background:var(--azul);

    color:white;

    padding:14px 24px;

    border-radius:14px;

    display:flex;

    align-items:center;

    gap:10px;

}

.boton-menu:hover{

    background:var(--azul-hover);

    color:white;

}

/*==================================================
HERO
==================================================*/

.hero{

    padding:90px 0 70px;

    background:

    radial-gradient(circle at top right,#dbeafe 0%,transparent 45%),

    linear-gradient(#ffffff,#f7f9fc);

}

.hero-grid{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:60px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 20px;

    background:#e0ecff;

    color:var(--azul);

    border-radius:30px;

    font-weight:700;

    margin-bottom:30px;

}

.hero h2{

    font-size:68px;

    line-height:1.08;

    margin-bottom:30px;

    color:var(--oscuro);

}

.hero h2 span{

    color:var(--azul);

}

.hero p{

    font-size:22px;

    color:var(--gris);

    line-height:1.8;

    margin-bottom:45px;

    max-width:620px;

}

.hero-imagen{

    text-align:center;

}

.hero-imagen img{

    max-width:620px;

    animation:flotar 5s ease-in-out infinite;

}

@keyframes flotar{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

/*==================================================
BOTONES LANDING V2
==================================================*/

.botones{

    display:flex;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

.btn-verde{

    background:#16a34a;

    color:#fff;

    padding:18px 34px;

    border-radius:16px;

    font-size:18px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:12px;

    transition:.30s;

    box-shadow:0 10px 25px rgba(22,163,74,.35);

}

.btn-verde:hover{

    transform:translateY(-4px);

    background:#15803d;

    box-shadow:0 20px 40px rgba(22,163,74,.45);

}

.btn-blanco{

    background:#fff;

    color:#2563eb;

    border:2px solid #2563eb;

    padding:18px 34px;

    border-radius:16px;

    font-size:18px;

    font-weight:700;

    display:inline-flex;

    align-items:center;

    gap:12px;

    transition:.30s;

}

.btn-blanco:hover{

    background:#2563eb;

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(37,99,235,.30);

}

.hero-info{

    display:flex;

    gap:30px;

    margin-top:35px;

    font-size:17px;

    color:#334155;

    flex-wrap:wrap;

}

.hero-info div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.hero-info i{

    color:#16a34a;

}

/*==================================================
TARJETAS HOME
==================================================*/

.beneficios{

    margin-top:-60px;

    position:relative;

    z-index:20;

}

.tarjetas{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.tarjeta{

    background:#fff;

    border-radius:24px;

    padding:35px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.tarjeta:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.icono{

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:38px;

    margin-bottom:25px;

}

.azul{

    background:#2563eb;

}

.verde{

    background:#16a34a;

}

.morado{

    background:#7c3aed;

}

.tarjeta h3{

    font-size:30px;

    margin-bottom:18px;

    color:#0f172a;

}

.tarjeta p{

    font-size:18px;

    color:#64748b;

    line-height:1.7;

}

/*==================================================
ESTADÍSTICAS
==================================================*/

.estadisticas{

    margin-top:80px;

    background:#0f2f69;

    color:#fff;

    padding:45px 0;

}

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

    text-align:center;

}

.stats h2{

    font-size:50px;

    margin-bottom:12px;

}

.stats p{

    font-size:19px;

    opacity:.95;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero p{

margin:auto;

}

.hero-info{

justify-content:center;

}

.botones{

justify-content:center;

}

.tarjetas{

grid-template-columns:1fr;

}

.stats{

grid-template-columns:repeat(2,1fr);

}

nav{

display:none;

}

}

@media(max-width:700px){

.hero h2{

font-size:48px;

}

.stats{

grid-template-columns:1fr;

}

.logo h1{

font-size:28px;

}

.logo img{

height:60px;

}

}

/*==================================================
COMO FUNCIONA
==================================================*/

.como-funciona{

padding:110px 0;

background:#ffffff;

}

.titulo-seccion{

text-align:center;

margin-bottom:70px;

}

.titulo-seccion h2{

font-size:48px;

color:#0f172a;

margin-bottom:15px;

}

.titulo-seccion p{

font-size:20px;

color:#64748b;

}

.pasos{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

}

.paso{

background:#fff;

border-radius:22px;

padding:45px;

text-align:center;

box-shadow:0 20px 50px rgba(0,0,0,.07);

transition:.35s;

position:relative;

}

.paso:hover{

transform:translateY(-10px);

}

.numero{

position:absolute;

top:-18px;

left:50%;

transform:translateX(-50%);

width:42px;

height:42px;

background:#2563eb;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:#fff;

font-weight:bold;

font-size:18px;

}

.paso i{

font-size:58px;

color:#2563eb;

margin-bottom:25px;

}

.paso h3{

font-size:28px;

margin-bottom:18px;

color:#0f172a;

}

.paso p{

font-size:17px;

line-height:1.7;

color:#64748b;

}

}/*======================================================
SIDEBAR PREMIUM
======================================================*/

.sidebar{

position:fixed;

left:0;

top:0;

width:270px;

height:100vh;

background:#fff;

display:flex;

flex-direction:column;

justify-content:space-between;

box-shadow:0 10px 40px rgba(0,0,0,.08);

padding:30px 0;

z-index:999;

}

.sidebar-top{

padding:0 30px 30px;

border-bottom:1px solid #ececec;

}

.logo{

display:flex;

align-items:center;

gap:15px;

text-decoration:none;

color:#222;

}

.logo img{

width:58px;

height:58px;

object-fit:contain;

}

.logo h2{

margin:0;

font-size:24px;

}

.logo span{

font-size:14px;

color:#777;

}

.sidebar nav{

padding:25px 15px;

display:flex;

flex-direction:column;

gap:8px;

}

.sidebar nav a,

.sidebar-bottom a{

display:flex;

align-items:center;

gap:15px;

padding:15px 18px;

border-radius:14px;

text-decoration:none;

color:#555;

font-weight:600;

transition:.30s;

}

.sidebar nav a i,

.sidebar-bottom a i{

width:24px;

text-align:center;

font-size:18px;

}

.sidebar nav a:hover,

.sidebar-bottom a:hover{

background:#eef4ff;

color:#2563eb;

transform:translateX(6px);

}

.sidebar nav a.activo{

background:linear-gradient(135deg,#2563eb,#7c3aed);

color:#fff;

box-shadow:0 10px 25px rgba(37,99,235,.25);

}

.sidebar-bottom{

padding:20px 15px;

border-top:1px solid #ececec;

}

.contenido{

margin-left:270px;

padding:40px;

}/*==================================================
TOPBAR PREMIUM
==================================================*/

.topbar{

position:fixed;

left:270px;

right:0;

top:0;

height:80px;

background:#fff;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 35px;

box-shadow:0 5px 25px rgba(0,0,0,.05);

z-index:900;

}

.topbar-left{

display:flex;

align-items:center;

gap:25px;

}

.menu-mobile{

display:none;

background:none;

border:none;

font-size:22px;

cursor:pointer;

}

.search-box{

width:420px;

height:48px;

background:#f4f7fb;

border-radius:14px;

display:flex;

align-items:center;

padding:0 18px;

gap:12px;

}

.search-box input{

width:100%;

border:none;

background:none;

outline:none;

font-size:15px;

}

.topbar-right{

display:flex;

align-items:center;

gap:20px;

}

.icon-btn{

width:48px;

height:48px;

background:#f4f7fb;

border-radius:14px;

display:flex;

align-items:center;

justify-content:center;

position:relative;

text-decoration:none;

color:#444;

transition:.30s;

}

.icon-btn:hover{

background:#2563eb;

color:white;

}

.badge{

position:absolute;

top:8px;

right:8px;

width:18px;

height:18px;

border-radius:50%;

background:#ef4444;

color:white;

font-size:11px;

display:flex;

align-items:center;

justify-content:center;

}

.user-box{

display:flex;

align-items:center;

gap:12px;

}

.avatar{

width:48px;

height:48px;

border-radius:50%;

background:linear-gradient(135deg,#2563eb,#7c3aed);

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:18px;

font-weight:bold;

}

.logout-btn{

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

border-radius:14px;

background:#ef4444;

color:white;

text-decoration:none;

transition:.30s;

}

.logout-btn:hover{

transform:rotate(-10deg);

}

.contenido{

margin-left:270px;

margin-top:80px;

padding:35px;

background:#f4f7fb;

min-height:100vh;

/*==================================================
HERO PREMIUM 2026
==================================================*/

.hero-card{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-card img{

    width:100%;

    max-width:520px;

    animation:flotar 5s ease-in-out infinite;

    filter:drop-shadow(0 35px 60px rgba(37,99,235,.25));

}

.hero-badge{

    position:absolute;

    top:35px;

    right:-20px;

    background:white;

    padding:15px 22px;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    font-weight:700;

    color:#2563eb;

    display:flex;

    flex-direction:column;

}

.hero-badge small{

    color:#6b7280;

    margin-top:5px;

    font-weight:500;

}

.hero-badge-bottom{

    top:auto;

    bottom:35px;

    left:-20px;

    right:auto;

    color:#16a34a;

}

@keyframes flotar{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

/*======================================
TEXTO HERO
======================================*/

.hero-etiqueta{

    display:inline-block;

    background:#e0edff;

    color:#2563eb;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}

.hero-texto h1{

    font-size:64px;

    line-height:1.05;

    color:#111827;

    margin-bottom:25px;

    max-width:700px;

}

.hero-texto p{

    font-size:20px;

    color:#6b7280;

    line-height:1.8;

    max-width:650px;

    margin-bottom:40px;

}

.hero-botones{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.btn-principal{

    background:#2563eb;

    color:#fff;

    text-decoration:none;

    padding:18px 34px;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.btn-principal:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(37,99,235,.35);

}

.btn-secundario{

    border:2px solid #2563eb;

    color:#2563eb;

    text-decoration:none;

    padding:18px 34px;

    border-radius:14px;

    font-size:18px;

    font-weight:700;

}

.hero-datos{

    display:flex;

    gap:50px;

    flex-wrap:wrap;

}

.hero-datos div{

    display:flex;

    flex-direction:column;

}

.hero-datos strong{

    font-size:34px;

    color:#111827;

}

.hero-datos span{

    color:#6b7280;

}