* {
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
}
body {
    background-color: aliceblue;
    min-width: 36rem;
}

section {
    margin: 0 1rem;
}


.produtos-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.produtos-card {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border: 2px solid #c7c7c7;
    border-radius: 6px;
}

.produtos-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 1.25rem;
    background-color: #e5e4e4;
    border-bottom: 2px solid #c7c7c7;
    border-radius: 4px 4px 0 0;
}


.produtos-filtro {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: 0 1.05rem 1.25rem;
    padding: 0 1.25rem 1.75rem;
    border-bottom: 2px solid #c7c7c7;
}

.produtos-filtro label {
    font-weight: 500;
}

.produtos-filtro input {   
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}


.produtos-footer {
    margin: 1.25rem;
    display: flex;
    justify-content: flex-start;
}


/* HOME WRAPPER */
.home-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* MAIN CARD */
.home-card {
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border: 1px solid #dadada;
    padding: 30px;
    border-radius: 4px;
    margin: 0 2rem;
}

.home-card h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.home-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}


.home-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.home-box {
    flex: 1;
    background: #f8f9fb;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    padding: 20px;
    text-decoration: none;
    color: #000;
    transition: 0.2s;
}

.home-box:hover {
    background: #e7eaee;
    transform: translateY(-2px);
}

.home-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.home-box p {
    font-size: 14px;
    color: #555;
}