
body, html {
    height: 100%;
    margin: 0;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color:#000000
}
.container-fluid {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.row {
    width: 100%;
    height: 100%;
}
.col {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    color: white;
    text-align: center;
    padding-bottom: 5%;
}
.col-1 {
    background-image: url('bg-1.webp');
    background-size: cover;
    background-position: center;
}
.col-2 {
    background-image: url('bg-2.webp');
    background-size: cover;
    background-position: top center;
}
.content {
    padding: 20px 25%;
}
.btn-cta,
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    margin-top: 20px;
    padding: 10px 20px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 50px;
    min-width: 150px;
    min-height: 40px;
}
.btn-cta:hover {
    background-color: #f5f5f5;
    color: #000000;
}

/* Footer Styling */
footer {
    background-color: #f8f9fa;
    padding: 20px;
    border-top: 1px solid #e7e7e7;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}
.footer-column h5 {
    font-size: 16px;
    font-weight: bold;        
    margin-bottom: 10px;
    color:#000000
}
.footer-column p, .footer-column a {
    margin: 0;
    font-size: 14px;
    color:#000000;
    text-decoration: none;
}
.footer-column a:hover {
    text-decoration: underline;
}
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding-bottom: 7px;
    color:#000000
}
.social-icons a {
    font-size: 24px;
    color:#000000;
    text-decoration: none;
}
.footer-column.column-left-one {
    min-width: 0;
    max-width: 320px;
}

/* Estilos adicionales para la fila final del footer */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-bottom .copy, .footer-bottom .policies {
    flex: 1;
    text-align: left;
}
.footer-bottom .copy {
    color: #797979;
}
.footer-bottom .policies {
    text-align: right;
}

.footer-bottom .policies  a{
    color:#000000;
    text-decoration: none;
}
.footer-mobile {
    display: none;
}

/* Ajuste adicional de la altura para evitar superposición en móviles */
@media (max-width: 1024px) {
    .container-fluid {
        height: auto; /* Permite que el contenedor se ajuste según el contenido */
    }
    .col-1,
    .col-2 {
        height: 80vh;
    }
    .content {
        padding: 20px;
    }
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-column {
        width: 100%;
        margin: 0;
    }
    .footer-bottom {
        flex-direction: row;
        align-items: flex-start;
    }
    .footer-bottom .copy {
        text-align: left;
        margin: 5px 0;
        font-size: 10px;
        color: #797979;
    }
    .footer-bottom .policies {
        text-align: right;
        margin: 5px 0;
        font-size: 10px;
        color:#000000
    }
    .footer-bottom .policies  a{
        color:#000000;
        text-decoration: none;
    }
        
    /* Ocultar el footer general en dispositivos móviles */
    footer {
        display: none;
    }

    /* Mostrar el footer móvil */
    .footer-mobile {
        display: block;
        padding: 20px;
        background-color: #ffffff;
        border-top: 1px solid #e7e7e7;
        text-align: center;
        position: relative;
        bottom: 0; /* Asegurar que el footer esté al final */
        width: 100%;
    }

    .footer-mobile .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer-mobile .footer-column {
        flex: 2;
        display: flex;
    }
    .footer-mobile .footer-column.derecha {
        align-items: flex-end;
        margin-top: 20px;
    }

    .footer-mobile .footer-column h5 {
        font-size: 10px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .footer-mobile .footer-column p, 
    .footer-mobile .footer-column a {
        font-size: 10px;
        margin: 0;
        text-decoration: none;
        color: #000000;
        text-align: start;
    }

    .footer-mobile .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .footer-mobile .social-icons a {
        font-size: 20px;
        color: #000000;
        text-decoration: none;
    }
    .footer-column.inner1,
    .footer-column.inner2 {
        display: flex;
        flex-direction: column;
        width: 50%;
        min-width: 0;
    }
    .footer-column.inner1 {
        align-items: start;
    }
    .footer-column.inner2 {
        align-items: end;
    }
}


@media (min-width: 1024px)  {
    .modal-lg, .modal-xl {
        --bs-modal-width: 80%;
    }
}

.modal-lg, .modal-xl {
    .h3, h3 {
        font-size: calc(1rem + 0.2vw);
    }
}
