/* ====================================
   CLIENTS PAGE - ESTILO ESPECÍFICO
   ==================================== */

.page-hero {
    padding: 10rem 1rem 6rem;
    margin-top: 0;
    position: relative;
}

.page-hero h1 {
    color: #f5f5f7;
}

.page-hero .subtitle {
    color: #86868b;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.client-logo-card {
    background-color: #fff;
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo-card:hover {
    border-color: #FBBF24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2);
    transform: translateY(-5px);
}

.client-logo {
    font-size: 2rem;
    color: #9CA3AF;
    transition: all 0.3s ease;
}

.client-logo-card:hover .client-logo {
    font-size: 2.5rem;
    color: #FBBF24;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.stars {
    color: #FBBF24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #4B5563;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FBBF24, #FCD34D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
}

.author-info h4 {
    margin: 0;
    font-weight: 700;
    color: #000;
    font-size: 0.95rem;
}

.author-info p {
    margin: 0;
    color: #4B5563;
    font-size: 0.85rem;
}

.partnership-section {
    background-color: #fff;
    padding: 3rem;
    border-radius: 0.75rem;
    border: 2px dashed #E5E7EB;
    text-align: center;
}

.partnership-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.partnership-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000;
}

.partnership-text {
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.stat-card {
    text-align: center;
    padding: 0;
    background-color: transparent !important;
    border: none !important;
}

.stat-number {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #d4d4d8 0%, #ffffff 50%, #d4d4d8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat-text {
    color: #86868b;
    font-size: 1.25rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 1rem 3rem;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }

    .client-logo-card {
        height: 120px;
        padding: 1.5rem;
    }
}
