/**STYLES NEW HOME SECTION***/
.container-info-simple {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-color: #051727;
    padding: 5rem 6rem 3.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.box-info-sm {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.box-info-sm h2 {
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 50px;
    line-height: 54px;
    letter-spacing: -1.5px;
    margin: 0;
}
ul.list-sm, ul.list-close {
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    padding: 0;
}
ul.list-sm li {
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 2rem;
}
ul.list-sm li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #4ad4ff;
  font-weight: bold;
}
.box-exclusion {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #F3FAFE;
    border-radius: 3px;
    padding: 2.5rem 3rem;
    margin-top: 1rem;
}
.box-exclusion h3 {
    font-family: 'Montserrat';
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}
.box-list {
    display: flex;
    gap: 20px;
}
.list-content {
    width: 50%;
}
ul.list-close li {
    font-family: 'Montserrat';
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #000;
    position: relative;
    padding-left: 2rem;
}
ul.list-close li::before {
    content: '✖';
    position: absolute;
    left: 0;
    color: #D84D43;
    font-weight: bold;
    border: 1px solid #E9A7A5;
    padding: 0px 5px 0px 5px;
    border-radius: 8px;
    font-size: 14px;
    background-color: #FCF1F1;
}

/* Estilos para el menú móvil */
@media screen and (max-width: 991px) {
    .navigation-menu {
        display: block !important;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        max-width: 400px;
        background-color: #001828;
        padding: 120px 40px 40px;
        transition: all 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }

    .w-nav-menu {
        background-color: #001828 !important;
        height: 100vh !important;
    }

    .navigation-menu.show {
        right: 0;
    }

    .navigation-menu .navigation-link {
        color: white !important;
        font-size: 18px;
        padding: 20px 0;
        border-bottom: none;
        opacity: 0.9;
        transition: all 0.3s ease;
        display: block !important;
        text-align: left;
        font-weight: 400;
        margin: 0;
    }

    .navigation-menu .navigation-link:hover {
        opacity: 1;
        background-color: rgba(255,255,255,0.05);
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        z-index: 998;
        backdrop-filter: blur(3px);
    }

    .menu-overlay.show {
        display: block;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        cursor: pointer;
        z-index: 1000;
        margin-left: 20px;
        position: relative;
        top: 2px;
    }

    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: white;
        transition: all 0.3s ease;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Ajustes de layout para el header */
    .div-block-2 {
        display: flex;
        align-items: center;
    }

    .div-block-2 .button,
    .div-block-2 .navigation-link:not(.link) {
        display: none;
    }

    /* Estilos para los botones dentro del menú */
    .navigation-menu .button-2,
    .navigation-menu .button {
        display: inline-block !important;
        margin: 25px 0;
        width: 100%;
        text-align: center;
        background-color: #4AA3DF;
        color: white !important;
        border: none;
        padding: 15px 25px;
        border-radius: 4px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .navigation-menu .button-2:hover,
    .navigation-menu .button:hover {
        background-color: #3993d0;
        transform: translateY(-1px);
    }

    /* Ajuste para el selector de idioma */
    .link {
        margin-right: 0px;
    }

    /* Forzar visibilidad del menú cuando está activo */
    .w-nav-overlay {
        display: none !important;
    }

    /* Asegurar que el menú tenga el fondo correcto */
    .w-nav[data-collapse="medium"] .w-nav-menu {
        background-color: #002B5C !important;
    }
    .container-info-simple {
        padding: 5rem 4rem 3.5rem;
    }
    .list-content {
        width: 100%;
    }
    .box-list {
        flex-direction: column;
    }
    .box-info-sm h2 {
        font-size: 42px;
        line-height: 50px;
    }
}
@media screen and (max-width: 767px) {
    .box-info-sm h2 {
        font-size: 34px;
        line-height: 40px;
    }
    ul.list-sm li, ul.list-close li {
        font-size: 16px;
        line-height: 20px;
    }
    .box-exclusion h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .box-exclusion {
        padding: 2rem 1.5rem;
        margin-top: 0;
    }
    .container-info-simple {
        padding: 4rem 2rem 3rem;
    }
} 
/* Asegurar que el menú móvil esté oculto en desktop */
@media screen and (min-width: 992px) {
    .hamburger-menu {
        display: none;
    }
} 