/* =========================================
   BENEFICIOS HORIZONTALES
========================================= */

.siap-benefits-horizontal{

    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 35px;
}

/* =========================================
   ITEM
========================================= */

.siap-benefit{

    display: flex;

    align-items: center;

    gap: 0px;

    padding: 0px 5px;

    border-radius: 16px;

    transition: all .35s ease;

    min-height: 72px;

    flex: 1 1 calc(25% - 18px);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);
}

/* =========================================
   HOVER
========================================= */

.siap-benefit:hover{

    transform: translateY(-5px);
}

/* =========================================
   ICONO
========================================= */

.siap-benefit i{
    border-radius: 50%;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, #ff9110, #fff062);
    color: white;
    font-size: 23px;
}

/* =========================================
   TEXTO
========================================= */

.siap-benefit span{

    color: #111111;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.5;
}

/* =========================================
   RESPONSIVE
========================================= */
@media screen and (max-width: 768px) {

    .siap-benefit{

        flex: 1 1 33%;
    }

    .slider-glass{
     max-width:340px !important;
    }
}


.slider-glass{

    background: rgba(255,255,255,0.10);

    backdrop-filter: blur(14px);

    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 20px;

    padding: 30px;

    max-width: 520px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.35);

    color: white;
}

.hero-siap{

    position: relative;
    overflow: hidden;

}


/* OSCURECER + PROFUNDIDAD */

.hero-siap::before{

    content: "";

    position: absolute;

    inset: 0;

    background:
    radial-gradient(circle at left, rgba(0,0,0,0.3), transparent 60%),
    linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.15));

    z-index: 1;
}

/* asegurar contenido arriba */

.hero-siap .container-fluid{
    position: relative;
    z-index: 2;
}

.hero-siap::after{


   content: "";

    position: absolute;

    bottom: -1px;
    left: 0;

    width: 100%;
    height: 120px;

    background: #ffffff;

    clip-path: polygon(38% 100%, 50% 64%, 61% 100%);

    z-index: 5;
}


/* =========================================
   DIVIDER WAVE
========================================= */



