* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
  }
  
  .hero {
    height: 100vh;
    background-image: url("assets/background.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px; /* más compacto entre logo y estrellas */
    padding: 24px;
    transform: translateY(-10px); /* ajuste óptico de centrado */
  }
  
  /* LOGO */
  .logo {
    width: 85%;          /* MÁS GRANDE */
    max-width: 420px;    /* límite en desktop */
    height: auto;
  }
  
  /* GIF ESTRELLAS */
  .gif {
    width: 100%;
    max-width: 220px;
    height: auto;
  }
  