body {
  margin: 0;
  background: #1a1a2e;
  color: white;
  font-family: 'Arial Black', Arial, sans-serif;
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Logo en el centro con animación */
#logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #ffcc00;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 0 15px #ffcc00;
}

#logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Animación de pulso */
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Eslogan animado de derecha a izquierda */
#eslogan {
  position: absolute;
  white-space: nowrap;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  top: 10%;
  color: #ffcc00;
  animation: moveLeft 12s linear infinite;
  text-shadow: 0 0 10px #ffcc00;
  z-index: 20;
}

@keyframes moveLeft {
  0% { left: 100%; }
  100% { left: -100%; }
}

/* Avión */
#avion {
  position: absolute;
  font-size: 2rem;
  z-index: 15;
  transform-origin: center;
}

/* Botón pulsante */
#btnPais {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #1a1a2e;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 15px #ffcc00;
  animation: pulseBtn 2s infinite;
  z-index: 25;
  transition: background 0.3s ease;
}

#btnPais:hover {
  background: #e6b800;
}

@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 0 15px #ffcc00; }
  50% { box-shadow: 0 0 30px #ffcc00; }
}
