section#send h3 {
    margin: 2rem 0rem;
}

section#send .title {
    margin-bottom: 8rem;
}

.viagem, .saude {
    display: flex;
    justify-content: center;
}

.btnViagem {
    all: unset;
    border-width: 0.3rem;
    border-style: solid;
    border-radius: 1rem;
    padding: 1.4rem 1rem;
    margin: 2.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.btnSaude {
    all: unset;
    border-width: 0.3rem;
    border-style: solid;
    border-radius: 1rem;
    padding: 1.4rem 1rem;
    margin: 2.5rem 0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btnSaude a,
.btnViagem a {
    all: unset;
    margin: 0rem 0.8rem;
}

/* Modal (fundo escuro) */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Conteúdo do Modal */
.modal-content {
    background: #FDFBEE;
    padding: 1.4rem;
    border-radius: 0.8rem;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
    position: relative;
}

/* Animação de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Botão de fechar */
.close {
    position: absolute;
    right: 16px;
    top: 16px;
    font-size: 22px;
    font-weight: bold;
    color: #402C14;
    cursor: pointer;
}

.close:hover {
    color: #402C14;
}

/* Inputs estilizados */
input[type="text"],
input[type="file"] {
    width: 100%;
    padding: 0.7rem;
    margin: 10px 0;
    border: 1px solid #402C14;
    border-radius: 0.5rem;
    font-size: 16px;
}

/* Esconde o input padrão */
input[type="file"] {
    display: none;
}

/* Estiliza o botão personalizado para escolher arquivo */
.file-label {
    display: inline-block;
    background-color: #402C14;
    /* Cor do seu projeto */
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.3s;
    margin: 1rem 0;
    text-align: center;
    font-size: 1rem;
    border: 0.2rem solid #FDFBEE;
    /* Adiciona borda sutil */
}

/* Muda a cor ao passar o mouse */
.file-label:hover {
    background-color: #5A3E20;
    /* Tom mais claro para hover */
}

/* Estiliza o nome do arquivo */
.file-name {
    font-size: 0.8rem;
    /* Aproximadamente 14px */
    color: #402C14;
    /* Mantendo a identidade visual */
    margin-top: 0.3rem;
    display: block;
    text-align: center;
}

/* Botão de envio */
.submit-btn {
    width: 100%;
    padding: 0.7rem;
    font-size: 16px;
    color: #402C14;
    border: solid;
    border-width: 0.2rem;
    border-radius: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

/* Responsividade */
@media (max-width: 500px) {
    .modal-content {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    section#send .title {
        margin-bottom: 3rem;
    }
}