/* ===================== BASE ===================== */
* {
    box-sizing: border-box;
}

body {
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f3f6fb;
    color: #333;
}

/* ===================== SEÇÃO CONTATO ===================== */

.contato-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 16px;      /* distância do topo/rodapé */
    background-color: #f3f6fb;
}

/* CARD BRANCO CENTRALIZADO */
.contato-container {
    max-width: 1100px;
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;   /* azul / formulário */
    overflow: hidden;
}

/* ===================== COLUNA AZUL (ESQUERDA) ===================== */

.contato-imagem {
    background: #0055b8;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-align: left;
}

.contato-imagem img {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    object-fit: contain;
}

/* Se quiser textos na coluna azul, ficam bonitos assim: */
.contato-imagem .info-titulo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contato-imagem .info-texto {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* ===================== FORMULÁRIO (DIREITA) ===================== */

.contato-conteudo {
    padding: 40px 44px 44px;
    display: flex;
    flex-direction: column;
}

/* Título */
.contato-titulo {
    font-size: 26px;
    font-weight: 800;
    color: #1e90ff;
    margin-bottom: 10px;
}

/* Descrição */
.contato-descricao {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 18px;
}

.contato-descricao small {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
}

/* Grupo de campos */
.contato-formulario {
    margin-top: 4px;
}

.form-grupo {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

/* Label em caps (como no exemplo) */
.form-grupo label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

/* Inputs brancos com borda cinza */
.form-grupo input[type="text"],
.form-grupo input[type="tel"],
.form-grupo input[type="email"] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-grupo input::placeholder {
    color: #9ca3af;
}

/* Foco */
.form-grupo input:focus {
    border-color: #1e90ff;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.18);
}

/* Botão WhatsApp */
.btn-whatsapp-form {
    margin-top: 12px;
    width: 100%;
    border: none;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 18px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
}

.btn-whatsapp-form i {
    font-size: 18px;
}

.btn-whatsapp-form:hover {
    filter: brightness(1.04);
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.4);
    transform: translateY(-1px);
}

/* Contato extra */
.contato-info-extra {
    margin-top: 18px;
    font-size: 13px;
    color: #6b7280;
}

.contato-info-extra .numero-fixo {
    font-weight: 700;
    color: #111827;
}

/* ===================== RESPONSIVO ===================== */

@media (max-width: 900px) {
    .contato-container {
        grid-template-columns: 1fr;
    }

    .contato-imagem {
        order: -1;           /* mostra o azul primeiro */
        padding: 26px 20px;
        text-align: center;
    }

    .contato-conteudo {
        padding: 28px 22px 30px;
    }
}

@media (max-width: 600px) {
    .contato-section {
        padding: 32px 10px;
    }

    .contato-container {
        border-radius: 0;
        box-shadow: none;
    }

    .contato-titulo {
        font-size: 22px;
    }
}