
/*CLIENTES
*/

.clientes-section {
    padding: 35px 5%;
    background:radial-gradient(circle at top right, #ffffff 0%, #ffffff 40%), #ffffff;
    overflow: hidden;
    position: relative;
}

.clientes-header {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

.clientes-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    color: #7ee0ff;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.clientes-header h2 {
    font-size: var(--h2-size);
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 25px;
    font-weight: 700;
}

.clientes-header h2 strong {
    color: #7ee0ff;
}

.clientes-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}
/*popup*/
.popup-cliente{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    backdrop-filter:blur(5px);
    z-index:9999;

    justify-content:center;
    align-items:center;
}

.popup-contenido{
    width:90%;
    max-width:450px;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    position:relative;
    animation:popup .3s ease;
}

@keyframes popup{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.cerrar{
    position:absolute;
    right:20px;
    top:15px;
    font-size:30px;
    cursor:pointer;
}

.icono{
    width:50px;
    height:50px;
    border-radius:12px;
    background:linear-gradient(135deg,#6c63ff,#3f2b96);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

#textoCliente{
    font-size:18px;
    line-height:1.7;
    color:#222;
}

.badge{
    display:inline-block;
    margin-top:15px;
    padding:8px 15px;
    border-radius:30px;
    background:#f1f3f5;
}

.autor{
    margin-top:25px;
    display:flex;
    align-items:center;
    gap:15px;
}

.autor img{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}