/* css/testimonios.css */
.testimonios-section {
    background-color: #000;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.testimonios-title {
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-item {
    background-color: #111;
    border: 1px solid #f0a500;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    position: relative;
    min-height: 180px;
}

.testimonio-item p {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 30px;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 15px;
}

.testimonio-autor img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid #f0a500;
}

.testimonio-autor span {
    font-weight: bold;
    font-size: 14px;
    color: white;
}
