/* ====================================================================
                        Estilos CONTACT
                        Autora: Ivany Batista
===================================================================== */

/* =========== GERAIS =========== */
html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}


/* =========== CONTATOS INFO/ICONS =========== */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #035f61;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

/* =========== CONTATOS FORMULARIOS =========== */
.contact-section .form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.95rem;
}

.contact-section .form-control:focus {
  border-color: #035f61 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 180, 182, 0.25) !important;
}

.contact-section .btn-primary {
  background-color: #035f61;
  border-color: #035f61;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 8px;
}

.contact-section .btn-primary:hover {
  background-color: #009a9c;
  border-color: #009a9c;
}

/* =========== FAIXA TITULO =========== */
.contact-header {
  background: #f5f5f5 !important;
  font-family: 'Poppins', sans-serif;
  border-bottom: 1px solid #e0e0e0;
}

.contact-header h1 {
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: #666;
  text-shadow: none;
}

/* FORMULARIOS: Campos inválidos */
.form-control.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* =========== RESPONSIVIDADE =========== */
@media (max-width: 768px) {
  .context-section h2 {
    font-size: 1.7rem;
  }

  .context-section p {
    font-size: 1rem;
  }

  .map-section {
    height: 150px;
  }

  .map-section .ratio {
    height: 150px;
  }

  .map-section iframe {
    height: 150px;
  }

  .contact-section {
    padding: 3rem 0 !important;
    position: relative;
    z-index: 2;
  }

  .contact-header h1 {
    font-size: 2rem;
  }

  .store-info .info-item {
    margin-bottom: 1.5rem !important;
  }
}