.produtos-section {
    width: 100%;
}

.produtos-container {
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
}

.produtos-container h1 {
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #1F1F1F;
    margin-bottom: 15px;
    margin-top: 150px;
}

.produtos-container p {
    font-size: 25px;
    color: #1F1F1F;
    margin-bottom: 50px;
    font-family: "Poppins", sans-serif;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 398px);
    gap: 24px;
    justify-content: center;
    margin-bottom: 50px;
}

.produtos-card {
    width: 398px;
    height: 504px;
    border-radius: 10px;
    overflow: hidden;
}

.produtos-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produtos-card:hover img {
    transform: scale(1.05);
}

.produtos-btn {
    width: 380px;
    height: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #7a4632;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.produtos-btn-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 45px;
}

@media (max-width: 1280px) {
    .produtos-grid {
        grid-template-columns: repeat(2, 398px);
    }

    .produtos-grid {
        gap: 10px;
    }

    .produtos-container h1 {
        font-size: 30px;
        margin-top: 125px;
    }

    .produtos-container p {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

@media (max-width: 860px) {
    .produtos-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
        gap: 20px;
    }

    .produtos-card {
        width: 100%;
        max-width: 100%;
        height: 420px;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .produtos-container h3 {
        font-size: 30px;
    }

    .produtos-btn {
        width: 100%;
        max-width: 300px;
        font-size: 18px;
    }
}