.container {
    width: 150vh;
    margin: 2.875rem auto;
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.cards-homepage-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
}

.hero-section > p {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

.hero-section > h1 {
    color: var(--text-color-900);
    font-weight: bolder;
    font-size: 3.625rem;
}

.hero-section > p.subtitulo {
    color: var(--text-color-500);
    font-weight: normal;
    font-size: 1.25rem;
    margin-bottom: 0;
}

.board {
    max-width: 328px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 35px 40px;
    background-color: #fff;
    box-shadow:  0px 13px 19px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    /* border: 1px solid #EAECF0;
    border-radius: 5px; */
    
    &:hover {
        /* box-shadow: var(--shadow-sm); */
    }
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.board .title { 
    font-size: 1.375rem;
    font-weight: bold;
    line-height: 1.375rem;
    color: var(--text-color-900);
}

.board .hr {
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.board  .subtitle {
    font-size: var(--font-size-md);
    line-height: 20px;
    letter-spacing: 0.2px;
}

section > h2 {
    color: var(--text-color-900);
    font-weight: bolder;
    margin-top: 2rem;  
}

section .hr {
    width: 100px;
    height: 5px;
    background-color: var(--primary-color);
}

.processo-link {
    display: flex;
    align-items: center;

    & .featured-icon {
        width: 2rem;
        height: 2rem;
        border: none;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 6rem 1rem;
        margin: 0;
        gap: 2.75rem;
    }

    .hero-section > h1 {
        font-size: 2.625rem;
    }

    .hero-section > p {
        margin-bottom: 8px;
    }

    .hero-section > p.subtitulo {
        font-size: 1rem;
    }

    .cards-homepage-container {
        flex-wrap: wrap;
    }

    .board {
        max-width: 100%;
        padding: 1.875rem 2.188rem;
        gap: 0.938rem;
    }
    
    .card-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
}