/* Estilo para o header */
* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;

}

header {
    background-color: rgb(120, 150, 100);
    padding: 15px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav a:hover {
    color: rgb(157, 106, 74);
}

nav i {
    font-size: 18px;
}




body {

    background-color: rgb(120, 150, 100);
}


h2 {
    text-align: center;
    font-size: 2rem;
    color: white;
}

p {

    font-size: 1.5rem;
    color: white;
}

section {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 100px);
    gap: 20px;
    align-content: center;
    justify-items: start;
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px;
}

.hidden {

    opacity: 0;
    filter: blur(15px);
    transform: translateX(-100%);
    transition: all 1s;

}

.show {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0%);
    transition: all 1s;
}

.botao {
    padding: 10px 20px;
    background-color: rgb(157, 106, 74);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botao:hover {
    background-color: rgb(128, 182, 92);

}

@media screen and (max-width: 600px) {

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
    }
    
}
@media screen and (max-width: 400px) {
    p {
        font-size: 1rem;
    }
    
}