/* Hero Section */
#hero-clientes {
    background-image: url('../img/clients/Clientes.png'); /* Ruta de la imagen de fondo */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height:70vh; /* Ocupa toda la altura visible */
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-left: 5vw;
    margin-right: 5vw;
    margin-top: 15vh;
}

#hero-clientes .hero-content {
    background-color: rgba(255, 255, 255, 0.9); /* Fondo blanco semitransparente */
    padding: 30px 50px;
    border-radius: 10px;
}

#hero-clientes h1 {
    font-size: 3rem;
    font-family: 'Sora', sans-serif;
    color: #263b84; /* Azul corporativo */
    margin-bottom: 20px;
    text-transform: uppercase;
}

#hero-clientes p {
    font-size: 1.2rem;
    font-family: 'Sora', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Contenido Principal */
#clients-content {
    padding: 20px 20px;
    background-color: #f4f4f4;
}

#clients-content h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #263b84;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
}

#clients-content p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    font-family: 'Sora', sans-serif;
}

.client-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.client-column {
    flex: 1 1 30%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.client-column h3 {
    font-size: 1.5rem;
    color: #263b84;
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
}

.client-column p {
    font-size: 1rem;
    color: #555;
    font-family: 'Sora', sans-serif;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .clientcolumn {
        flex: 1 1 100%; /* Las columnas se apilan en pantallas pequeñas */
    }

    #hero-clientes h1 {
        font-size: 2.5rem;
    }

    #hero-clientes p {
        font-size: 1rem;
    }
}
/* Sección de Categorías */
#clients-categories {
    padding: 20px 20px;
    background-color: #f4f4f4;
}

#clients-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #263b84;
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
}

#clients-categories p {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.client-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.client-column {
    flex: 1 1 30%;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex; /* Activar Flexbox */
    flex-direction: column; /* Alinear el contenido en una columna */
    justify-content: center; /* Centrar el contenido verticalmente */
    align-items: center; /* Centrar el contenido horizontalmente */
    height: 100%; /* Asegurar que las tarjetas ocupen todo el espacio disponible */
}

.card:hover {
    transform: translateY(-5px); /* Efecto de elevación */
}

.card h3 {
    font-size: 1.5rem;
    color: #263b84;
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.card h3 i {
    font-size: 1.8rem;
    color: #007BFF;
}

.card ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.card ul li {
    font-size: 1rem;
    color: #555;
    font-family: 'Sora', sans-serif;
    padding: 5px 0;
}

/* Responsividad */
@media (max-width: 768px) {
    .column {
        flex: 1 1 100%; /* Las tarjetas ocupan todo el ancho en móviles */
    }

    #hero-clientes {
        background-image: url('../img/clients/ClientesVertical.png'); /* Ruta de la imagen de fondo */
    }

    .client-row {
        gap: 10px;
    }
}
