body {
    background: white;
}

#pagina-contato {
    min-height: 60vh;
    background: white;
    color: #2c688b;
}

#titulo-contato {
    font-family: 'Cunia', sans-serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c688b;
}

/* GRID PRINCIPAL */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* BLOCOS DE INFO */
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contato-bloco {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border: 1px solid #d0e4f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(44, 104, 139, 0.08);
}

.contato-bloco h3 {
    font-size: 17px;
    color: #2c688b;
    margin-bottom: 6px;
}

.contato-bloco p {
    font-size: 15px;
    color: #444;
    margin: 0;
}

.contato-bloco a {
    color: #2c688b;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.contato-bloco a:hover {
    color: #1a4a6b;
    text-decoration: underline;
}

/* BOTÃO WHATSAPP */
#btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white !important;
    text-decoration: none !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    margin-top: 8px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    transition: background 0.3s, transform 0.2s;
}

#btn-whatsapp:hover {
    background: #1ebe5d;
    transform: scale(1.03);
    text-decoration: none !important;
}

#icone-whatsapp {
    width: 22px;
    height: 22px;
}

/* FORMULÁRIO */
.contato-formulario {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px;
    border: 1px solid #d0e4f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(44, 104, 139, 0.08);
}

.contato-formulario h3 {
    font-size: 20px;
    color: #2c688b;
    margin-bottom: 6px;
}

.campo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.campo label {
    font-size: 14px;
    font-weight: bold;
    color: #2c688b;
}

.campo input,
.campo textarea {
    padding: 12px 16px;
    border: 1px solid #d0e4f0;
    border-radius: 8px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border 0.3s;
    resize: vertical;
}

.campo input:focus,
.campo textarea:focus {
    border-color: #2c688b;
}

#btn-enviar {
    padding: 14px;
    background: #2c688b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Trebuchet MS', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

#btn-enviar:hover {
    background: #1a4a6b;
    transform: scale(1.02);
}

#formulario-feedback {
    font-size: 14px;
    text-align: center;
    min-height: 20px;
}

/* MAPA */
.contato-mapa {
    margin-top: 10px;
}

.contato-mapa h3 {
    font-size: 20px;
    color: #2c688b;
    margin-bottom: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #titulo-contato {
        font-size: 28px;
    }
}