.container-ajudar {
    display: flex;
    flex-direction: column;
    padding: 50px 20px;
    gap: 30px;
    margin-top: 50px; 
    max-width: 1200px; 
    margin-left: auto;
    margin-right: auto;
}

.container-ajudar h2 {
    font-family: "Caveat", cursive;
    color: #df6e17; 
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    width: 100%;
    text-align: left;
    padding-left: 50px;
}

.titulo-principal {
    font-family: 'Caveat', cursive;
    color: #df6e17;
    font-size: 4rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 40px;
}

.content-ajudar {
    display: flex;
    justify-content: space-between;
    gap: 120px; 
    width: 100%;
    max-width: 1100px; 
    align-items: flex-start;
}

.text-ajudar {
    max-width: 550px; 
    font-family: "Noto Serif", serif;
    font-weight: 400; 
    font-size: 1.1rem; 
    line-height: 1.6;
    color: #4c4e52; 
    text-indent: 0;
    text-align: justify;
}

.text-ajudar p {
    text-indent: 40px; 
}

.botoes-formularios {
    display: flex;
    gap: 20px;
    margin-top: 30px; 
}

.botoes-formularios a {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* 🔥 Botão principal */
.botoes-formularios a:nth-child(1) {
    background: linear-gradient(135deg, #df6e17, #f0a37e);
    color: white;
    box-shadow: 0 4px 10px rgba(223, 110, 23, 0.3);
}

/* 🔥 Botão secundário */
.botoes-formularios a:nth-child(2) {
    background: transparent;
    color: #df6e17;
    border: 2px solid #df6e17;
}

/* ✨ Hover bonito */
.botoes-formularios a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.list-ajudar {
    display: flex;
    flex-direction: column;
    background-color: #ffe6d4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); 
    gap: 20px;
    padding: 30px; 
    border-radius: 20px;
    width: 350px; 
    max-height: none;
    overflow-y: visible;
}

.titulo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px; 
}

.titulo-box img {
    width: 20px; 
    height: 20px;
}

.titulo-box h3 {
    font-family: 'Noto Serif', serif;
    font-size: 1.4rem;
    font-weight: bold; 
    color: #df6e17;
    margin: 0;
}

.list-ajudar ul {
    list-style-type: disc; 
    list-style-position: outside;
    padding-left: 20px; 
    margin: 0;
}

.list-ajudar li {
    font-family: 'Noto Serif', serif;
    font-size: 1rem;
    color: #4c4e52;
    margin-bottom: 10px; 
    list-style-type: none; 
    position: relative;
    padding-left: 1.5em; 
}

.list-ajudar li::before {
    content: "•"; 
    color: #df6e17; 
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em; 
}

@media (max-width: 768px) {

    .container-ajudar {
        padding: 40px 20px;
    }

    .container-ajudar h2 {
        font-size: 2.5rem;
        text-align: center;
        padding-left: 0;
    }

    .content-ajudar {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .text-ajudar {
        max-width: 100%;
        text-align: center;
    }

    .text-ajudar p {
        text-indent: 0;
    }

    .botoes-formularios {
        justify-content: center;
        flex-wrap: wrap;
    }

    .list-ajudar {
        width: 100%;
        max-width: 350px;
    }
}

