/* =========================
   HERO CONTACTO
========================= */

/* HERO COM IMAGEM */

.contactos-hero {
  position: relative;
  background: url("images/contactos-hero.jpg") center/cover no-repeat;
  padding: 120px 20px 100px;
  color: #ffffff;
}

.contactos-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.contactos-hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.contactos-hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contactos-hero p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 750px;
}


/* =========================
   CONTACTO GRID
========================= */

.contacto-section {
    padding: 80px 20px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}


/* =========================
   INFO
========================= */

.contacto-info h2 {
    color: #2E7D32;
    margin-bottom: 20px;
}

.contacto-info p {
    margin-bottom: 15px;
    color: #555;
}

.redes {
    margin-top: 30px;
}

.redes a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #2E7D32;
    font-weight: 600;
}


/* =========================
   FORMULÁRIO
========================= */

.contacto-form {
    background: #f9faf9;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contacto-form h2 {
    margin-bottom: 20px;
    color: #2E7D32;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.btn-enviar {
    display: inline-block;
    padding: 12px 25px;
    background: #2E7D32;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-enviar:hover {
    background: #1B5E20;
}


/* =========================
   MAPA
========================= */

.mapa iframe {
    display: block;
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}
