:root{
    --corpo: #202020;
    --botoes: #0f0f0f;
    --botoes-hover: #303030;
    --container: #F2CB05;
    --header: #0f0f0f;
    --letras-brancas: #ffffff;
}

*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body{
    background-color: var(--corpo);
    color: var(--letras-brancas);
}

.recepcao{
    height: 100vh;
    display: flex;
    margin-bottom: 10px;
}

.recepcao img{
    width: 50%;
}

.recepcao a{
    padding: 20px;
    text-decoration: none;
    color: var(--letras-brancas);
    border-radius: 10px;
    background-color: var(--botoes);
    margin-top: 10px;
}

.recepcao .texto{
    text-align: center;
    margin: auto;
    margin-right: 30px;
    font-size: 2em;
}

.recepcao .texto h2{
    margin-bottom: 50px;
}


/*==== Botão Principal ====*/
.botao {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    border: none;
    color: var(--letras-brancas);
    padding: 15px 40px;
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.botao:hover {
    transform: scale(1.3);
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.6);
}

/*==== Container dos projetos ====*/
#container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background-color: var(--container);
    padding: 30px;
    max-width: 1500px;
    width: 90vw;
    height: 100vh;
    border-radius: 10px;
    margin: auto;
    margin-top: 100px;
    justify-content: center;
    align-items: center;
}

#container a{
    padding: 20px;
    height: 100px;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--letras-brancas);
    border-radius: 10px;
    background-color: var(--botoes);
}

#container a:hover{
    background-color: var(--botoes-hover);
    transition: all 300ms;
    transform: scale(1.1);
}

/*==== Footer ====*/
footer{
    background-color: var(--header);
    color: var(--letras-brancas);
    display: flex;
    margin-top: 100px;
    padding: 15px;
    font-size: 2em;
    align-items: center;
    justify-content: center;
}

footer img{
    width: 80px;
    height: 80px;
    margin: 0 5px;
}


/* Responsividade para telas menores */
@media (max-width: 1024px) {
    .recepcao img {
        display: none;
    }

    .recepcao {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 20px;
    }

    .recepcao img {
        width: 90%;
        margin: 0 auto;
    }

    .recepcao .texto {
        margin: 30px auto 0 auto;
        font-size: 1.5em;
    }

    .recepcao a {
        display: none;
    }

    #container {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
}

@media (max-width: 768px) {
    .recepcao {
        font-size: 1.1em;
    }

    #container {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    #container a {
        font-size: 1.2em;
        padding: 15px;
        height: auto;
    }

    footer {
        gap: 10px;
        font-size: 1.5em;
    }

    footer img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .recepcao .texto h2 {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    
    .botao {
        padding: 12px 30px;
        font-size: 0.9em;
    }

    #container a {
        font-size: 1em;
        padding: 12px;
    }

    footer h3 {
        font-size: 1.2em;
    }
}