/* =========================================
   Contacto (estilo tipo captura referencial)
   ========================================= */

.contact-page{
  background: #f4b000;
  padding: 48px 16px;
}

.contact-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: start;
}

.contact-form-col{
  padding: 8px 0;
}

.contact-title{
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b2a3c;
}

.contact-form{
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.alert{ margin: 10px 0 14px; }

.hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field{ margin-bottom: 12px; }

.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.12);
  border-radius: 8px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}

.contact-form textarea{
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color: rgba(11,42,60,0.55);
  box-shadow: 0 0 0 3px rgba(11,42,60,0.12);
}

.btn-send{
  width: 160px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: #0b2a3c;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s ease, opacity .12s ease;
}
.btn-send:hover{ transform: translateY(-1px); }

.contact-mini{
  margin-top: 14px;
  display: grid;
  gap: 6px;
  color: rgba(11,42,60,0.9);
  font-size: 13px;
}
.contact-mini i{ margin-right: 6px; }

.btn-wa{
  margin-top: 12px;
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.28);
  color: #0b2a3c;
  font-weight: 800;
  cursor: pointer;
}
.btn-wa i{ margin-right: 8px; }

.contact-map-col{ min-height: 560px; }

.map-card{
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.map-iframe{
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

.map-placeholder{
  height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: rgba(11,42,60,0.85);
}
.map-placeholder i{
  font-size: 54px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 980px){
  .contact-wrap{ grid-template-columns: 1fr; }
  .contact-title{ font-size: 36px; }
  .contact-map-col{ min-height: 420px; }
  .map-iframe, .map-placeholder{ height: 420px; }
}
@media (max-width: 520px){
  .grid2{ grid-template-columns: 1fr; }
  .btn-send{ width: 100%; }
}
