/* ─── HERO ───────────────────────────────────────────────── */
.contacto-hero {
  padding: 72px 56px 56px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.contacto-hero .section-tag {
  justify-content: center;
  margin-bottom: 16px;
}

.contacto-hero-h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contacto-hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── LAYOUT PRINCIPAL ───────────────────────────────────── */
.contacto-main {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  min-height: 70vh;
  align-items: start;
  background: var(--white);
}

/* ─── ASIDE: canales de contacto ─────────────────────────── */
.contacto-aside {
  padding: 52px 40px;
  background: var(--cream);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 64px;
}

/* Botón WhatsApp principal */
.contacto-wa {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #25D366;
  border-radius: var(--radius-lg);
  color: var(--white);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 24px rgba(37,211,102,0.28);
}

.contacto-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,211,102,0.36);
}

.contacto-wa-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.contacto-wa-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
}

.contacto-wa-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}

.contacto-wa-arrow {
  font-size: 18px;
  margin-left: auto;
  opacity: 0.7;
}

/* Bloque de datos de contacto */
.contacto-info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contacto-info-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.contacto-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contacto-info-icon {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contacto-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 3px;
}

.contacto-info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.4;
}

a.contacto-info-value:hover {
  color: var(--brand);
}

/* Promesa de respuesta */
.contacto-promise {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--brand-pale);
  border: 1px solid var(--brand);
  border-radius: var(--radius-lg);
}

.contacto-promise-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  flex-shrink: 0;
}

.contacto-promise-num span {
  font-size: 22px;
}

.contacto-promise-text {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.55;
}

/* ─── FORMULARIO ─────────────────────────────────────────── */
.contacto-form-wrap {
  padding: 52px 56px;
}

.contacto-form-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.contacto-form-lead {
  font-size: 15px;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contacto-form {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.contacto-submit {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  border-radius: var(--radius-md);
  align-self: stretch;
  margin-top: 8px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .contacto-hero {
    padding: 52px 24px 40px;
  }

  .contacto-main {
    grid-template-columns: 1fr;
  }

  .contacto-aside {
    position: static;
    padding: 36px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .contacto-form-wrap {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .contacto-hero-h1 {
    font-size: 28px;
  }

  .contacto-promise {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
