*
{
    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: 2;
    position: absolute;
    top:0px;
    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: 2;
    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;
        -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);
    }
    .linea_menu
    {
        display: none;
    }
    .cont_menu_opciones a
    {
        width: 100%;
        height:40px;
        color: var(--color_aenidades_rosa);
        font-size: 20px !important;
        background-color: white;
        border-bottom: 1px solid var(--color_aenidades_rosa);
        text-align: left;
        display: flex;
        align-items: center;
    }
    /*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-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: white;
    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: white;
    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 white;
    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 grey;
}
.boton_red_footer:hover i
{
    transition: all 0.3s;
    color: grey;
}
.boton_red_footer i
{
    font-size: 20px;
    color: white;
}
.cont_abajo_footer
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid white;
    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: white;
    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;
    }
}