/*Reset*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Elementos*/
h1 {
    font-family: "Akatab", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2.027rem;
    color: #2E2D38;
}
h2 {
    font-family: "Akatab", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.807rem;
    color: #2E2D38;
}
h3 {
    font-family: "Akatab", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.602rem;
    color: #2E2D38;
}
h4 {
    font-family: "Akatab", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.424rem;
    color: #2E2D38;
}
h5, th {
    font-family: "Akatab", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.266rem;
    color: #2E2D38;
}
h6 {
    font-family: "Chocolate Classical Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.125rem;
    color: #9B97B5;
}
p, a, li, td {
    font-family: "Chocolate Classical Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    color: #3D3A58;
}
a {
    text-decoration: none;
}

/*Esconder*/
.hide {
    display: none;
}

/*Header*/
header {
    background-color: #AD9D37;
}
header nav{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 32px;
}
header nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
}
header nav ul li{    
    padding: 8px 24px;
    list-style: none;
    border: 2px solid #FCFCFE;
}

/*Main*/
main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
    align-items: center;
    justify-content: center;
}
/*Section*/
main section article div {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    justify-content: space-between;
}
main section article div div{
    display: flex;
    flex-direction: column;
    max-width: 480px;
    height: 100%;
    border: 2px solid #AD9D37;
    padding: 16px;
}
main section article div div ol {
    margin-left: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
main section article div div div{
    border: none;
    display: flex;
    flex-direction: row;
    gap: 64px;
    justify-content: center;
}
main section article div div div button{
    background-color: #34AD72;
    border: 2px solid #34AD72;
    color: #FCFCFE;
    padding: 8px 16px;
}
footer {
    background-color: #3D3A58;
    color: #FCFCFE;
    text-align: center;
}
footer p {
    color: #FCFCFE;
}
footer img {
    width: 24px;
    height: auto;
}
/* Media query para tabletas */
@media (min-width: 600px) {
    
}
/* Media query para pantallas grandes */
@media (min-width: 1024px) {
    /*Section*/
    main section article div {
        display: flex;
        flex-direction: row;
        gap: 16px;
        padding: 16px;
        justify-content: space-between;
    }
    main section article div div{
        display: flex;
        flex-direction: column;
        max-width: 480px;
        height: 100%;
        border: 2px solid #AD9D37;
        padding: 16px;
    }
    main section article div div ol {
        margin-left: 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    main section article div div div{
        border: none;
        display: flex;
        flex-direction: row;
        gap: 64px;
        justify-content: center;
    }
    main section article div div div button{
        background-color: #34AD72;
        border: 2px solid #34AD72;
        color: #FCFCFE;
        padding: 8px 16px;
    }
}