/* TESTIMONIALS SECTION - PRESERVING LAYOUT & CONTRAST */

.testimonios-section {
    /* Using the deep blue background to contrast with the black of previous section */
    background-color: #0a1733; 
    padding: 8rem 2rem;
    position: relative;
}

.testimonios-section .container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonios-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonios-grid {
    display: grid;
    /* Keeping the original flexible grid */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonio-card {
    /* Darker card to pop out against the blue background */
    background: rgba(4, 11, 23, 0.6); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center; /* Preserving the centered layout */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonio-card:hover {
    border-color: rgba(0, 230, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Preserving the exact photo positioning and size */
.testimonio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto; /* Centered */
    overflow: hidden;
    border: 2px solid #00e6ff;
    box-shadow: 0 4px 15px rgba(0, 230, 255, 0.2);
}

.testimonio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Preserving the "spoken quote" style */
.testimonio-content p {
    font-family: 'Space Grotesk', sans-serif;
    font-style: italic; /* Keeping the italic for quotes */
    color: #e0e6ed;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.testimonio-author strong {
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.testimonio-author span {
    font-family: 'Space Grotesk', sans-serif;
    color: #00e6ff; /* Highlighting the job title in cyan */
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .testimonios-section { padding: 5rem 1.5rem; }
    .testimonios-section h2 { font-size: 2.2rem; margin-bottom: 3rem; }
    .testimonios-grid { grid-template-columns: 1fr; }
}