/* Reinicio de estilo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Estilos base */
  body {
    font-family: 'Poppins', sans-serif;
    /* Fondo con degradado suave */
    background: linear-gradient(135deg, #f4f4f4 0%, #eaeaea 100%);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Animación de opacidad al cargar la página */
    animation: fadeIn 0.8s ease-in-out;
  }
  
  /* Animación de fondo */
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Contenedor principal */
  .container {
    max-width: 600px;
    width: 90%;
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90vh;
  }
  
  /* Header / Logo */
  header .logo {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2rem;
    /* Animación de aparición sutil para el logo */
    animation: fadeDown 1s ease-out;
  }
  
  /* Animación para el logo */
  @keyframes fadeDown {
    0% {
      opacity: 0;
      transform: translateY(-20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Main */
  main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .construction-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    /* Pequeña animación de “pop in” */
    animation: popIn 1s ease-in-out;
  }
  
  @keyframes popIn {
    0% {
      transform: scale(0.7);
      opacity: 0;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.7;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .headline {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #111;
    /* Aparición desde abajo */
    animation: fadeUp 0.8s ease-in-out;
  }
  
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #555;
    /* Aparece con retardo sutil */
    animation: fadeUp 0.8s ease-in-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
  }
  
  /* Sección Qué se viene */
  .coming-soon {
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease-in-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
  }
  
  .coming-soon-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .coming-soon-list {
    list-style: none;
    padding: 0;
  }
  
  .coming-soon-list li {
    margin: 0.5rem 0;
  }
  
  /* Footer */
  footer p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease-in-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
  }