/*VARIABLES*/
:root {
    --light-orange1: #ffe08c;
    --light-orange2: #ffdd80;
    --light-orange3: #ffdc7d;
    --light-orange4: #ffd666;
    --dark-orange1: #c99400;
    --dark-orange2: #b88702;
    --dark-orange3: #a37802;
    --dark-orange4: #825f00;
    --normal-orange: #e6ad12;
    --dark-green1: #105e00;
    --dark-green2: #0c4a00;
    --dark-green3: #093300;
    --dark-green4: #153b0d;
    --normal-green: #40c425;
    --light-green1: #86ff6e;
    --light-green2: #7bff61;
    --light-green3: #6bfc4e;
    --light-green4: #54fc32;
    --dark-red1: #820000;
    --dark-red2: #690101;
    --dark-red3: #4f0101;
    --dark-red4: #4a0404;
    --light-red1: #ff3b3b;
    --light-red2: #fa2828;
    --light-red3: #e34040;
    --light-red4: #e34040;
    --normal-red: #e61515;
    --white: #fff;
    --black: #000;
}
/*END VARIABLES*/

body {
    width: 100%;
    overflow-x: hidden;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: #fff;
}


a {
    text-decoration: none;
    color: var(--white)
}

a:hover {
    text-decoration: underline;
}

/*BACKGROUNDS*/

.background-light-green{
    background: var(--light-green3);
    color: var(--white);
}

.background-dark-green{
    background-color: var(--dark-green3);
    color: var(--white);
}

.background-dark-orange{
    background: var(--dark-orange1);
    color: var(--white);
}

.background-light-orange{
    background: var(--light-orange2);
    color: var(--black);
}

.background-white{
    background: var(--black);
    color: #000;
}

.background-black{
    background: #000;
    color: var(--white);
}

/*REUTILIZÁVEL*/

.container {
    max-width: 1440px;
    width: 100%;
    padding: 2.7rem 5%;
    margin: 0 auto;
}

section {
    padding: 2.7rem 0;
}

/*NAVBAR*/

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

nav ul{
    display: flex;
    align-items: center;
}

nav ul li{
    margin: 0 35px;
    font-size: 15px;
    list-style: none;
}

nav .logo img {
    width: 50px;
    height: 50px;
    border-radius: 9pc;
    margin: 0 20px;
}

.menu-icon {
    display: none;
    position: relative;
    z-index: 10;
}

/*MAIN*/
main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}

main .container .main-text {
    font-size: 40px;
    justify-content: space-between;
}

main .container .main-text a button {
    width: 90px;
    height: 60px;
    background: linear-gradient(20deg, var(--dark-orange4), var(--dark-orange1), var(--dark-orange3));
    border: none;
    border-radius: 10px;
}

.main-img img{
    width: 100px;
    height: 100px;
}

/*ABOUT*/
section#about h2 {
    text-align:  center;
    font-weight: bold;
    font-size: 60px;
}

section#about .about-text {
    font-size: 40px;
    text-align: center;
    justify-content: center;
}

/*FOOTER*/

footer .container {
    display: flex;
}

footer .container ul {
    width: 25%;
}

footer .container ul h2 {
    margin-bottom: 16px;
    font-weight: 600;
}

footer .container ul li {
    list-style: none;
}

.bluesky-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

footer .container ul .logo {
    width: 90px;
    height: 90px;
    border-radius: 9px;
    margin-bottom: 16px;
}

footer .container ul .social {
    margin-top: 16px;
}

footer .copyright {
    margin-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

/*RESPONSIVD*/
@media (max-width: 960px) {
    .menu-icon {
        display: block;
        width: 60px;
        height: 60px;
        margin-right: 50px;
    }

    nav ul.ul {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark-orange3);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease-in-out;
    }
    
    nav ul.ul li {
        font-size: 30px;
        margin: 20px 0;
    }

    nav ul.active {
        left: 0;
    }
    
    main .container {
        flex-direction: column;
        justify-content: center;
    }
    
    main .container .menu-text {
        text-align: center;
    }
    
    main .container .menu-img {
        width: 60px;
        height: 60px;
    }
    
    main .container .menu-text a button {
        width: 200px;
        height: 80px;
    }
    
    #about .container .main-text {
        font-size: 20px;
    }
    
    footer .container {
        flex-direction: column;
    }
    
    footer .container ul{
        width: 100%;
        margin-bottom: 20px;
    }
}