/* Estilos CSS básicos */

body {
    font-family: "Sora";
    background: linear-gradient(to bottom right, lightgrey,  white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-bottom: 2rem;
}

@keyframes transicao-animada {
    0% {
        background-color: #ff0000;
    }
    25% {
        background-color: #ffff00;
    }
    50% {
        background-color: #00ff00;
    }
    75% {
        background-color: #00ffff;
    }
    100% {
        background-color: #0000ff;
    }
}

main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    width: 85vw;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 85vw;
    margin-bottom: 1rem;
    transition: 0.5s ease-in-out;
}

header :hover{
    transition: 0.5s ease-in-out;
    color: black;
    animation-delay: 10s;
}

.menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: white;
    width: 85vw;
    border-radius: 0.75rem;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
}

.menu nav {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.descricao {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: darkslateblue;
    margin: 0 0;
}

p {
    font-size: 1rem;
    font-weight: 400;
    color: darkslategray;
    margin: 0 0;
}

h2 {
    margin: 0 0 1rem 0;
}

button:hover {
    background-color: darkslategray;
    transition: ease-in-out 0.25s;
    color: white;
    font-weight: 600;
}

aside {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    width: 100%;
}

aside a {
    font-family: "Sora";
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background-color: darkslateblue;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
    color: whitesmoke;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.5rem;
    transition: ease-in-out 0.25s;
}

aside a:hover {
    transition: ease-in-out 0.25s;
    background-color: darkslategray;
    width: 4rem;
    height: 4rem;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}


.grid {
    display: grid;
    width: 85vw;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    margin-bottom: 1rem;
    counter-reset: lista;
}

.grid div li {
    color: darkslategrey;
    list-style: inside;
    list-style-type: none;
    counter-increment: lista;
    padding: 0;
}

.grid li::marker {
    content: counter(lista, decimal) ". ";
    font-size: 5rem;
    font-weight: 600;
    color: black;
}

.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0.75rem;
    padding: 1rem 1rem;
    width: auto;
    background-color: white;
    box-shadow: 0px 10px 10px 10px rgba(0, 0, 0, 0.03);
    min-height: 8rem;
    height: auto;
    transition: 0.5s ease-in-out;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 85vw;
    height: 3rem
}

footer p {
    font-size: 0.5rem;
    color: darkslategrey;
    text-align: center;
    margin: 0;
    padding: 0;
}

footer .menu a {
    font-size: 1rem;
    font-family: "Sora";
    color: white;
    text-align: center;
    text-decoration: none;
    margin: 0.5rem;
    padding: 0.25rem;
    border-radius: 0.75rem;
    border: none;
    background-color: darkslateblue;
    width: 6rem;
}

footer button a {
    font-size: 1rem;
    font-family: "Sora";
    color: white;
    text-align: center;
    text-decoration: none;
}

.column2 {
    grid-column: 1/3;
}
.grid2 {
    display: grid;
    width: 85vw;
    grid-template-columns: 30% 70%;
    grid-template-rows: repeat(1, 1fr);
    grid-gap: 1rem;
    margin-bottom: 1rem;
    counter-reset: lista;
}

img {
    width: 48px;
    height: auto;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

#grid-social {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: "Sora";
}
form div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
}
form input {
    font-family: "Sora";
    width: 90%;
    height: 2rem;
    border-radius: 0.75rem;
    border: 1px solid darkslategray;
    padding: 0.5rem;
    margin: 0.5rem;
}

form button {
    font-family: "Sora";
    width: 90%;
    height: 2rem;
    border-radius: 0.75rem;
    border: none;
    background-color: darkslateblue;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: ease-in-out 0.25s;
}

form button:hover {
    background-color: darkslategray;
    transition: ease-in-out 0.25s;
}
form textarea {
    font-family: "Sora";
    width: 90%;
    height: 6rem;
    border-radius: 0.75rem;
    border: 1px solid darkslategray;
    padding: 0.5rem;
    margin: 0.5rem;
    resize: none;
}