.message {
  text-align: center;
}
/* Fondo de video con blur */
.background-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
 filter: blur(8px) brightness(0.7);
  pointer-events: none;
}

.maintenance-container {
  position: relative;
  z-index: 2;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  position: relative;
  z-index: 3;
}

.logo-container {
  margin-bottom: 2rem;
  z-index: 4;
}

.maintenance-info {
  z-index: 4;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
}
:root {
  --primary: #ffcd03;
  --secondary: #ff001e;
  --accent: #0031b4;
  --light-accent: #265599;
  --white: #ffffff;
  --gradient: linear-gradient(-135deg, var(--primary), var(--secondary));
}

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

body {
  font-family: "Gardenia Black", sans-serif;
  user-select: none;
  background-color: var(--white);
  color: #333;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.maintenance-container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* animation: heartbeat 1.2s infinite; */
  /* animation: heartbeat 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite; */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  position: relative;
}

.logo-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

.maintenance-info h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

/* .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--secondary);
  z-index: -1;
  opacity: 0.5;
} */

.separator {
  width: 80px;
  height: 4px;
  background: var(--gradient);
  margin: 1.5rem auto;
  border-radius: 2px;
}

.message {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.typewriter {
  display: inline-block;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
  border-right: 2px solid var(--primary);
  /* Ajusta steps(N) al número de caracteres de la frase */
  animation:
    typing 7.5s steps(23) 0.5s infinite,
    blink 0.9s steps(1) infinite;
  color: var(--primary);
  font-weight: 700;
}

@keyframes typing {
  0% {
    width: 0ch;
  }
  35% {
    width: 20ch;
  } /* Termina de escribir */
  55% {
    width: 20ch;
  } /* Pausa texto completo */
  90% {
    width: 0ch;
  } /* Borrado */
  100% {
    width: 0ch;
  }
}

@keyframes blink {
  0%,
  50% {
    border-color: var(--secondary);
  }
  51%,
  100% {
    border-color: transparent;
  }
}

.progress-container {
  margin: 2rem 0;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  width: 100%;
  height: 100%;
  background: var(--gradient);
  border-radius: 5px;
  animation: pulse 2s infinite;
}

.progress-text {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  background-color: rgba(134, 66, 229, 0.1);
  border-radius: 10px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 10px rgba(72, 0, 179, 0.1);
}

.label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

.contact {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.circle {
  animation: floatY 3s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
  }
}

.circle-1 {
  width: 300px;
  height: 300px;
  background-color: var(--secondary);
  top: -150px;
  left: -150px;
  opacity: 0.3;
}

.circle-2 {
  width: 200px;
  height: 200px;
  background-color: var(--secondary);
  bottom: -100px;
  right: -100px;
  opacity: 0.3;
}

.circle-3 {
  width: 150px;
  height: 150px;
  background-color: var(--primary);
  top: 20%;
  right: -75px;
  opacity: 0.3;
}

.circle-4 {
  width: 100px;
  height: 100px;
  background-color: var(--primary);
  bottom: 30%;
  left: -50px;
  opacity: 0.3;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* @keyframes heartbeat {
   0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.13);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.13);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
} */

/* Responsive styles */
@media (max-width: 768px) {
  .centered-content {
    padding: 2rem 0.5rem;
  }
  .logo-text {
    font-size: 2rem;
  }
  .maintenance-info h1 {
    font-size: 2rem;
  }
  .maintenance-info {
    padding: 1.2rem 1rem;
  }
  .message {
    font-size: 1rem;
  }
  .countdown {
    gap: 1rem;
  }
  .count {
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .maintenance-container {
    padding: 1rem;
  }

  .content {
    padding: 1.5rem;
  }

  .logo-text {
    font-size: 1.8rem;
  }

  .maintenance-info h1 {
    font-size: 1.8rem;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .count {
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
  }

  .label {
    font-size: 0.7rem;
  }
}
