/* ===== CONTEÚDO PRINCIPAL ===== */
#content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
    font-family: 'Zain', sans-serif;
}

/* ===== BANNER ===== */
.contato-banner h1 {
    font-size: 3rem;
    color: #E89AA3;
    margin-bottom: 15px;
}

.contato-banner p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #fff;
    font-weight: bold;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

/* ===== INFORMAÇÕES DE CONTATO ===== */
.contato-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.info-card {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 15px;
    flex: 1 1 150px;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 20px;
    border: 1.5px solid #d6b98c;
}

.info-card h2 {
    font-size: 1.5rem;
    color: #E89AA3;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 1rem;
}

.info-card a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.info-card a:hover {
    text-decoration: underline;
    color: #d6b98c;
}

.info-redes i {
    font-size: 2rem;
    justify-content: center;
    gap: 20px;
    margin: 10px
}

/* ===== FORMULÁRIO DE CONTATO ===== */
.contato-form {
    margin-top: 50px;
}

.contato-form h2 {
    font-size: 2rem;
    color: #E89AA3;
    margin-bottom: 20px;
}

.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contato-form input,
.contato-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    resize: none;
}

.contato-form button {
    padding: 15px;
    border-radius: 50px;
    border: none;
    background-color: #E89AA3;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.contato-form button:hover {
    transform: scale(1.05);
}

/* ===== RESPONSIVO ===== */
@media screen and (max-width: 768px) {
    .contato-banner h1 {
        font-size: 2.2rem;
    }

    .info-card h2 {
        font-size: 1.5rem;
    }

    .contato-form h2 {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    .contato-info {
        flex-direction: column;
        gap: 20px;
    }

    .contato-form form {
        gap: 12px;
    }

    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}