* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;

  color: white;
  overflow-x: hidden; /* evita scroll horizontal */
  overflow-y: auto; /* scroll vertical normal */
}

.loader-container {
  background-color: #162231;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background-color: #162231;
  overflow: hidden;
}

.expanding-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: white;
  animation: expand 2.5s ease-out forwards;
}

@keyframes expand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    width: 200vmax;
    height: 200vmax;
    opacity: 0;
  }
}

.logo-container {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 1s ease-in-out 0.5s forwards;
}

.logo {
  width: 180px;
  height: 180px;
  background-image: url("https://res.cloudinary.com/ddqoou1fq/image/upload/v1754667819/000a8af3-acd8-4a3c-961d-d0e87bd577f8.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.loading-text {
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 1s ease-in-out 1s forwards;
}

.progress-container {
  width: 200px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  overflow: hidden;
  border-radius: 2px;
  opacity: 0;
  animation: fadeIn 1s ease-in-out 1.5s forwards;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.content {
  display: none;
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.fire-icon {
  color: #ff5722;
  margin: 0 5px;
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
