* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary: #0B3C5D;
    --secondary: #1D5B8C;
    --accent: #FFB400;
    --light: #F4F4F4;
    --dark: #333333;
}

body {
    line-height: 1.6;
    color: var(--dark);
}
/* esta parte de arriba esta copiada de home.css */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-intro{
    padding-top: 50px;
}

.section-intro p{
    margin-bottom: 25px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.client-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.client-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.client-name {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.client-industry {
    font-size: 0.9rem;
    color: #666;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-intro h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-intro p {
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .client-card {
        padding: 1.5rem;
        min-height: 180px;
    }

    .client-logo {
        width: 120px;
        height: 120px;
    }
}