/* =========================================================
   HERO CONTACTO (reutiliza .hero / .hero-content / .hero-title / .btn-hero / .hero-image)
   ========================================================= */
.contact-hero {
  min-height: 60vh;
  height: 60vh;
  background: linear-gradient(135deg, #E9B6ED 0%, #C54ACF 45%, #841F8C 100%);
}

.contact-hero .btn-hero {
  color: #841F8C;
}

.contact-hero .btn-hero:hover {
  background: #F3E6F4;
}

.contact-hero .hero-image img {
  filter: drop-shadow(0 16px 48px rgba(132, 31, 140, 0.35));
}

/* Menú móvil morado (acorde al hero de esta sección) */
.mobile-menu {
  background: linear-gradient(160deg, #E9B6ED 0%, #C54ACF 55%, #841F8C 100%);
}

.contact-hero .hero-content {
  height: 100%;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5rem;
}

.contact-hero .hero-text {
  flex: none;
  max-width: 540px;
  padding: 90px 0 2.5rem;
}

.contact-hero .hero-title {
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  white-space: nowrap;
  margin-bottom: 1rem;
}

.contact-hero .hero-image {
  flex: none;
}

.contact-hero .hero-image img {
  max-height: 54vh;
}

@media (max-width: 1100px) {
  .contact-hero .hero-content {
    gap: 1.5rem;
  }

  .contact-hero .hero-title {
    font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  }
}

@media (max-width: 900px) {
  .contact-hero {
    height: auto;
    min-height: 100vh;
  }

  .contact-hero .hero-content {
    gap: 2rem;
    justify-content: space-between;
    min-height: 100vh;
  }

  .contact-hero .hero-text {
    max-width: 100%;
  }

  .contact-hero .hero-title {
    white-space: normal;
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .contact-hero .hero-image {
    justify-content: center;
  }

  .contact-hero .hero-image img {
    max-height: 40vh;
  }
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.contact-hero-lead {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 1.25rem;
}

/* =========================================================
   FORMULARIO + INFORMACIÓN DE CONTACTO
   ========================================================= */
.contact-section {
  background: #ffffff;
  padding: 70px 2rem 90px;
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-form-col .location-title,
.contact-info-col .location-title {
  margin-bottom: 0.5rem;
}

.contact-form-col .location-text,
.contact-info-col .location-text {
  margin-bottom: 1.75rem;
}

/* ---- Formulario ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: flex;
  gap: 1.1rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #1a1a2e;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #ffffff;
  border: 1.5px solid #e2e8ee;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #71C3F0;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  cursor: pointer;
}

/* Honeypot: oculto para humanos, visible para bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-submit {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-status {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status-success {
  color: #1477AE;
}

.form-status-error {
  color: #d9534f;
}

/* ---- Info de contacto ---- */
.contact-social {
  margin: 0.5rem 0 1.75rem;
}

.contact-map {
  height: 340px;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    flex-direction: column;
  }
}
