*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    /*colores generales*/
    --background-color:#231212;
    --color:#ffffff;
    --hover-color:#2117af;
/*barra navegacion*/
    --nav-background-gradient1:#212124;
    --nav-background-gradient2:#0e0a5d;
    --nav-background-gradient3:#212124;
    --nav-color:#f3efb2;
    --nav-shadow:#595e8c;

    /**/
    background-color: var(--background-color);
    color: var(--color); 

    /*TIPO DE LETRA*/
    font-family: "Overlock SC", sans-serif;
    font-weight:800;
    font-style: normal;
    }

    .fondo{
        background-image: url(/imagenes/fondo-principal_1.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        mask:linear-gradient(to top, rgba(254, 254, 254, 0), #000 15%, #000 85%, rgba(254, 254, 254, 0));
    }

    /*----------------------------------------------------*//*----------------------------------------------------*//*----------------------------------------------------*/

/*header*/
/*Barra navegCION*/
/*https://www.youtube.com/watch?v=DUTAq24fbWk    <--- barra navegacion responsive*/

.nav__container{
    position: fixed;
    width: 100%;
    height: auto;
    padding: 10px 0 10px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(0.25turn,var(--nav-background-gradient1),var(--nav-background-gradient2),var(--nav-background-gradient3));
    box-shadow: 0 0 15px var(--nav-shadow);
    z-index: 10;
}

.menu-icono{
    width: 35px;
}

.logo{
    width: 80px;
    height: 50px;
}

.ul__nav{
    list-style: none;   
}

.nav__container .nav .ul__nav .item__nav{    
    position: relative;
    float: left;
}

.nav__container .nav .ul__nav .item__nav a{
    text-decoration: none;
    padding: 10px;
    color: var(--color);
    display: block;
    font-weight: bolder;
    font-size: 1.1em;
}

.item__nav{
    padding: 5px;
    border-radius: 15px;
    transition: background-color 0.3s;
    margin: 0 3px 0 3px;
}

.item__nav:hover{
    background-color: var(--hover-color);
}

#menu{
    display: none;
}

.nav__container label{
    cursor: pointer;
    display: none;
}
/*----------------------------------------------------*/

/*----------------------------------------------------*/
/*MAIN*/


.main__container{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 1.5em; 
    min-height: 100dvh;
    min-width: 100%;
    /*border: 5px solid #2214e5;*/
    color: var(--color);
    justify-content: center;
    align-items:center;
    padding-bottom: 15px;
}

h1{ 
    max-width: 800px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.informacion{
    text-align: justify;
    text-wrap: balance;
    max-width: 800px;
    margin-bottom: 15px;
    padding: 0 30px;
}

.redes__sociales{
    text-align: center;
    margin: 10px;
}

.redes__sociales-titulo{
    margin-bottom: 15px;
}

/*----------------------------------------------------*/

/*----------------footer*/

/*https://www.youtube.com/watch?v=sgDabqmtLUg*/
.footer{
    background-color: #24262b;
    padding: 60px 0;
    mask:linear-gradient(to top, rgba(254, 254, 254, 0), #000 10%, #000 90%, rgba(254, 254, 254, 0));
}

.container__footer{  
    min-width: 100%;
    margin: 0 auto;
}  

.ul__list{
    list-style: none;
}

.footer-row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 30px;
    justify-content: center;
}

.footer-links{
    padding: 30px 10px;
    margin: 0 10px;
    width: 20%;
}

.footer-links h4{
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: bold;
    border-bottom: 2px solid #00c3ff;
    padding-bottom: 10px;
    /*display: inline-block;*/
}

.footer-links ul li a{
    font-size: 18px;
    text-decoration: none;
    color:#8389bf;
    display: block;
    margin-bottom: 10px;
    transition: all .3s ease;
    
}

.footer-links ul li a:hover{
    color: #fff;
    padding-left: 8px;
}

.social-links img{
    display: inline-block;
    min-height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 10px 10px 0;
    padding: 5px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5 ease;
    box-shadow: 0 0 10px #ffffff;
    
}

.social-links img:hover{
    /*background-color: #00c3ff;*/
    background-color: #1302ff;
}

/*----------------------------------------------------*/

/*         media queries*/
/*         media queries*/
/*         media queries*/

/*BARRA de navegación*/

@media (max-width:650px){
    .nav__container{
        min-height: 80px;
        top:0;
        padding: 15px;
    }
    .nav__container label{
        display: initial;
    }
    .nav__container .nav{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        background-color: #292b41;
    }
    .nav__container .nav .ul__nav .item__nav{
        width: 100%;
    }
    #barra_nav.active{
    display: initial;  
    }

    /*#menu:checked ~ .nav{
        display: initial;
    }*/

            /*cambio del tamaño de la letra del main y sections*/
            .main__container{
            font-size: 1em;
            }
    
            /* FOOTER FOOTER*/
    .footer-row{
        text-align: center;
    }

    .footer-links{
        width: 100%;
        margin-bottom: 30px;
    }


}