/*
=================================================================
    PÁGINA POLI VIRTUAL - ESTILOS "COMING SOON"
=================================================================

    Diseño moderno tipo "Coming Soon" / "Próximamente"
    Completamente responsivo y profesional

    IMPORTANTE: Todos los font-size son mínimo 16px
*/

/* ========================================
   HERO / MAIN SECTION
   ======================================== */
.polivirtual-page {
  min-height: 100vh;
}

.polivirtual-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  overflow: hidden;
}

/* Overlay oscuro sobre la imagen de fondo */
.polivirtual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Patrón decorativo de fondo */
.polivirtual-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 2;
  animation: backgroundMove 60s linear infinite;
}

@keyframes backgroundMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}

/* ========================================
   CONTENT CONTAINER
   ======================================== */
.polivirtual-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   ICON / LOGO
   ======================================== */
.polivirtual-icon {
  margin-bottom: 30px;
  animation: bounceIn 1.2s ease-out;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.polivirtual-icon__svg {
  width: 100px;
  height: 100px;
  fill: white;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.polivirtual-icon__image {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* ========================================
   BADGE
   ======================================== */
.polivirtual-badge {
  display: inline-block;
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ========================================
   TITLE
   ======================================== */
.polivirtual-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 25px;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ========================================
   MESSAGES
   ======================================== */
.polivirtual-message {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.polivirtual-secondary-message {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ========================================
   COUNTDOWN
   ======================================== */
.polivirtual-countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 50px 0;
  flex-wrap: wrap;
}

.polivirtual-countdown__item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 25px 30px;
  min-width: 110px;
  transition: all 0.3s ease;
}

.polivirtual-countdown__item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.polivirtual-countdown__value {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.polivirtual-countdown__label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   CTAs (BOTONES)
   ======================================== */
.polivirtual-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.polivirtual-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 200px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.polivirtual-btn--primary {
  background: white;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.polivirtual-btn--primary:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.polivirtual-btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.polivirtual-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.polivirtual-social {
  margin-top: 60px;
}

.polivirtual-social__title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.polivirtual-social__links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.polivirtual-social__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.polivirtual-social__links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.polivirtual-social__links svg {
  width: 22px;
  height: 22px;
  fill: white;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 768px) {
  .polivirtual-title {
    font-size: 3rem;
  }

  .polivirtual-message {
    font-size: 1.2rem;
  }

  .polivirtual-countdown {
    gap: 15px;
  }

  .polivirtual-countdown__item {
    padding: 20px 25px;
    min-width: 90px;
  }

  .polivirtual-countdown__value {
    font-size: 2.5rem;
  }

  .polivirtual-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .polivirtual-btn {
    min-width: auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 480px) {
  .polivirtual-hero {
    padding: 40px 15px;
  }

  .polivirtual-icon__svg {
    width: 70px;
    height: 70px;
  }

  .polivirtual-icon__image {
    max-width: 100px;
  }

  .polivirtual-badge {
    font-size: 16px;
    padding: 8px 20px;
  }

  .polivirtual-title {
    font-size: 2.2rem;
  }

  .polivirtual-message {
    font-size: 16px;
  }

  .polivirtual-secondary-message {
    font-size: 16px;
  }

  .polivirtual-countdown {
    gap: 10px;
  }

  .polivirtual-countdown__item {
    padding: 15px 20px;
    min-width: 70px;
  }

  .polivirtual-countdown__value {
    font-size: 2rem;
  }

  .polivirtual-countdown__label {
    font-size: 16px;
  }

  .polivirtual-btn {
    padding: 14px 30px;
    font-size: 16px;
  }

  .polivirtual-social__links a {
    width: 45px;
    height: 45px;
  }

  .polivirtual-social__links svg {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  .polivirtual-hero::before,
  .polivirtual-content,
  .polivirtual-icon,
  .polivirtual-badge,
  .polivirtual-title {
    animation: none;
  }

  .polivirtual-countdown__item,
  .polivirtual-btn,
  .polivirtual-social__links a {
    transition: none;
  }
}

/* ========================================
   UTILITIES
   ======================================== */

/* Ocultar header y footer si es necesario */
.page-template-page-poli-virtual header,
.page-template-page-poli-virtual footer {
  /* Descomenta estas líneas si quieres ocultar header y footer */
  /* display: none !important; */
}
