/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/TermsAcceptanceModal.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
.terms-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 55, 72, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.terms-modal {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(45, 55, 72, 0.3);
    animation: slideIn 0.3s ease-out;
    font-family: 'DM Sans', sans-serif;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.terms-modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #E5E7EB;
    background: #2D3748;
    color: white;
    border-radius: 12px 12px 0 0;
}

.terms-modal-header h2 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.01em;
}

.terms-modal-version {
    margin: 0;
    opacity: 0.85;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.terms-modal-progress {
    padding: 20px 32px;
    background: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
}

.progress-bar {
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: #5A8B9F;
    transition: width 0.3s ease;
}

.progress-text {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.terms-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    background: white;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    color: #2D3748;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #5A8B9F;
    letter-spacing: -0.01em;
}

.section-content {
    color: #2D3748;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.section-content p {
    margin-bottom: 1em;
    color: #2D3748;
}

.section-content ul,
.section-content ol {
    margin-bottom: 1em;
    padding-left: 24px;
    color: #2D3748;
}

.section-content li {
    margin-bottom: 0.5em;
}

.section-content h1,
.section-content h2,
.section-content h3,
.section-content h4 {
    margin-top: 1.5em;
    margin-bottom: 0.75em;
    color: #2D3748;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.section-content strong {
    font-weight: 600;
    color: #2D3748;
}

.terms-modal-error {
    margin: 0 32px;
    padding: 14px 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    color: #991b1b;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
}

.terms-modal-footer {
    padding: 20px 32px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    background: #F9FAFB;
}

.terms-modal-footer button {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    flex: 1;
}

.btn-secondary {
    background: white;
    color: #2D3748;
    border: 1px solid #E5E7EB;
}

.btn-secondary:hover:not(:disabled) {
    filter: brightness(0.98);
    border-color: #6B7280;
}

.btn-secondary:active:not(:disabled) {
    filter: brightness(0.95);
}

.btn-secondary:focus-visible {
    outline: 3px solid rgba(90, 139, 159, 0.5);
    outline-offset: 2px;
}

.btn-primary {
    background: #5A8B9F;
    color: white;
    border: 1px solid #4e7a8b;
}

.btn-primary:hover:not(:disabled) {
    filter: brightness(0.95);
}

.btn-primary:active:not(:disabled) {
    filter: brightness(0.9);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(90, 139, 159, 0.5);
    outline-offset: 2px;
}

.btn-accept {
    background: #9DB5A5;
    color: white;
    font-size: 1rem;
    border: 1px solid #8ca599;
}

.btn-accept:hover:not(:disabled) {
    filter: brightness(0.95);
}

.btn-accept:active:not(:disabled) {
    filter: brightness(0.9);
}

.btn-accept:focus-visible {
    outline: 3px solid rgba(157, 181, 165, 0.5);
    outline-offset: 2px;
}

.terms-modal-footer button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.terms-modal-notice {
    padding: 16px 32px 20px;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    color: #6B7280;
    text-align: center;
    background: #F9FAFB;
    border-radius: 0 0 12px 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .terms-modal {
        max-height: 95vh;
        margin: 10px;
    }

    .terms-modal-header,
    .terms-modal-progress,
    .terms-modal-content,
    .terms-modal-footer,
    .terms-modal-notice {
        padding-left: 20px;
        padding-right: 20px;
    }

    .terms-modal-footer {
        flex-direction: column;
    }

    .terms-modal-footer button {
        width: 100%;
    }
}
/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/Hero.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
/* Hero Section - Vite Inspired */
.hero-section-new {
  min-height: 150vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, 
    #fafafa 0%, 
    #f5f7fa 50%, 
    #f0f2f5 100%
  );
  padding: 4rem 2rem;
}

.svg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 90%;
  z-index: 0;
  pointer-events: none;
}

.svg-container svg {
  width: 100%;
  height: 100%;
  filter: url(#glow);
}

/* Estilos para círculos y labels */
.bulb-outer {
  transition: all 0.3s ease;
}

.tech-label {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

#central-logo {
  animation: pulse-logo 4s ease-in-out infinite;
}

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

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

/* Texto principal */
.hero-text-content {
  text-align: center;
  max-width: 900px;
  margin-top: -14rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--mbn-slate-900);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-gradient-text {
  background: linear-gradient(135deg, 
    var(--mbn-steel-500) 0%, 
    #7BA7BA 50%, 
    var(--mbn-sage-400) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--mbn-gray-500);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Contenedor de animación */
.hero-animation-container {
  width: 100%;
  max-width: 1200px;
  height: 600px;
  position: relative;
  margin: 0.5rem 0;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Botones de acción */
.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Botón CTA llamativo */
.hero-btn-cta {
  position: relative;
  padding: 1.25rem 3.5rem;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans-primary);
  color: white;
  background: linear-gradient(135deg, #4fb3d4 0%, #3a8fa8 50%, #2d7089 100%);
  box-shadow: 
    0 8px 24px rgba(79, 179, 212, 0.4),
    0 4px 12px rgba(79, 179, 212, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent
  );
  transition: left 0.5s ease;
}

.hero-btn-cta:hover::before {
  left: 100%;
}

.hero-btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(79, 179, 212, 0.5),
    0 6px 16px rgba(79, 179, 212, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.hero-btn-cta:active {
  transform: translateY(-1px);
  box-shadow: 
    0 6px 16px rgba(79, 179, 212, 0.4),
    0 3px 8px rgba(79, 179, 212, 0.3);
}

/* Animación de pulso sutil */
@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 
      0 8px 24px rgba(79, 179, 212, 0.4),
      0 4px 12px rgba(79, 179, 212, 0.3);
  }
  50% {
    box-shadow: 
      0 10px 28px rgba(79, 179, 212, 0.5),
      0 5px 14px rgba(79, 179, 212, 0.4);
  }
}

.hero-btn-cta {
  animation: btn-pulse 3s ease-in-out infinite;
}

/* Tech Stack Display */
.tech-stack-display {
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1rem;
  min-height: 4rem;
}

.tech-badge {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--mbn-steel-500);
  background-color: rgba(90, 139, 159, 0.1);
  color: var(--mbn-steel-500);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  animation: pulse-badge 2s ease-in-out infinite;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

@keyframes pulse-badge {
  0%, 100% {
    opacity: 1;
    border-color: var(--mbn-steel-500);
  }
  50% {
    opacity: 0.7;
    border-color: var(--mbn-sage-400);
  }
}

/* Logo MB Container */
.hero-logo-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mb-logo-box {
  position: relative;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.98) 100%);
  border-radius: 20px;
  border: 3px solid var(--mbn-steel-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 32px rgba(90, 139, 159, 0.2),
    0 4px 16px rgba(90, 139, 159, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  animation: logo-pulse 3s ease-in-out infinite;
}

.mb-logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 48px rgba(90, 139, 159, 0.3),
    0 6px 24px rgba(90, 139, 159, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: var(--mbn-sage-400);
}

/* Efecto de reflejo diagonal tipo anime cuando las partículas top llegan */
.mb-logo-pulse {
  position: relative;
  overflow: hidden;
}

.mb-logo-pulse::before {
  content: '';
  position: absolute;
  top: -150%;
  left: -150%;
  width: 150px;
  height: 400%;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(90, 139, 159, 0.1) 15%,
    rgba(90, 139, 159, 0.3) 25%,
    rgba(123, 167, 186, 0.5) 40%,
    rgba(143, 181, 161, 0.6) 50%,
    rgba(123, 167, 186, 0.5) 60%,
    rgba(90, 139, 159, 0.3) 75%,
    rgba(90, 139, 159, 0.1) 85%,
    transparent 100%
  );
  filter: blur(15px);
  transform: rotate(45deg);
  animation: anime-shine 1.2s ease-in-out;
}

@keyframes anime-shine {
  0% {
    left: -150%;
    top: -150%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 150%;
    top: 150%;
    opacity: 0;
  }
}

/* Estilos específicos para el estado hover del logo MB */
.mb-logo-hover-active {
  transform: scale(1.12) !important;
  box-shadow: 
    0 0 40px rgba(90, 139, 159, 0.6),
    0 0 60px rgba(90, 139, 159, 0.4),
    0 0 80px rgba(90, 139, 159, 0.2),
    0 8px 32px rgba(90, 139, 159, 0.3) !important;
  border-color: #5a8b9f !important;
  transition: all 0.3s ease-out;
}

/* Clase específica para desvanecer partículas top durante hover */
.top-particles-fade {
  opacity: 0 !important;
  transition: opacity 0.4s ease-out;
}

.mb-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.mb-letter {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -2px;
}

.m-letter {
  background: linear-gradient(135deg, var(--mbn-steel-500) 0%, #4A7A8E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: letter-glow 2s ease-in-out infinite;
}

.b-letter {
  background: linear-gradient(135deg, var(--mbn-sage-400) 0%, #7BA7BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: letter-glow 2s ease-in-out infinite 0.3s;
}

@keyframes logo-pulse {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(90, 139, 159, 0.2),
      0 4px 16px rgba(90, 139, 159, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow: 
      0 12px 40px rgba(90, 139, 159, 0.25),
      0 6px 20px rgba(90, 139, 159, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

@keyframes letter-glow {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(90, 139, 159, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(90, 139, 159, 0.5));
  }
}

/* Responsive */
@media (max-width: 768px) {
  .tech-stack-display {
    bottom: 1.5rem;
    gap: 0.75rem;
  }

  .tech-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .hero-section-new {
    min-height: auto;
    padding: 4rem 1rem;
  }

  .mb-logo-box {
    width: 100px;
    height: 100px;
  }

  .mb-letter {
    font-size: 40px;
  }

  .hero-text-content {
    margin-top: 2rem;
  }

  .hero-animation-container {
    height: 400px;
    margin: 1rem 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

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

@media (max-width: 480px) {
  .hero-animation-container {
    height: 300px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-logo-container {
    margin-top: 2rem;
  }

  .mb-logo-box {
    width: 90px;
    height: 90px;
    border-radius: 16px;
    border-width: 2px;
  }

  .mb-letter {
    font-size: 36px;
  }
}

/* Animaciones adicionales */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Título estático - sin animación de float */

/* Efecto de brillo en hover de botones */
.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.hero-btn-primary {
  position: relative;
  overflow: hidden;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

