#imagen-carrusel img {
    width: 100%;
    height: 500px;
}

.boxvalores {
    background-color: white;
    box-shadow: 0 2px 10px rgba(128, 128, 128, 0.5);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.boxvalores:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 6px 20px var(--primary-color);
    color: white !important;
}

.botonvalores {

    font-weight: 700;
}

.botonvalores:hover {
    background: linear-gradient(135deg, #e2e2e2 0%, #ffffff 100%);
    font-weight: 700;
}

.sidebar .nav-link {
    font-weight: 500;
    color: var(--primary-color);
    padding: 10px;
    border: 1.5px solid rgba(128, 128, 128, 0.5);
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.sidebar .nav-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    /* Blue background on hover */
    color: white;
    /* White text on hover */
}

/* Estilos para las secciones */
.shadow-none {
    border: 2px solid #a6a6a6;
}

/* Estilos para los valores */
.card-title {
    font-size: 1.5rem;
    color: #06A3DA;
}

.modal-header {
    background-color: #ffffffe4;
}

.modal-body {
    background-color: transparent;
}

.seccimv {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Ajustes de animación */
.wow {
    visibility: visible;
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/*BENEFICIOS*/
.card-circle {
    text-align: center;
    margin-top: 10px;
    background: white;
    border: 10px solid transparent;
    /* Eliminar el borde visible */
    color: #fff;
    font-family: Montserrat;
    padding: 15px;
    border-radius: 50%;
    transition: box-shadow 0.1s ease-in-out;
    /* Velocidad rápida para el box-shadow */
    /* Añadir transición para el efecto de hover */
}

.card-circle:hover {
    box-shadow: 0 0 0 5px #f57e57;
    /* Crear un borde interno con box-shadow */
}

.card-circle img {
    max-width: 100%;
    border-radius: 50%;
}


.texto-ventaja {
    color: white;
}

.ventajas {
    color: #EEF9FF;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

.section-title h5::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 3px;
    right: -55px;
    bottom: 11px;
    background: #06A3DA !important;
}

.section-title h5::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 3px;
    right: -75px;
    bottom: 11px;
    background: #f57e57;
}

/*FIN BENEFICIOS*/
