@charset "UTF-8";
/* ==========================================================================
   1. TOKENS DE DISEÑO (Extraídos de DESIGN.md)
   ========================================================================== */
/* ==========================================================================
   2. MIXINS TIPOGRÁFICOS
   ========================================================================== */
/* ==========================================================================
   3. MIXINS DE COMPONENTES Y ESTRUCTURA (3D-Tactile Modernism)
   ========================================================================== */
.coming-soon-main {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .coming-soon-main {
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* ==========================================================================
   4. MIXINS DE INICIALIZACIÓN GLOBAL (Reset, Nav, Footer)
   ========================================================================== */
/* ==========================================================================
   INICIALIZACIÓN Y FONDOS
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

.site-body {
  background-color: #f9f9fc;
  color: #1a1c1e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.selection-theme ::selection {
  background-color: #1f74d6;
  color: #fefcff;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* ==========================================================================
2. CLASES UTILITARIAS Y BOTONES (Basadas en Mixins)
========================================================================== */
.btn-3d {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.05em;
  padding: 16px 32px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: all 0.15s ease;
  width: 100%;
}
@media (min-width: 640px) {
  .btn-3d {
    width: auto;
  }
}

.btn-primary {
  background-color: #005bb1;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 4px 0 #00468b, 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-primary:active {
  transform: translateY(4px);
  box-shadow: 0 0px 0 #00468b, 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
  transform: scale(1.02);
}

.btn-surface {
  background-color: #f9f9fc;
  color: #005bb1;
  border: none;
  border-radius: 9999px;
  box-shadow: 0 4px 0 #c1c6d5, 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #c1c6d5;
}
.btn-surface:active {
  transform: translateY(4px);
  box-shadow: 0 0px 0 #c1c6d5, 0 2px 4px rgba(0, 0, 0, 0.1);
}
.btn-surface:hover {
  transform: scale(1.02);
}

body.overflow-hidden {
  overflow: auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.mesh-bg {
  background-color: #f9f9fc;
  background-image: radial-gradient(at 0% 0%, rgba(0, 91, 177, 0.15) 0px, transparent 50%), radial-gradient(at 100% 0%, rgba(182, 0, 120, 0.15) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(149, 69, 0, 0.15) 0px, transparent 50%), radial-gradient(at 0% 100%, rgba(31, 116, 214, 0.15) 0px, transparent 50%);
  background-size: 200% 200%;
  animation: gradientMove 15s ease infinite alternate;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 100%;
  }
}
/* ==========================================================================
   SISTEMA DE PARTÍCULAS
   ========================================================================== */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1.5);
    opacity: 0;
  }
}
/* ==========================================================================
   LAYOUT PRINCIPAL
   ========================================================================== */
.coming-soon-main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.intro-section {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro-logo {
  height: 128px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}
.intro-logo:hover {
  transform: scale(1.05);
}

.intro-title {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 64px;
  letter-spacing: -0.02em;
  color: #1a1c1e;
  margin-top: 24px;
  max-width: 42rem;
}
.intro-title.glow-text {
  text-shadow: 0 0 20px rgba(0, 91, 177, 0.2);
}

.intro-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #414753;
  margin-top: 16px;
  max-width: 32rem;
}

/* ==========================================================================
   TEMPORIZADOR Y BLOQUES DE TIEMPO
   ========================================================================== */
.timer-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  border-radius: 1.5rem;
  padding: 24px;
}
@media (min-width: 768px) {
  .timer-container {
    padding: 48px;
  }
}

.timer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .timer-grid {
    gap: 24px;
  }
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 15px rgba(0, 91, 177, 0.05);
  min-width: 120px;
  border-bottom: 4px solid;
  transition: all 0.3s ease;
}
.time-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 91, 177, 0.15);
  border-bottom-color: #005bb1;
}
@media (max-width: 768px) {
  .time-block {
    min-width: 80px;
    padding: 16px 8px;
  }
}

.time-value {
  font-family: "Montserrat", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #005bb1 0%, #b60078 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}
@media (max-width: 768px) {
  .time-value {
    font-size: 40px;
  }
}

.time-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #727784;
}
.time-label.text-secondary {
  color: #b60078;
}

/* ==========================================================================
   BOTONES Y FOOTER
   ========================================================================== */
.notify-action {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.pulse-btn {
  animation: pulse-soft 2s infinite;
}
.pulse-btn:hover {
  animation: none;
  box-shadow: 0 8px 20px rgba(0, 91, 177, 0.3);
}

@keyframes pulse-soft {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 91, 177, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 91, 177, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 91, 177, 0);
  }
}
.minimal-footer {
  width: 100%;
  padding: 24px 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer-credit {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #414753;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-credit:hover {
  opacity: 1;
}
.footer-credit .text-secondary {
  color: #b60078;
}
.footer-credit .icon-sm {
  font-size: 16px;
}

.filled-icon {
  font-variation-settings: "FILL" 1;
}

/* ==========================================================================
   MODAL DE NOTIFICACIÓN
   ========================================================================== */
.modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-wrapper.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-wrapper.active .modal-content {
  transform: scale(1);
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 28, 30, 0.4);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  position: relative;
  width: 100%;
  max-width: 28rem;
  border-radius: 1rem;
  padding: 32px;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #414753;
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal-close-btn:hover {
  color: #1a1c1e;
}

/* Decoraciones del modal */
.modal-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.3;
  z-index: 0;
  border-radius: 1rem;
}

.decor-circle {
  position: absolute;
  border-radius: 9999px;
}

.decor-1 {
  width: 16px;
  height: 16px;
  top: 40px;
  left: 40px;
  animation: pulse-soft 2s infinite;
}

.decor-2 {
  width: 12px;
  height: 12px;
  bottom: 80px;
  right: 40px;
  animation: floatParticle 4s infinite alternate;
}

.decor-3 {
  width: 8px;
  height: 8px;
  top: 50%;
  left: 20px;
  animation: pulse-soft 3s infinite;
}

.modal-inner, .modal-success {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.modal-success {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.modal-success.hidden {
  display: none;
}

.success-icon {
  font-size: 64px;
  color: #b60078;
}

.modal-title {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  font-size: 24px;
  color: #1a1c1e;
  margin-bottom: 8px;
  text-align: center;
}

.modal-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #414753;
  margin-bottom: 32px;
  text-align: center;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 1rem;
  border: 1px solid #c1c6d5;
  background-color: #ffffff;
  color: #1a1c1e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: all 0.3s ease;
}
.modal-input:focus {
  outline: none;
  border-color: #005bb1;
  box-shadow: 0 0 0 2px rgba(0, 91, 177, 0.2);
}

.btn-submit-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-submit-shimmer .btn-text {
  position: relative;
  z-index: 10;
}
.btn-submit-shimmer .shimmer-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) skewX(-20deg);
}
.btn-submit-shimmer:hover .shimmer-effect {
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%) skewX(-20deg);
  }
}
.hidden {
  display: none !important;
}

.error-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 8px;
}

/* ==========================================================================
   ANIMACIONES DE ENTRADA
   ========================================================================== */
.reveal-fade-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.delay-100 {
  animation-delay: 0.3s;
}

.delay-200 {
  animation-delay: 0.6s;
}

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

/*# sourceMappingURL=prox.css.map */
