/*======================================
HERO
======================================*/

.hero{

    position:relative;

    display:flex;

    align-items:center;

    overflow:hidden;

    min-height:auto;

    padding-top:120px;

    padding-bottom:60px;

    background:

        linear-gradient(

            90deg,

            rgba(4,8,23,.82) 0%,

            rgba(4,8,23,.88) 30%,

            rgba(4,8,23,.60) 60%,

            rgba(4,8,23,.35) 100%

        ),

        url("../assets/hero/fondo.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.hero-grid{

    display:grid;

    grid-template-columns:520px 760px;

    justify-content:space-between;

    gap:60px;

}

/*======================================
CONTENIDO
======================================*/

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 20px;

    border-radius:999px;

    background:rgba(26,168,255,.12);

    border:1px solid rgba(26,168,255,.20);

    color:#5fc8ff;

}

.hero h1{

    margin:28px 0;

    font-size:68px;

    font-weight:900;

    line-height:1.08;

}

.hero p{

    max-width:500px;

    font-size:18px;

    line-height:1.8;

    color:#A7B2C8;

}

.hero-products{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    margin:35px 0 45px;

}

.hero-products span{

    display:flex;

    align-items:center;

    gap:8px;

    color:#d5dbe6;

    font-weight:500;

}

.hero-products i{

    color:var(--primary);

    font-size:18px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

/*======================================
ESTADÍSTICAS
======================================*/

.hero-stats{

    display:flex;

    margin-top:50px;

    border-radius:22px;

    overflow:hidden;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

}

.hero-stats div{

    flex:1;

    padding:28px;

    text-align:center;

}

.hero-stats div:not(:last-child){

    border-right:1px solid rgba(255,255,255,.08);

}

.hero-stats h3{

    margin-bottom:8px;

    font-size:34px;

}

.hero-stats span{

    color:#95a2b7;

}

/*======================================
IMÁGENES
======================================*/

.hero-images{

    position:relative;

    width:100%;

    height:650px;

}

.hero-main-card{

    position:absolute;

    top:100px;

    right:20px;

    width:650px;

    border-radius:28px;

    overflow:hidden;

    z-index:20;

}

/*======================================
CARDS
======================================*/

.hero-card{

    position:absolute;

    overflow:hidden;

    border-radius:26px;

    background:rgba(8,15,30,.25);

    backdrop-filter:blur(18px);

    border:1px solid rgba(80,180,255,.18);

    box-shadow:

        0 30px 60px rgba(0,0,0,.55),

        0 10px 25px rgba(0,0,0,.35);

    transition:.35s;

}

.hero-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:2px;

    background:linear-gradient(

        90deg,

        transparent,

        #48c5ff,

        transparent

    );

    z-index:5;

}

.hero-card:hover{

    transform:

        translateY(-10px)

        scale(1.02);

    border-color:#35b8ff;

    box-shadow:

        0 35px 70px rgba(0,0,0,.45),

        0 0 35px rgba(53,184,255,.25);

}

.hero-card img{

    width:100%;

    display:block;

    transition:.40s;

}

.hero-card:hover img{

    transform:scale(1.04);

}

.card-1::after{

    content:"";

    position:absolute;

    inset:-80px;

    background:

        radial-gradient(

            circle,

            rgba(0,160,255,.18),

            transparent 70%

        );

    z-index:-1;

}

/*======================================
LUCES
======================================*/

.hero-light{

    position:absolute;

    border-radius:50%;

    filter:blur(150px);

    z-index:-1;

}

.hero-light-1{

    width:550px;

    height:550px;

    top:-150px;

    right:-120px;

    background:#0ea5ff33;

}

.hero-light-2{

    width:500px;

    height:500px;

    bottom:-180px;

    left:-180px;

    background:#2563eb22;

}