.bg-light-blue {
    background-color: #f0f8ff;
}

.navbar-nav .nav-link {
    color: #333;
}

.btn-contact {
    background-color: #ffa800;
    color: #ffffff;
    font-weight: bold;
}

.btn-contact:hover {
    background-color: #ffa800;
    color: #ffffff;
    transform: scale(1.05);
}

a{
    text-decoration: none;
}

h1 img {
    width: 300px;
}

.banner1 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.monserratBold {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500 !important;
    color: #0DCAF0;
}

.monserrat {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 100 !important;
    color: #0DCAF0;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    /* Ocupar el 100% del ancho de la ventana */
    height: 100vh;
    /* Ocupar el 100% del alto de la ventana */
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* Asegurar que el video cubra completamente sin distorsión */
}


/* Estilos para que el contenido esté por encima del video */

.banner1 .row {
    position: relative;
    z-index: 1;
}

.imgBanner {
    width: 100%;
    height: auto; /* Mantiene la proporción de la imagen */
}


.banner-small {
    display: none;
}

.mainMenu {
    background-color: rgba(134, 202, 245, 0.5);
    font-size: 12px;
    font-weight: bold;
    margin: auto;
    display: flex;
    align-items: center;
}

.mainMenu .nav-item {
    position: relative;
    padding: 0 15px;
}

.mainMenu .nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 2px;
    background-color: #ffa800;
}

.menuPrincipal {
    background-color: rgba(255, 255, 255, 0.5);
    margin: auto;
}

.navbar-collapse {
    justify-content: flex-start;
    /* Alinea el contenido a la izquierda */
}

.navbar-nav {
    width: 100%;
    /* Asegura que el nav use el 100% del ancho */
}

.navbar-nav .nav-item {
    margin-right: 0;
    /* Elimina márgenes laterales si es necesario */
}

.lead {
    font-weight: bold;
    font-size: 1.5vw;
    text-align: justify;
}

.highlight {
    background-color: #cce5ff;
    border-radius: 5px;
    padding: 10px;
}

.social-menu {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffa800;
    padding: 10px;
    border-radius: 10px 0 0 10px;
    z-index: 1000;
}

.social-menu a {
    display: block;
    margin: 10px 0;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
}

.social-menu a:hover {
    color: #081138;
    transform: scale(1.2);
}

.social-menu i {
    display: inline-block;
    padding: 10px;
}

.footer-link,
.footer-text {
    color: #0064AF;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.85rem;
    /* Reducido de 1rem (16px) a 0.85rem (aproximadamente 13.6px) */
}

.footer-link:hover {
    color: #0096b0;
}

.footer-heading {
    color: #0dcaf0;
    font-size: 1rem;
    /* Reducido de 1.25rem a 1rem (16px) */
    font-weight: bold;
}

.copyright-text {
    font-size: 0.75rem;
    color: #0dcaf0 !important;
}

.social-icon {
    width: 20px;
    /* Reducido de 24px a 20px */
    height: 20px;
    fill: currentColor;
}

.active-icon {
    background-color: #CCEFFC;
}

.iconoMedico {
    transition: background-color 0.3s ease;
    /* Transición suave */
}


.iconoMedico:hover {
    transform: scale(1.1);
    transition: ease-in-out 0.3;
}

@media only screen and (max-width: 991px) {
    .mainMenu .nav-item::after {
        display: none;
    }
    .lead {
        font-size: 2.5vw;
    }
    .navbar-nav {
        text-align: left !important;
    }
    .navbar-nav .nav-item {
        width: 100%;
        /* Hacer que los elementos ocupen toda la línea */
    }
}

/* ESTILOS PRODUCTOS */
.bgCategoriaProducto{
    background-color: #00ADEF;
}
.bgProducto{
    background-color: #C6EAFB;
}
.bgProducto:hover{
    transform: scale(1.03);
}
.bgCategoriaProductoActive{
    background-color: #0064AF;
}
.letraGrande{
    font-size: 1.5rem;
}
.text-justify{
    text-align: justify;
}
#videoGranEscala{
    width: 100%;
    height: auto;
    object-fit: cover;
}