/* ── Contacto ── */
.contact-page {
  min-height: 100vh;
}

.contact-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--verde-dark) 0%, var(--verde) 100%);
  color: var(--crema);
  position: relative;
  overflow: hidden;
}

.contact-hero::after {
  content: 'CINE ITALO • CAPITÁN SARMIENTO • CONTACTO • ';
  position: absolute;
  top: 80px;
  left: 0; right: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(245, 237, 224, 0.08);
  white-space: nowrap;
  pointer-events: none;
}

.contact-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: rgba(245, 237, 224, 0.55);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--crema);
  margin-bottom: 16px;
}

.contact-title em {
  font-style: italic;
  font-weight: 400;
  color: #e8d4a6;
}

.contact-subtitle {
  font-size: 17px;
  color: rgba(245, 237, 224, 0.65);
  max-width: 500px;
  line-height: 1.6;
}

/* Layout principal */
.contact-content {
  padding: 72px 0 100px;
  background: var(--crema);
}

.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

/* Columna izquierda: info */
.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-block {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.contact-block:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-block-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.7;
  color: var(--tinta);
  margin: 0 0 12px;
}

.contact-maps-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--borgo);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.contact-maps-link:hover {
  color: var(--borgo-dark);
}

/* Botón WhatsApp */
.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: white;
  text-decoration: none;
  padding: 0 20px 0 0;
  border-radius: 999px;
  height: 52px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-ring-pulse 2s infinite;
}

.contact-whatsapp:hover {
  background: #1ca851;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(28, 168, 81, 0.4);
}

.contact-whatsapp-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: url("/assets/profes/whatsapp.png") center / contain no-repeat;
}

/* Cards de redes sociales */
.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: white;
  color: var(--tinta);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-social-card:hover {
  border-color: rgba(26, 20, 16, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.contact-social-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--tinta);
  line-height: 1.3;
}

.contact-social-handle {
  display: block;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Mapa */
.contact-map-wrap {
  height: 520px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: sticky;
  top: 104px;
}

.contact-map {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Responsivo */
@media (max-width: 900px) {
  .contact-hero {
    padding: 120px 0 60px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map-wrap {
    height: 360px;
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: clamp(38px, 10vw, 60px);
  }
}
