/* Estilos Gerais */
.hhh-contact-section {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #f9f9f9;
    font-family: 'Roboto', sans-serif;
    margin-top: 80px;
}

.hhh-contact-info {
    flex: 1;
    background-color: #241e42;
    color: white;
    padding: 30px;
    border-radius: 10px;
}

.hhh-contact-form {
    flex: 2;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-left: 20px;
    
}

.hhh-contact-info h2,
.hhh-contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hhh-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.hhh-contact-item i {
    font-size: 20px;
    margin-right: 10px;
}

.hhh-social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.hhh-social-icons i {
    font-size: 24px;
    color: white;
    margin: 0 10px;
    /* Distância reduzida entre os ícones */
}

.hhh-input,
.hhh-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    color: #333;
}

.hhh-textarea {
    height: 100px;
    resize: none;
}

.hhh-submit-button {
    background-color: #241e42;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 0 auto;
    width: 200px;
    font-weight: bold;
}

/* Imagem abaixo dos ícones */
.hhh-contact-image {
    margin-top: 20px;
    text-align: center;
}

.hhh-contact-image img {
    max-width: 60%;
    height: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .hhh-contact-section {
        flex-direction: column;
        padding: 5px;
        /* Reduz padding para evitar estouro */
        max-width: 90%;
        /* Garante que a largura não exceda a tela */
        margin: 0;
        /* Remove margens externas */
    }

    hr {
        display: none;
    }

    .hhh-contact-info,
    .hhh-contact-form {
        flex: none;
        width: 100%;
        margin: 0 0 15px 0;
        /* Remove margem lateral e adiciona espaçamento vertical */
        padding: 20px;
        border-radius: 8px;
    }

    .hhh-contact-info h2,
    .hhh-contact-form h2 {
        font-size: 20px;
    }

    .hhh-social-icons i {
        font-size: 20px;
    }

    .hhh-input,
    .hhh-textarea {
        font-size: 14px;
    }

    .hhh-submit-button {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hhh-contact-section {
        padding: 2px;
        /* Padding mínimo para telas pequenas */
        max-width: 90%;
    }

    hr {
        display: none;
    }

    .hhh-contact-info,
    .hhh-contact-form {
        padding: 15px;
        margin-bottom: 10px;
    }

    .hhh-contact-info h2,
    .hhh-contact-form h2 {
        font-size: 18px;
    }

    .hhh-social-icons i {
        font-size: 18px;
    }

    .hhh-input,
    .hhh-textarea {
        font-size: 12px;
        padding: 8px;
    }

    .hhh-submit-button {
        font-size: 14px;
    }
}