:root {
  --bg: #000000;
  --cyan: #33ccff;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --glow: rgba(51, 204, 255, 0.45);
  --glow-soft: rgba(51, 204, 255, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--glow-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--glow-soft) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 70%);
  animation: grid-drift 28s linear infinite;
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 48px 48px, 48px 48px;
  }
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 5vw, 2rem);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.shell--page {
  max-width: 44rem;
  justify-content: flex-start;
  align-items: stretch;
  text-align: left;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.shell--prensa {
  max-width: 48rem;
}

.shell--locations {
  max-width: 48rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 36em) {
  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.85rem;
    row-gap: 1rem;
  }
}

.location-card {
  min-width: 0;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(51, 204, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(130deg, rgba(51, 204, 255, 0.07) 0%, rgba(0, 0, 0, 0.28) 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.45) inset;
  border-left: 3px solid var(--cyan);
}

.location-card__h {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.location-card__btn {
  width: 100%;
  min-height: 2.65rem;
}

.location-card__address {
  margin: 0 0 0.6rem;
  font-size: 0.88rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.location-card__map {
  position: relative;
  width: 100%;
  margin: 0 0 0.9rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(51, 204, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  aspect-ratio: 16 / 10;
  min-height: 200px;
  max-height: 300px;
}

.location-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  font-weight: 600;
  color: #0c4a6e;
  background: #7dd3fc;
  border-radius: 4px;
  text-decoration: none;
  transition: top 0.15s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.page-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(51, 204, 255, 0.25);
}

.page-top__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.page-top__brand:hover {
  opacity: 0.92;
}

.page-top__brand:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 4px;
}

.page-top__meta {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.emblem-wrap--small {
  width: clamp(72px, 20vw, 104px);
  aspect-ratio: 141.453 / 103.693;
}

.article {
  flex: 1;
}

.article__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--white);
}

.article__lead {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.article__lead-block {
  margin: 0 0 2rem;
}

.article__lead-block p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.article__lead-block p:last-child {
  margin-bottom: 0;
}

.article__brand {
  color: var(--cyan);
  font-weight: 600;
}

.article__section {
  margin-bottom: 1.75rem;
}

.article__section:last-of-type {
  margin-bottom: 2rem;
}

.article__h2 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan);
}

.article__section p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.article__section strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.article__closing {
  margin: 0;
  padding-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.article__closing-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.foot--page {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
}

.press-block {
  margin-bottom: 2.25rem;
}

.press-block:last-of-type {
  margin-bottom: 1.5rem;
}

.press-block__h {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}

.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.press-list > li {
  min-width: 0;
}

@media (min-width: 36em) {
  .press-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.75rem;
    row-gap: 0.65rem;
  }
}

.press-card {
  display: block;
  padding: 0.9rem 1rem 0.9rem 1.1rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(51, 204, 255, 0.2);
  border-radius: 6px;
  background: linear-gradient(120deg, rgba(51, 204, 255, 0.06) 0%, rgba(0, 0, 0, 0.25) 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4) inset;
  border-left: 3px solid var(--cyan);
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}

.press-card:hover {
  border-color: rgba(51, 204, 255, 0.45);
  background: linear-gradient(120deg, rgba(51, 204, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4) inset,
    0 4px 20px var(--glow-soft);
  transform: translateX(2px);
}

.press-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.press-card__title {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.35rem;
}

.press-card__meta {
  display: block;
  font-size: 0.8rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.35;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.emblem-wrap {
  position: relative;
  width: clamp(100px, 30vw, 142px);
  flex-shrink: 0;
  aspect-ratio: 141.453 / 103.693;
}

.emblem-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.88) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px var(--glow-soft));
}

.tagline {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 32ch;
}

.tagline-follow {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 0.25rem;
}

.tagline-follow__sep {
  color: rgba(255, 255, 255, 0.28);
  user-select: none;
}

.status {
  width: 100%;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(51, 204, 255, 0.35);
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(51, 204, 255, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 0 40px var(--glow-soft);
}

.status-heading {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.status-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(0.92);
  }
}

.status-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.quick-links {
  width: 100%;
  margin-top: 1.75rem;
}

.quick-links__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.65rem;
  row-gap: 0.85rem;
  width: 100%;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

.quick-links__list li {
  margin: 0;
  min-width: 0;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  line-height: 1.25;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn--campus {
  color: #0c4a6e;
  background: #7dd3fc;
  border-color: #38bdf8;
}

.btn--campus:hover {
  color: #082f49;
  background: #5ec0f4;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.35), 0 2px 12px rgba(56, 189, 248, 0.35);
}

.btn--campus:focus-visible {
  outline-color: #0ea5e9;
}

.btn--activacert {
  color: #f8fafc;
  background: #64748b;
  border-color: #475569;
}

.btn--activacert:hover {
  color: #fff;
  background: #556277;
  border-color: #334155;
  box-shadow: 0 0 0 1px rgba(51, 65, 85, 0.5), 0 2px 12px rgba(100, 116, 139, 0.4);
}

.btn--activacert:focus-visible {
  outline-color: #94a3b8;
}

.btn--whatsapp {
  color: #fff;
  background: #25d366;
  border-color: #1da851;
}

.btn--whatsapp:hover {
  color: #fff;
  background: #1ebe5d;
  border-color: #128c3f;
  box-shadow: 0 0 0 1px rgba(18, 140, 63, 0.45), 0 2px 14px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:focus-visible {
  outline-color: #4ade80;
}

.btn--phone {
  color: #fff;
  background: #0369a1;
  border-color: #075985;
}

.btn--phone:hover {
  color: #fff;
  background: #075985;
  border-color: #0c4a6e;
  box-shadow: 0 0 0 1px rgba(12, 74, 110, 0.45), 0 2px 14px rgba(3, 105, 161, 0.4);
}

.btn--phone:focus-visible {
  outline-color: #38bdf8;
}

.foot {
  margin-top: auto;
  padding-top: 2.5rem;
  width: 100%;
}

.contact-hint {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.link {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 204, 255, 0.4);
  transition: color 0.2s, border-color 0.2s, text-shadow 0.2s;
}

.link:hover {
  color: #fff;
  border-color: var(--cyan);
  text-shadow: 0 0 12px var(--glow);
}

.link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.foot-year {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .grid-bg,
  .status-pulse {
    animation: none;
  }
}
