body {
    background: #000;
    color: white;
    font-family: Arial, sans-serif;
}

.testimonios-container {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}

.testimonios-container h1 {
    font-size: 32px;
    color: #F2CF1D;
}

.sub {
    color: #ccc;
    margin-bottom: 40px;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.testimonio-item {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #8C5C03;
    box-shadow: 0 0 18px rgba(0,0,0,0.4);
    transition: .2s;
}

.testimonio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255,190,60,0.6);
}

.testimonio-item h2 {
    color: #F2CF1D;
    margin-bottom: 10px;
}
