/* ── INFO PAGE HERO ───────────────────────────────────────────────────────── */
.info-hero {
  padding: 120px 5% 80px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.info-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(64,224,208,0.07), transparent);
  pointer-events: none;
}
.info-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.info-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.info-hero-title {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.info-hero-title .accent { color: var(--green); }
.info-hero-desc {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--gray);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

/* ── SECTIONS ─────────────────────────────────────────────────────────────── */
.info-section {
  padding: 80px 5%;
  border-bottom: 1px solid var(--border);
}
.info-section-alt { background: var(--dark); }

.info-section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.info-section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}
.info-section-sub {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ── INFO CARDS ───────────────────────────────────────────────────────────── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.info-card-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.info-card-box:hover { border-color: rgba(64,224,208,0.3); }
.info-card-icon-lg { font-size: 32px; }
.info-card-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.info-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}
.info-card-value {
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
  font-weight: 500;
}
.info-card-value a {
  color: var(--green);
  text-decoration: none;
}
.info-card-value a:hover { text-decoration: underline; }

/* ── HORARIO TABLE ────────────────────────────────────────────────────────── */
.info-schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 500px;
}
.info-schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.info-schedule-row:last-child { border-bottom: none; }
.info-schedule-row:hover { background: rgba(255,255,255,0.03); }
.info-schedule-day {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}
.info-schedule-time {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* ── MAPS ─────────────────────────────────────────────────────────────────── */
.info-maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.info-map-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-map-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.info-map-label span { color: var(--green); font-size: 16px; }
.info-map-address {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}
.info-map-frame {
  width: 100%;
  height: 280px;
  border: none;
  border-radius: 14px;
  border: 1px solid var(--border);
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
  opacity: 0.9;
}

/* ── CTA ──────────────────────────────────────────────────────────────────── */
.info-cta {
  padding: 80px 5%;
  text-align: center;
  background: var(--dark);
}
.info-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.info-cta-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.info-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .info-hero { padding: 100px 5% 60px; }
  .info-section { padding: 56px 5%; }
  .info-maps { grid-template-columns: 1fr; }
  .info-map-frame { height: 240px; }
}
@media (max-width: 480px) {
  .info-cards { grid-template-columns: 1fr; }
  .info-schedule { max-width: 100%; }
}
