/* =========================
   TESTIMONIOS PREMIUM
========================== */

#testimonials {

    position: relative;

    overflow: hidden;

    padding: 120px 40px;

    background:
        linear-gradient(
            135deg,
            rgba(4,10,18,0.96),
            rgba(15,35,58,0.94)
        ),
        url('../images/back-nosotros.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

/* EFECTO DE LUZ */

#testimonials::before {

    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(45,140,255,0.16),
            transparent 35%
        );

}

/* CONTENEDOR */

.testimonials-container {

    position: relative;
    z-index: 2;

    max-width: 1400px;

    margin: auto;

}

/* TITULO */

.testimonials-container h2 {

    text-align: center;

    color: white;

    font-size: 62px;

    margin-bottom: 80px;

    font-family: 'Playfair Display', serif;

    line-height: 1.1;

}

/* GRID */

.testimonials-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;

}

/* CARD */

.testimonial-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 30px;

    padding: 40px;

    border-radius: 32px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.08);

    overflow: hidden;

    transition: .4s ease;

    box-shadow:
        0 25px 50px rgba(0,0,0,0.25),
        0 10px 20px rgba(0,0,0,0.15);

}

/* EFECTO */

.testimonial-item::before {

    content: '';

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(45,140,255,0.08);

    top: -80px;
    right: -80px;

}

/* HOVER */

.testimonial-item:hover {

    transform: translateY(-10px);

    background: rgba(255,255,255,0.12);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.35),
        0 15px 30px rgba(45,140,255,0.15);

}

/* IMAGEN */

.testimonial-image {

    position: relative;

    min-width: 130px;

}

.testimonial-image img {

    width: 130px;
    height: 130px;

    object-fit: cover;

    border-radius: 50%;

    border: 4px solid rgba(255,255,255,0.12);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.25);

}

/* TEXTO */

.testimonial-text {

    position: relative;
    z-index: 2;

}

.testimonial-text p {

    color: rgba(255,255,255,0.82);

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 25px;

}

/* NOMBRE */

.testimonial-name {

    display: inline-block;

    color: #5DAEFF;

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}

/* RESPONSIVE */

@media(max-width: 992px){

    .testimonials-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width: 768px){

    #testimonials {

        padding: 90px 20px;

    }

    .testimonials-container h2 {

        font-size: 42px;

        margin-bottom: 50px;

    }

    .testimonial-item {

        flex-direction: column;

        text-align: center;

        padding: 35px 28px;

    }

    .testimonial-image {

        min-width: auto;

    }

    .testimonial-image img {

        width: 110px;
        height: 110px;

    }

    .testimonial-text p {

        font-size: 17px;

    }

}