/* General */
.custom-card {
    width: 18rem;
    margin: 0 auto;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    border: none;
    overflow: hidden;
    height: 450px;
    background-color: #f8f9fa;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.25);
}

/* Imagen de la tarjeta */
.custom-card img {
    object-fit: cover;
    width: 100%;
    height: 200px;
    border-bottom: 1px solid #eaeaea;
    transition: transform 0.3s ease;
}

.carousel-item img {
     max-height: 200px; 
    object-fit: contain;
    transition: filter .3s;
}

.custom-card:hover  {
    transform: scale(1.05);
}

/* Sección de información */
.sectionInfoCard {
    width: 100%;
    height: 70px;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    text-align: start;
    padding: 2px;
}

/*Titulo tarjeta */
.sectionHeaderTargeta {
    width: 100%;
    height: 45px;
    color: var(--color-amarillo);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    text-align: center;
    padding: 2px;
    background-color: rgb(0, 0, 0);
    font-weight: bolder;
    border-radius: 15px;
    transition: color 0.3s ease; /* Transición suave del color */

}
.sectionHeaderTargeta:hover {
    color: white; /* Cambia a blanco */
}
/* Pie de tarjeta */
.custom-card-footer {
    height: 60px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
    border-top: 1px solid #eaeaea;
}


.client-logos {
    padding: 60px 0;
    background-color: #f7c814;
}



/* Responsivo */
@media (max-width: 768px) {
    .custom-card {
        width: 100%;
    }
    .custom-card img {
        height: 150px;
    }
    .sectionInfoCard {
        font-size: 0.9rem;
    }
    .custom-card-footer {
        height: 80px;
    }
}


.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00087c;
    border: none;
    margin: 0 5px;
}