:root
{
    --color_verde_fondo:#8ca100;
    --color_verde:#BAD600;
    --color_verde_borde:#6f8000;
    --color_amarillo: #FBC800;
    --color_amarillo_borde: #c29b00;
     --color_azul: #00A2D2;
    --color_rojo: #DC2A1B;
    --color_rojo_borde: #a72115;
    --color_rosa_fuerte: #E00584;
    --color_rosa_fuerte_borde:#920055;
    --color_gris:#555555;
    --color_gris_bajo: #616161;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}
.text_c_rosa
{
    color: var(--color_rosa_fuerte);
}
.text_c_rojo
{
    color: var(--color_rojo);
}
.text_c_azul
{
    color: var(--color_azul);
}
.text_c_rosa
{
    color: var(--color_rosa_fuerte);
}
.text_c_rojo
{
    color: var(--color_rojo);
}
.text_c_amarillo
{
    color: var(--color_amarillo);
}
.color_text_gris
{
    color: var(--color_gris);
}
.color_text_gris_bajo
{
    color: var(--color_gris_bajo);
}

.bg_azul
{
    background-color: var(--color_azul);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera sección*/
.h_100vh_custom
{
    height: 90vh;
}
.box_info_pt1
{
    background-color: var(--color_verde_fondo);
    border: 4px solid white;
    border-radius: 40px 10px 40px 10px;
}

.boton_contacto
{
    width: 200px;
    height: 40px;
    background-color:var(--color_amarillo);
    border-bottom: 5px solid var(--color_amarillo_borde);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--color_gris);
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.boton_contacto:hover
{
    background-color: var(--color_verde);
    border-bottom: 5px solid var(--color_verde_borde);
}
.rojo_rosa
{
    background-color: var(--color_rosa_fuerte);
    border-bottom: 5px solid var(--color_rosa_fuerte_borde);
    color: white;
}
.rojo_rosa:hover
{
    background-color: var(--color_rojo);
    border-bottom: 5px solid var(--color_rojo_borde);
}

.columnas_inverter
{
    flex-direction: row;
}

@media (max-width: 991px)
{
    .columnas_inverter
    {
        flex-direction:column-reverse;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda sección*/
.img_fondo
{
    background-image: url(../img/fondo_img.png);
    background-position: center;
    background-size: cover;
}
.img_fondo_2
{
    background-image: url(../img/fondo_img_2.png);
    background-position: center;
    background-size: cover;
}
.img_cover
{
    object-fit: cover;
    object-position: center;
}
.border_img
{
    border: 5px solid var(--color_verde);
    border-radius: 10px;
}
.h_box_custom
{
    height: 200px;
    background-color: white;
    border-radius: 10px;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera sección*/
.img_fondo_3
{
    background-image: url(../img/fondo_img_galeria.jpg);
    background-position: center;
    background-size: cover;
}
.max_height
{
    height: auto;
}
.border_10px
{
    border: 10px solid white;
}
.cont_img_principal
{
    position: relative;
    height: 200px;
}
@media (max-width: 991px)
{
    .cont_img_principal
    {
        height: 250px;
    }
}
.cont_fondo_movible
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: rotate(-5deg);
    transition: all 0.5s ease;
}
.cont_img_principal:hover .cont_fondo_movible
{
    transform: rotate(0deg);
}
.img_galeria
{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

.cont_pantalla_completa
{
    z-index: 5;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.boton_cerrar
{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--color_rojo);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boton_cerrar:hover
{
    background-color: var(--color_rosa_fuerte);
}
.boton_cerrar i
{
    font-size: 2.5rem;
    color: white;
}
@media (max-width: 991px)
{
    .visualizador
    {
        width: 90%;
        height: auto;
    }
}