﻿.testimonios {
    background-image: url('../../Images/testimonios.jpg'); /* ← cambia por la ruta real */
    background-size: cover;
    background-position: center;
    color: #f6e8d4;
    padding: 80px 20px;
    text-align: center;
}

.contenido-testimonios {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonios h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-style: italic;
}

.subtitulo {
    font-size: 2rem;
    font-weight: bold;
    color: #e3cfaa;
    margin-bottom: 50px;
}

.testimonios-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonio {
    flex: 1 1 300px;
    max-width: 360px;
    background: rgba(0, 0, 0, 0); /* sin fondo para que se vea la imagen */
    color: #fff;
    text-align: left;
}

.estrellas {
    font-size: 2rem;
    color: #f2dc9b; /* color dorado/beige */
    margin-bottom: 15px;
}

.texto {
    font-style: italic;
    line-height: 1.6;
    font-size: 1.2rem;
}

.autor {
    margin-top: 10px;
    font-weight: 500;
    color: #e4d5b7;
}

@media (max-width: 768px) {
    .testimonios-grid {
        flex-direction: column;
        align-items: center;
    }
}