 .container-contato {
    display: flex;
    flex-direction: column;
    background-image: url(../imagens/contato-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    align-items: center;
    padding: 50px 20px;
    gap: 30px;
}


.container-contato h2 {
    font-family: "Caveat", cursive;
    color: #4c8989;
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: -2.5px;
    margin-bottom: 0px;
}

.content-contato {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    max-width: 1100px;
}

.list-contact {
    max-width: 500px;
    font-family: "Noto Serif", serif;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4c4e52;
}

.list-contact p {
    margin-bottom: 40px;
}

.list-contact ul {
    list-style-type: none;
    margin-top: 20px;
}

.list-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.list-contact li a {
    color: #4c4e52;
    text-decoration: none;
    transition: color 0.3s;
}

.list-contact li svg {
    min-width: 24px;
}

.form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    border: 1px solid #ccc;
}

.form-title {
    color: #e9678e; 
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 1.5em;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #4a4a4a;
    font-weight: normal;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e9678e; 
    border-radius: 20px; 
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
}

textarea {
    border-radius: 15px; 
    resize: vertical; 
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #f7a9c3; 
}

.submit-btn {
    display: block;
    width: 60%;
    margin: 20px auto 0;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e9678e, #f7a9c3);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(233, 103, 142, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

@media (max-width: 992px) {
    .container-home {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        background-size: 500px;
        background-position: center bottom;
        padding: 30px 20px;
    }

    .home-content {
        max-width: 100%;
        align-items: center;
    }

    .home-links {
        justify-content: center;
    }
} 

@media (max-width: 768px) {

    .container-contato {
        padding: 40px 20px;
        text-align: center;
    }

    .container-contato h2 {
        font-size: 2.5rem;
    }

    /* 🔥 vira coluna */
    .content-contato {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    /* 📝 texto */
    .list-contact {
        max-width: 100%;
        text-align: center;
    }

    .list-contact p {
        margin-bottom: 20px;
    }

    /* 📱 lista centralizada */
    .list-contact ul {
        padding: 0;
    }

    .list-contact li {
        justify-content: center;
        text-align: left;
    }

    /* 📦 formulário */
    .form-container {
        width: 100%;
        max-width: 400px;
    }

    /* 🔘 botão melhor no mobile */
    .submit-btn {
        width: 100%;
    }
}