/* =========================================================
   CONTACTO — estilos específicos de la página
   ========================================================= */

.ct-hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: clamp(64px, 8vw, 104px) 0 clamp(80px, 10vw, 128px);
}

/* Mancha orgánica negra del fondo, abajo a la derecha */
.ct-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -34%;
  width: 62%;
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 46% 54% 60% 40% / 45% 40% 60% 55%;
  z-index: 0;
  pointer-events: none;
}

.ct-hero > .container {
  position: relative;
  z-index: 1;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

/* ---------- COLUMNA IZQUIERDA ---------- */
/* Label en cyan, con el guion antes del texto como en el resto del sitio */
.ct-intro .eyebrow {
  color: var(--cyan);
}

.ct-intro .eyebrow::before {
  background: currentColor;
}

.ct-intro h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  margin-bottom: 24px;
}

.ct-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 22px 0;
  max-width: 46ch;
}

/* Píldora de tiempo de respuesta */
.ct-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 20px 10px 12px;
  border-radius: 999px;
  background: rgba(0, 180, 216, 0.09);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.ct-badge-icon {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--cyan);
}

.ct-badge-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Canales de contacto (compactos: son 6 y no deben estirar la sección
   más que la tarjeta del formulario) */
.ct-channels {
  list-style: none;
  margin: clamp(26px, 3.2vw, 34px) 0 0 0;
  padding: 0;
}

.ct-channels li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.ct-channels li + li {
  border-top: 1px solid var(--gray-200);
}

.ct-channel-icon {
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--black);
}

.ct-channel-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-channel-label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
}

.ct-channel-text a,
.ct-channel-value {
  font-size: 14px;
  line-height: 1.4;
  color: var(--gray);
  transition: color 0.2s ease;
}

.ct-channel-text a:hover {
  color: var(--cyan);
}

/* ---------- TARJETA DEL FORMULARIO ---------- */
.ct-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: clamp(28px, 3.4vw, 48px);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.1);
}

/* Costura punteada decorativa arriba de la tarjeta */
.ct-stitch {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  color: var(--cyan);
}

.ct-stitch::before,
.ct-stitch::after {
  content: "";
  flex: 1;
  border-top: 2px dashed currentColor;
}

.ct-stitch svg {
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.ct-card h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  margin-bottom: 8px;
}

.ct-card-intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0 0 28px 0;
}

.ct-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.ct-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: #fff;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 13px 14px;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

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

.ct-submit {
  width: 100%;
  margin-top: 24px;
  padding: 17px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--cyan);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ct-submit:hover {
  background: #0098b8;
}

.ct-form-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray-500);
  margin: 16px 0 0;
  text-align: center;
}

.ct-lock {
  flex: none;
  width: 15px;
  height: 15px;
  margin-top: 1px;
}

.ct-lock svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- MAPA ---------- */
.map-section {
  padding: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  border-top: 1px solid var(--gray-300);
  filter: grayscale(0.2);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .ct-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* La mancha estorba cuando las columnas se apilan */
  .ct-hero::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .ct-hero {
    padding: 48px 0 64px;
  }

  .ct-form-grid {
    grid-template-columns: 1fr;
  }

  .ct-channels li {
    gap: 16px;
  }
}
