.elementor-5231 .elementor-element.elementor-element-42fb16f{--display:flex;}.elementor-5231 .elementor-element.elementor-element-42fb16f:not(.elementor-motion-effects-element-type-background), .elementor-5231 .elementor-element.elementor-element-42fb16f > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#007CBA;}.elementor-5231 .elementor-element.elementor-element-1a4a635{--display:flex;}.elementor-5231 .elementor-element.elementor-element-1a4a635:not(.elementor-motion-effects-element-type-background), .elementor-5231 .elementor-element.elementor-element-1a4a635 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#007CBA;}.elementor-5231 .elementor-element.elementor-element-8035625{--display:flex;}.elementor-5231 .elementor-element.elementor-element-f89d818{--display:flex;}.elementor-5231 .elementor-element.elementor-element-f89d818:not(.elementor-motion-effects-element-type-background), .elementor-5231 .elementor-element.elementor-element-f89d818 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#007CBA;}@media(min-width:768px){.elementor-5231 .elementor-element.elementor-element-8035625{--content-width:80%;}}/* Start custom CSS for html, class: .elementor-element-295f9b4 *//* Estilo general para el encabezado */
.custom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #007CBA; /* Color de fondo del encabezado */
    position: relative;
    height: 100px;
}

/* Estilo del logo */
.header-logo img {
    width: 250px; /* Ancho del logo */
}

/* Estilo del menú de navegación */
.header-menu {
    display: flex;
    align-items: center;
}

/* Menú en versión de escritorio */
.desktop-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.desktop-menu li {
    margin: 0 15px;
}

.desktop-menu a {
    text-decoration: none;
    color: #fff; /* Color del texto de los enlaces */
    position: relative;
    font-size: 16px; /* Tamaño de fuente */
    padding-bottom: 5px;
}

/* Efecto de subrayado blanco en hover */
.desktop-menu a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff; /* Color del subrayado */
    transition: width .3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
}

.desktop-menu a:hover::after {
    width: 100%;
}

/* Menú en versión móvil */
.mobile-menu {
    display: none; /* Ocultar por defecto */
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: 100%;
    z-index: 10;
}

.mobile-menu li {
    margin: 0;
    padding: 10px;
    border-bottom: 1px solid #444;
}

.mobile-menu a {
    color: #0A395C;
    text-decoration: none;
    display: block;
}

/* Estilo del botón hamburguesa */
.menu-toggle {
    display: none; /* Ocultar por defecto */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: -10px;
}

.menu-toggle .hamburger {
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: relative;
}

.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after {
    content: '';
    width: 25px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
}

.menu-toggle .hamburger::before {
    top: -7px;
}

.menu-toggle .hamburger::after {
    top: 7px;
}

/* Mostrar el menú móvil cuando el botón hamburguesa es activado */
.menu-toggle.active + .mobile-menu {
    display: block;
}

/* Media query para dispositivos móviles */
@media (max-width: 768px) {
    .desktop-menu {
        display: none; /* Ocultar menú de escritorio en móviles */
    }

    .menu-toggle {
        display: block; /* Mostrar botón hamburguesa en móviles */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-99107ce *//* Estilo para el footer */
.footer {
    background-color: #007CBA;
    color: #fff;
    padding: 20px;
    font-size: 14px;
}

/* Estilo para el contenido del footer */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
    align-items: flex-start;
    margin-left: 70px;
    font-size: 18px;
}

/* Estilo para la información del footer */
.footer-info {
    display: flex;
    flex: 1;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

/* Estilo para cada sección del footer */
.footer-section {
    flex: 1;
    padding-top: 10px;
}

/* Estilo para los títulos de las secciones del footer */
.footer-section h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Estilo para las listas dentro del footer */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Estilo para los elementos de lista dentro del footer */
.footer-section ul li {
    margin-bottom: 10px;
}

/* Estilo para los enlaces dentro de las listas del footer */
.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

/* Estilo para los enlaces cuando se pasa el mouse sobre ellos */
.footer-section ul li a:hover {
    text-decoration: underline;
}

/* Estilo para los íconos sociales */
.footer-social {
    display: flex;
    gap: 10px;
}

/* Estilo para los íconos de redes sociales */
.social-icon img {
    width: 30px;
    height: 30px;
}

/* Estilo para la parte inferior del footer */
.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: white;
    background-color: #0A395C;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: none; /* Sin línea blanca en la parte superior */
}

/* Estilo para la imagen en la parte inferior del footer */
.footer-bottom img {
    margin-right: 10px;
}

/* Estilo para los enlaces en la parte inferior del footer */
.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

/* Estilo para los enlaces en la parte inferior del footer cuando se pasa el mouse sobre ellos */
.footer-bottom a:hover {
    text-decoration: underline;
}

/* Estilos específicos para dispositivos móviles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        margin-left: 0; /* Elimina el margen izquierdo en dispositivos móviles */
    }
    
    .footer-info {
        flex-direction: column;
        align-items: center;
       
        padding-bottom: 10px;
    }

    .footer-section {
        text-align: center;
        width: 90%;
        border-top: 1px solid #fff; /* Línea blanca separadora en móviles */
    }

    .footer-bottom {
        flex-direction: column;
    }
}/* End custom CSS */