/* =========================================================
   ACRÓPOLIS NOTICIAS — PÁGINA DE MANTENIMIENTO
   Paleta inspirada en el branding proporcionado:
   rojo, negro, blanco y grises neutros.
   ========================================================= */

:root {
  --red: #e00000;
  --red-dark: #a90000;
  --red-bright: #ff1616;
  --black: #0c0c0c;
  --charcoal: #171717;
  --gray: #9b9b9b;
  --light: #f3f3f3;
  --white: #ffffff;
  --border: rgba(255,255,255,.13);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

.maintenance {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, .86fr);
  isolation: isolate;
}

.background {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 18%, rgba(224,0,0,.26), transparent 26%),
    radial-gradient(circle at 85% 78%, rgba(224,0,0,.17), transparent 32%),
    linear-gradient(135deg, #070707 0%, #111 48%, #090909 100%);
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.10), rgba(0,0,0,.55)),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.014) 0,
      rgba(255,255,255,.014) 1px,
      transparent 1px,
      transparent 14px
    );
}

.content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 82px);
  position: relative;
  z-index: 2;
}

.brand-card {
  width: 96px;
  height: 96px;
  padding: 8px;
  background: var(--red);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(224,0,0,.26);
  overflow: hidden;
  margin-bottom: 30px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.eyebrow {
  color: #d8d8d8;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  max-width: 760px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: .95;
  letter-spacing: -.04em;
  margin-bottom: 26px;
}

h1 span {
  display: block;
  color: var(--red-bright);
}

.lead {
  max-width: 720px;
  color: #c8c8c8;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
  margin-bottom: 24px;
}

.status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #ececec;
  font-size: .82rem;
  font-weight: 600;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 7px rgba(255,22,22,.10);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.78); }
}

.countdown-wrap {
  margin-top: 36px;
}

.countdown-title {
  font-size: .82rem;
  color: #aeaeae;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
  margin-bottom: 14px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 130px));
  gap: 12px;
}

.time-box {
  min-height: 112px;
  padding: 19px 14px 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.time-box strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1;
  margin-bottom: 10px;
}

.time-box span {
  color: #9f9f9f;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 700;
}

.return-date {
  margin-top: 15px;
  color: #9e9e9e;
  font-size: .82rem;
}

.return-date strong {
  color: var(--white);
}

.divider {
  height: 1px;
  max-width: 690px;
  background: linear-gradient(90deg, rgba(255,255,255,.19), transparent);
  margin: 34px 0 24px;
}

.footer-row {
  max-width: 710px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.site-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.site-tagline {
  color: #8f8f8f;
  font-size: .78rem;
  margin-top: 6px;
}

.reload-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 13px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--white);
  background: var(--red);
  font-size: .82rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 30px rgba(224,0,0,.18);
}

.reload-btn:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(224,0,0,.26);
}

.small-note {
  max-width: 690px;
  margin-top: 26px;
  color: #666;
  font-size: .72rem;
  line-height: 1.6;
}

.visual-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.06);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #0b0b0b 0%, rgba(11,11,11,.22) 28%, rgba(0,0,0,.22) 100%),
    linear-gradient(0deg, rgba(0,0,0,.52), transparent 45%);
}

.visual-panel::after {
  content: "ACRÓPOLIS";
  position: absolute;
  z-index: 2;
  right: -17px;
  bottom: 42px;
  color: rgba(255,255,255,.08);
  font-weight: 800;
  font-size: clamp(4.5rem, 8vw, 10rem);
  letter-spacing: -.07em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.visual-panel img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.05) brightness(.72);
}

@media (max-width: 980px) {
  .maintenance {
    grid-template-columns: 1fr;
  }

  .content {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .visual-panel {
    position: absolute;
    inset: 0;
    min-height: 100%;
    opacity: .16;
    z-index: -1;
    border-left: 0;
  }

  .visual-panel img {
    min-height: 100%;
  }

  .visual-panel::before {
    background: rgba(0,0,0,.52);
  }

  .visual-panel::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .content {
    padding: 34px 22px 38px;
  }

  .brand-card {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .eyebrow {
    font-size: .66rem;
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.6rem);
  }

  .lead {
    font-size: .96rem;
  }

  .status {
    font-size: .72rem;
    line-height: 1.35;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .time-box {
    min-height: 96px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .reload-btn {
    width: 100%;
    justify-content: center;
  }
}
