@import url(../css/styles.css);


.clientes{
    background-color: var(--blanco);
    padding-bottom: 5rem;
    padding-top: 5rem;
}

.contenedor-clientes{
    width: 90%;
    margin: 0 auto;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.clientes .card-clientes{
    transition: transform 0.3s ease;
    border: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.clientes .card-img-top {
    height: 200px;
    object-fit: contain;
    padding: 1rem;
}

.clientes .card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
}

.clientes .card-body h3{
    text-align: left;
    margin-bottom: 0;
}

.clientes .card-body h4 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.clientes .card-clientes:hover {
    transform: scale(1.05);
}

.hidden-cards {
    display: none;
}

.boton-ver-mas, .boton-ver-menos{
    background-color: transparent;
    color: var(--negro);
    border-color: var(--negro);
    font-size: 1.4rem;
    width: 15rem;
    height: 4rem;
    margin: 0 auto;
    padding-top: 1rem;
    cursor: pointer;
}
.boton-ver-mas:hover, .boton-ver-menos:hover{
    background-color: #262C62;
    transition: background-color 1s ease;
    color: var(--blanco);
}

@media (max-width: 1024px) {
    .contenedor-clientes{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 80%;
    }
    .contenedor-carta{
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contenedor-clientes{
        display: flex;
    }
    .boton-clientes{
        display: block;
        width: 50%;
    }
}