/* Clientes Page Styles */

.clientes-hero {
    padding: 100px 0 60px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../img/banner2.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
    border-bottom: 2px solid var(--accent, #ffc107);
}

.clientes-grid {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}

.client-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 160px;
    margin-bottom: 24px;
}

.client-item:hover {
    background: #ffffff;
    border-color: var(--accent, #ffc107);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.client-item img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-item:hover img {
    transform: scale(1.05);
}

/* Watermark customization for this page if needed */
.watermark-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
}

.watermark-logo img {
    width: 600px;
}

@media (max-width: 768px) {
    .client-item {
        padding: 15px;
        height: 130px;
    }
    
    .client-item img {
        max-height: 90px;
    }
    
    .clientes-hero {
        padding: 80px 0 40px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #f0f2f5;
    position: relative;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid #ffc107;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    font-size: 2rem;
    color: #ffc107;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.author-name {
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.author-role {
    font-size: 0.9rem;
    color: #6c757d;
    display: block;
}

.company-name {
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    min-height: 50px;
    display: flex;
    align-items: center;
}
