/*TODAS LAS PAGINAS*/

@font-face {
    font-family: 'MVOID';
    src: url('../assets/fonts/MVOID.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #000000;
    color: #fff;
    font-family: 'MVOID', sans-serif;
    font-weight: 100;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    width: 60px;
    height: 60px;
    rotate: -20deg;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li{
    list-style: none;
    margin-right: 20px;
}

nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 100;
}

nav ul li a:hover{
    font-weight: bold;
}

#main{
    flex: 1;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 20px;
    flex-wrap: wrap;
}

footer .footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 20px;
}

footer .footer-links a{
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease-in-out;
}

footer .footer-links a:hover{
    opacity: 1;
    font-weight: bold;
}

footer .derechos{
    display: flex;
    justify-content: center;
    margin: 20px;
    align-items: center;
}

footer .derechos p{
    font-size: 20px;
    font-weight: 100;
}

footer .nombre-studio{
    display: flex;
    justify-content: center;
    align-items: center;
}

/*SOLO INDEX*/
.ahero{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

.ahero .hero-title{
    display:contents;
    justify-content: center;
    align-items: center;
}

.ahero .hero-title h2{
    font-size: 60px;
    font-weight: 900;
    text-align: center;
}

.ahero .hero-title h4{
    font-size: 30px;
    font-weight: 100;
    text-align: center;
    margin-top: 10px;
}

.ahero .descubre{
    display: flex;
    height: 70px;
    width: 200px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.ahero .descubre a{
    color: #000000;
    border-radius: 10px;
    background-color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.ahero .descubre a:hover{
    background-color: #000000;
    color: #fff;
    border: 1px solid #fff;
}

/*PRIMERA PARTE*/

.nosotros{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5%;
    height: 100vh;
}

.nosotros .nosotros-title{
    display: flex;
    justify-content: left;
    align-items: left;
    width: 50%;
}

.nosotros .nosotros-title h2{
    font-size: 60px;
    font-weight: 900;
    text-align: left;
}

.nosotros .nosotros-description{
    display: flex;
    width: 50%;
    justify-content: left;
    align-items: left;
    flex-direction: column;
    margin-top: 15px;
}

.nosotros .nosotros-description p{
    font-size: 25px;
    font-weight: 100;
    text-align: left;
    margin-top: 10px;
}

/* LEGAL PAGES */
.legal-page{
    width: min(900px, 90%);
    margin: 0 auto;
    padding: 150px 0 80px;
}

.legal-hero{
    margin-bottom: 50px;
}

.legal-hero h1{
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 18px;
}

.legal-hero p,
.legal-section p,
.legal-section li{
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 100;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.legal-updated{
    color: rgba(255, 255, 255, 0.58);
    margin-top: 12px;
}

.legal-section{
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 32px 0;
}

.legal-section h2{
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    margin-bottom: 16px;
}

.legal-section ul{
    padding-left: 24px;
}

.legal-section li{
    margin: 10px 0;
}

.legal-section a{
    color: #fff;
}

@media (max-width: 720px){
    header{
        position: absolute;
        flex-direction: column;
        gap: 4px;
    }

    nav ul{
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav ul li{
        margin-right: 0;
    }

    nav ul li a,
    footer .footer-links a,
    footer .derechos p{
        font-size: 16px;
    }

    footer{
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    footer .derechos,
    footer .footer-links{
        margin: 10px;
    }

    .ahero .hero-title h2,
    .nosotros .nosotros-title h2{
        font-size: 44px;
    }

    .ahero .hero-title h4,
    .nosotros .nosotros-description p{
        font-size: 22px;
    }

    .nosotros,
    .nosotros .nosotros-title,
    .nosotros .nosotros-description{
        width: 90%;
        align-items: flex-start;
    }

    .legal-page{
        width: 88%;
        padding-top: 190px;
    }
}
