/* General */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-container {
  text-align: center;
  animation: fadeIn 1.5s ease-in-out forwards;
}

/* Animación del Logo */
.logo {
  position: relative;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.c {
  font-size: 120px;
  font-weight: bold;
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
}

.c.red {
  color: red;
  text-shadow: 2px 2px 5px black;
  animation: slideInRed 1.5s ease-in-out forwards;
}

.c.orange {
  color: orange;
  text-shadow: 2px 2px 5px black;
  animation: slideInOrange 1.5s ease-in-out forwards;
}

/* Títulos */
.title {
  font-size: 32px;
  margin: 0;
  opacity: 0;
  animation: fadeInText 1.8s ease-in-out forwards;
}

.subtitle {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0;
  animation: fadeInText 2.3s ease-in-out forwards;
  color: #ffae42;
}

/* Keyframes */
@keyframes slideInRed {
  0% {
    opacity: 0;
    transform: translateX(-200px) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInOrange {
  0% {
    opacity: 0;
    transform: translateX(200px) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
