/* Conteudo- 1 */
.maer {
    background-color: #fff;
}
.conteudo-1 {
    max-width: 1300px;
    margin: auto;
    padding: 20px;
    display: flex;
    align-items: center;
    margin-top: -10rem;
    gap: 5rem;
}

.desc-conteudo-1 {
    overflow-y: hidden;
    width: 50%;
    height: 100vh;
    margin-top: 5rem;
}

.desc-conteudo-1 h2 {
    text-align: left;
    font-size: 36px;
    color: #ffa500;
    margin-bottom: 10px;
}

.desc-conteudo-1 p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
}

.button-conteudo-1 {
    background-color: #ffa500;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 20px 90px;
    border-radius: 5px;
}

.img-conteudo-1 {
    width: 50%;
    margin-bottom: 50px;
    margin-top: -10px;
}

/* Feed */

.feedback-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffa500;

    margin-top: -10%;
}

.feedback-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.feedback-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    margin-top: 50px;
}

/* Cartões de feedback */
.feedback-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feedback-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.feedback-card h3 {
    font-size: 1.2rem;
    color: #ffa500;
    margin-bottom: 5px;
}

.feedback-card p {
    font-size: 1rem;
    color: #555;
}

/* Responsivo */
@media (max-width: 768px) {
    .feedback-container {
        grid-template-columns: 1fr;
    }

    .feedback-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #fff;
    }
}

@media (max-width: 968px) {

    /* Conteudo- 1 */
    .conteudo-1 {
        max-width: 1200px;
        margin: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0rem;
        gap: 1rem;
    }

    .desc-conteudo-1 {
        overflow-y: hidden;
        width: 100%;
        height: 50vh;
        margin-top: 1rem;
    }

    .desc-conteudo-1 h2 {
        text-align: left;
        font-size: 32px;
        color: #ffa500;
        margin-bottom: 10px;
    }

    .desc-conteudo-1 p {
        margin-top: 20px;
        font-size: 16px;
        font-weight: 500;
    }


    .button-conteudo-1 {
        background-color: #ffa500;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        padding: 20px 50px;
        border-radius: 5px;
    }


    .img-conteudo-1 {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
    }

    .img-conteudo-1 img {
        width: 80%;
        height: auto;
    }
}