/* ============ CONTATO (sempre centralizado) ============ */

.conteudo {
  text-align: center;
}

/* Bloco principal */
/* Respiro igual às outras seções */
.contato {
  max-width: 980px;
  margin: 0 auto;
  
  text-align: center;
}


.contato > p {
  max-width: 900px;
  margin: .5rem auto 1.5rem;
  line-height: 1.5;
  text-align: center;
}

/* Grid das informações */
.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 2rem;
  align-items: start;
  justify-items: center;
  margin-top: 1rem;
  text-align: center;
}

.contato-coluna {
  text-align: center;
  padding: 1.25rem;
}

.contato-coluna p {
  margin: .25rem 0;
  line-height: 1.5;
  text-align: center;
}

/* Social */
.social {
  margin-top: 2.5rem;
  text-align: center;
}

.icones-sociais-contact {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.icones-sociais-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px; 
  height: 100px;
  transition: transform .2s, box-shadow .2s;
}

.icones-sociais-contact a:hover {
  transform: translateY(-3px);
}

.icones-sociais-contact img {
  width: 70px; 
  height: 70px;
}

/* Links tel/mail */
a[href^="tel:"], a[href^="mailto:"] {
  text-decoration: none;
  border-bottom: 1px dashed rgba(6,82,123,.3);
}
a[href^="tel:"]:hover, a[href^="mailto:"]:hover {
  border-bottom-color: currentColor;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .contato-grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .icones-sociais-contact a {
    width: 84px; 
    height: 84px;
  }

  .icones-sociais-contact img {
    width: 60px; 
    height: 60px;
  }
}

@media (max-width: 768px) {
  .contato { max-width: 640px; }
  .contato-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* mapa full-bleed */
  footer.footer { padding-bottom: 0; }
  .footer-bottom { margin-bottom: 0; }
  .footer-mapa {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
  }
  .footer-mapa iframe {
    display: block;
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 0;
    margin: 0;
  }

  .icones-sociais-contact a {
    width: 70px;
    height: 70px;
  }

  .icones-sociais-contact img {
    width: 48px;
    height: 48px;
  }
}
