/* Contato page */
.contato-section { padding: 60px 0; }
.contato-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contato-info h2 { font-size: 28px; margin-bottom: 30px; }
.contato-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contato-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #f8f8f8, #eceff3);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.contato-info__icon .ui-icon {
  font-size: 22px;
  color: var(--red);
}
.contato-info__item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 2px;
}

.contato-form h2 { font-size: 28px; margin-bottom: 30px; }
.contato-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s;
}
.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.contato-form textarea { min-height: 150px; resize: vertical; margin-bottom: 15px; }
.contato-form .btn { border: none; }

.contato-mapa { padding-bottom: 0; }
.contato-mapa iframe { width: 100%; height: 400px; border: 0; display: block; }

@media (max-width: 991px) {
  .contato-section { padding: 48px 0; }
  .contato-section .container { grid-template-columns: 1fr; gap: 40px; }
  .contato-info h2,
  .contato-form h2 { font-size: 24px; }
}

@media (max-width: 767px) {
  .contato-section { padding: 40px 0; }
  .contato-form .form-row { grid-template-columns: 1fr; }
  .contato-mapa iframe { height: 300px; }
}

@media (max-width: 479px) {
  .contato-info__icon { width: 44px; height: 44px; }
  .contato-mapa iframe { height: 260px; }
}
