*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root
{
    --color_Fondo_Menu:rgba(255, 255, 255, 0);
    --color_textos_menu:rgb(255, 255, 255);
    --color_textos_menu_hover:#dc107f;
    /*colores principales de el negocio*/
    --color_plusvalia_azul:#108c7d;
    --color_aenidades_rosa: #dc107f;
    --color_comercial_morado: #97257f;
    --color_ubicacion_azul_fuerte: #3c5393;
    --color_inversion_naranja: #f09130;

    --height_logo:65px; 
    --height_logo_scroll:55px; 
    --tamaño_logo_footer:80px;
}
/*--------------------------------------------*/
/*animacion_cargando*/
.cont_fondo_cargando
{
    z-index: 5;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    background-color: var(--color_ubicacion_azul_fuerte);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_fondo_cargando img
{
    width: 250px;
}
.animacion_crecer 
{
  animation: crecerReducir 1s infinite alternate; /* Animación infinita */
}
  
@keyframes crecerReducir 
{
  from { transform: scale(1); } /* Tamaño inicial */
  to { transform: scale(1.1); } /* Tamaño al finalizar la animación */
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*menu*/
.contenedor_header_principal
{
    z-index: 999;
    position: absolute;
    top:10px;
    width: 100%;
    height: 70px;
    /*border: 1px solid red;*/
    background-color: var(--color_Fondo_Menu);
    display: flex;
    align-items:center;
    justify-content:flex-start;
    padding-left: 50px;
}
.cont_logo
{
    width: 80px;
    height: var(--height_logo);
    /*border: 1px solid red;*/
    background-image: url(../img/logo_habita_circular.jpeg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/*contenedor opciones en menu*/
.cont_menu_opciones
{
    height: 70px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid red;*/
}
.cont_menu_opciones a
{
    text-decoration: none;
    font-size: 15px;
    color: var(--color_textos_menu);
    padding: 0px 7px;
    transition: all 0.3s ease;
    text-align: center;
}
.cont_menu_opciones a:hover
{
    color: var(--color_comercial_morado) !important;
}
.linea_menu
{
    width: 0%;
    height: 2px;
    background-color: var(--color_comercial_morado);
    margin-top: 3px;
    transform: width;
    transition: all 0.3s ease;
}
.cont_menu_opciones a:hover .linea_menu
{
    width: 100%;
}

/*contenedor de el boton menu modo movile*/
.cont_boton_menu_movile
{
    width: 50px;
    height: 50px;
    border: 1px solid white;
    border-radius: 5px;
    display: none;
    align-items: center;
    justify-content: center;
}
.cont_boton_menu_movile i
{
    font-size: 30px;
    color:white;
}

/*--------------------------------------------------------*/
/*header scroll*/
.cont_header_scroll
{
    z-index: 999;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 60px;
    background-color: white;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content:flex-start;
    padding-left: 50px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
.logo_scroll
{
    height: var(--height_logo_scroll);
    opacity: 0.9;
}
#opciones_menu_2
{
    top: 65px;
}
/*------------------------------------------------------------*/
/*responsive*/
@media screen and (max-width:840px)
{
    .contenedor_header_principal
    {
        justify-content: space-between;
        padding-right: 50px;
    }
    .cont_menu_opciones
    {
        position: fixed;
        top: 75px;
        right: 0px;
        width: 270px;
        height: auto;
        border-radius: 5px 0 0 5px;
        background-color: white;
        flex-direction: column;
        padding: 10px 0; 
        -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
        -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
        box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);

        right: -300px; /* Lo escondemos fuera de la pantalla */
        transition: right 0.3s ease; /* Le damos una animación suave al salir */
    }

    .cont_menu_opciones.activo {
        right: 0px; /* Lo regresa a la pantalla */
    }


    .linea_menu
    {
        display: none;
    }
    .cont_menu_opciones a
    {
        width: 100%;
        height:50px;


        /* color: var(--color_aenidades_rosa); */
        color: var(--color_aenidades_rosa) !important;

        font-size: 20px !important;
        background-color: white;
        border-bottom: 1px solid var(--color_aenidades_rosa);
        text-align: left;
        /* display: flex;
        align-items: center; */

        display:block;
        line-height: 50px;
        padding: 0 20px;
        box-sizing: border-box;

    }
    /*boton movile*/
    .cont_boton_menu_movile
    {
        display: flex;
    }
    .cont_header_scroll
    {
        justify-content: space-between;
        padding-right: 50px;
    }
}
@media screen and (max-width:570px)
{

}
@media screen and (max-width:395px)
{

}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer*/
.contenedor_footer
{
    width: 100%;
    height: auto;
    /* background-image: url(../img/img_footer.png); */
    background-color: white;
    background-size: cover;
    background-position: bottom;
    clip-path: polygon(83% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
}
.filtro_footer
{
    width: 100%;
    height: auto;
    padding-top: 50px;
    /* clip-path: polygon(83% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
    background-color: rgba(38, 47, 78, 0.703); */
    display: flex;
    align-items:flex-end;
    justify-content: center;
}
.cont_informacion_footer
{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*border: 1px solid green;*/
}
.cont_logo_footer
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    border-bottom: 1px solid white;
    padding: 10px 0;
}
.cont_logo_footer img
{
    height: var(--tamaño_logo_footer);
    margin-left: 10px;
}
.cont_arriba_footer
{
    width: 100%;
    display: flex;
    align-items:flex-start;
    justify-content:space-between;
    padding: 10px 0;
}
.cont_izq_footer
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.cont_izq_footer p
{
    font-size: 17px;
    color: black;
    text-align: justify;
}
.cont_der_footer
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    /*border: 1px solid red;*/
}
.cont_der_footer h2
{
    font-size: 17px;
    color: black;
    font-weight: 500;
    padding-bottom: 30px;
}
.cont_redes_footer
{
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.boton_red_footer
{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 10px;
    margin: 2px 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_red_footer:hover
{
    transition: all 0.3s;
    border: 2px solid rgb(0, 0, 0);
}
.boton_red_footer:hover i
{
    transition: all 0.3s;
    color: rgb(0, 0, 0);
}
.boton_red_footer i
{
    font-size: 20px;
    color: rgb(0, 0, 0);
}
.cont_abajo_footer
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgb(0, 0, 0);
    padding: 10px 0;
}
.cont_abajo_footer_izq
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cont_abajo_footer_der
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cont_abajo_footer h3
{
    font-size: 20px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-align: center;
    padding-bottom: 10px;
}
.cont_abajo_footer img
{
    height: 40px;
}
/*------------------------------------------------------------*/
/*responsive*/
@media screen and (max-width:840px)
{
    .cont_arriba_footer
    {
        flex-direction: column;
    }
    .cont_izq_footer
    {
        width: 100%;
        padding-bottom: 10px;
    }
    .cont_der_footer
    {
        width: 100%;
    }
}
@media screen and (max-width:570px)
{
    .cont_logo_footer
    {
        justify-content:center;
    }
    .cont_izq_footer p
    {
        text-align: center;
    }
    .cont_abajo_footer
    {
        flex-direction: column;
    }
    .cont_abajo_footer_izq
    {
        padding: 10px 0;
    }
    .cont_abajo_footer_der
    {
        padding: 10px 0;
    }
}
@media screen and (max-width:395px)
{
    .cont_logo_footer img
    {
        height: 60px;
    }
    .cont_izq_footer p
    {
        font-size: 15px;
    }
    .cont_abajo_footer h3
    {
        font-size: 17px;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*footer modificado*/

.nuevo-footer-boreales{
    background-color: #e4e5e7;
    padding: 50px 80px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: 220px;
}

.footer-col-izq, .footer-col-der{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-col-der {
    align-items: flex-end;
    text-align: right;
}

/*-- Seccion de logos --*/

.footer-logos{
    display: flex;
    align-items: center;
    gap: 25px;
}

.footer-logos img{
    height: 100px;
    object-fit: contain;
}

.separador-logos{
    width: 2px;
    height: 50px;
    background-color: #a0a0a0;
}

/*--Seccion de telefono --*/
.footer-telefono p {
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/*--seccion legales --*/

.footer-legales {
    min-width: 500px; 
}


.footer-legales p {
    color: #333333;
    font-size: 13px;
    line-height: 1.5;
    white-space: nowrap;
    text-align: center;
}

.footer-legales b {
    font-weight: 800;
    font-family: 'Montserrat-Bold', sans-serif;

}

.linea-morada-footer {
    width: 25%;
    height: 4px;
    background-color: #b3167f;
    margin-top: 15px;
    margin-left: 35%;

}

/*--Seccion de redes --*/

.footer-iconos-redes {
    display: flex;
    gap: 45px;
    margin-right: 35% !important;
}

.icono-red {
    width: 60px;
    height: 60px;
    /* background-color: #2b3346; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s;
}
.icono-red i {
    font-size: 60px !important; 

}


/*Responsivo*/
@media screen and (max-width: 840px){
    .nuevo-footer-boreales {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 50px;
    }

    .footer-col-izq, .footer-col-der{
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .linea-morada-footer {
        margin: 15px auto 0 auto;
    }

    .footer-iconos-redes {
    display: flex;
    gap: 45px;
    margin-right: 5% !important;
    
   }

   .icono-red i {
    font-size: 80px !important; 

}

    


}
