/* TESTIMONIALS */
.testimonials {
    background: var(--dark-blue);
}

/* ============================
   TESTIMONIOS PREMIUM TESLA STYLE
   ============================ */

.testimonials-slider-section {
    position: relative;
    padding: 140px 20px;
    background: radial-gradient(circle at top,
        rgba(255,255,255,0.05),
        rgba(0,0,0,0.95)
    );
    overflow: hidden;
}

/* TÍTULO */
.testimonials-title {
    text-align: center;
    font-family: 'Playfair Display SC', serif;
    font-size: 3rem;
    letter-spacing: 4px;
    color: var(--royal-gold);
    margin-bottom: 60px;
}

/* CONTENEDOR DEL SLIDER */
.testimonials-slider {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

/* SLIDE BASE */
.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    text-align: center;
    max-width: 700px;
    color: #E8E8E8;
    padding: 20px;
}

/* FOTO CIRCULAR CON BORDE DORADO */
.testimonial-photo {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    object-fit: cover;

    border: 2px solid rgba(212,175,55,0.65);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.6),
        0 0 14px rgba(212,175,55,0.35);
        
    margin-bottom: 28px;
}

/* TEXTO DEL TESTIMONIO */
.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    line-height: 1.6;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #F2F2F2;
}

/* AUTOR */
.testimonial-author {
    display: block;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.75;
    text-transform: uppercase;
}

/* FLECHAS TESLA-STYLE */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.45);
    padding: 14px 18px;
    border-radius: 50px;

    color: var(--royal-gold);
    font-size: 1.6rem;
    cursor: pointer;

    backdrop-filter: blur(6px);

    transition: 0.3s ease;
    z-index: 5;
}

.testimonial-arrow:hover {
    background: rgba(212,175,55,0.12);
    border-color: var(--light-gold);
    color: var(--light-gold);
    box-shadow:
        0 0 12px rgba(212,175,55,0.45),
        0 0 22px rgba(0,0,0,0.35);
}

/* LADO IZQUIERDO Y DERECHO */
.testimonial-arrow.left {
    left: 8%;
}
.testimonial-arrow.right {
    right: 8%;
}

/* INDICADORES (PUNTOS TESLA) */
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 12px;
}

.testimonial-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(212,175,55,0.35);

    transition: 0.35s ease;
    cursor: pointer;
}

.testimonial-dots span.active {
    background: var(--royal-gold);
    border-color: var(--light-gold);
    box-shadow:
        0 0 8px rgba(212,175,55,0.65),
        0 0 14px rgba(212,175,55,0.4);
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .testimonial-photo {
        width: 115px;
        height: 115px;
    }

    .testimonial-text {
        font-size: 1.25rem;
    }

    .testimonial-arrow.left {
        left: 3%;
    }
    .testimonial-arrow.right {
        right: 3%;
    }
}

@media (max-width: 500px) {
    .testimonial-arrow {
        padding: 10px 14px;
        font-size: 1.3rem;
    }

    .testimonial-dots {
        margin-top: 40px;
    }
}
