/* =======================================
   HERO
======================================= */
.contact-hero {
  background: #f0f4f8; /* Fondo gris azulado claro */
  padding: 60px 20px;
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: white;
  padding: 40px 60px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  width: 100%;
}

.hero-card h1 {
  color: #4cd195; /* Verde del diseño */
  margin: 0 0 15px 0;
  font-size: 32px;
  font-weight: 700;
}

.hero-card p {
  color: #555;
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

.contact-hero h1 {
  margin: 6px 0 4px 0;
  padding: 0;
}

/* =============================
   LAYOUT PRINCIPAL
=============================== */
.contact-body {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* =======================================
   COLUMNA IZQUIERDA: FORMULARIO
======================================= */
.form-column {
  background: #fff;
  padding: 10px;
}

.form-title {
  color: #1e3a8a; /* Azul oscuro similar a la imagen */
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 700;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  display: block;
  font-size: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: #fff;
  font-size: 15px;
  box-sizing: border-box;
  color: #555;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1e3a8a;
}

/* BOTÓN ENVIAR */
.btn-primary {
  width: 100%;
  text-align: center;
  background: #1e3a8a; /* Azul oscuro */
  padding: 14px 0;
  color: white !important;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  font-size: 16px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #152c69;
}

/* =======================================
   COLUMNA DERECHA: INFO + MAPA
======================================= */
.info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* TARJETA VERDE */
.contact-card {
  background: #4cd195; /* Verde similar a la imagen */
  color: white;
  padding: 30px;
  border-radius: 8px;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 15px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.icon-circle {
  width: 40px;
  height: 40px;
  /* background: rgba(255,255,255,0.2); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* Vuelve blancos los iconos negros */
}

.info-item h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 700;
}

.info-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
}

/* MAPA */
.map-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* =======================================
   RESPONSIVE
======================================= */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
