* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body-splash {
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Segoe UI', sans-serif;
   width: -webkit-fill-available;
}

.splash-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: fadeZoom 2s ease-out forwards;
  opacity: 0;
  transform: scale(2.8);
}

.logo-svg {
  width: 400px;
  height: auto;
}

.text {
  font-size: 72px;
  font-weight: bold;
  fill: #000;
  letter-spacing: 5px;
  animation: strokeDraw 2s ease-out forwards;
  stroke: #000;
  stroke-width: 2;
}

.text .blue {
  fill: #002D62;
}

.text .red {
  fill: #CE1126;
}

.flag {
  width: 100px;
  animation: wave 2s infinite ease-in-out;
}

.flag-svg {
  width: 100px;
  height: auto;
}

/* Animaciones */
@keyframes fadeZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes strokeDraw {
  0% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    fill-opacity: 0;
  }
  50% {
    stroke-dashoffset: 0;
    fill-opacity: 0;
  }
  100% {
    stroke: none;
    fill-opacity: 1;
  }
}

@keyframes wave {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(1deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}
