/* loader.css */
#loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: black; /* Fondo completamente negro y opaco */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease;
}

body {
  background-color: black; /* Fondo completamente negro y opaco para toda la página */
  margin: 0; /* Elimina márgenes predeterminados */
  padding: 0; /* Elimina rellenos predeterminados */
  height: 100%; /* Asegura que el fondo cubra toda la altura de la página */
}

/* Estilos adicionales para el contenido del loader */
svg {
  width: 300px;
  height: 300px;
  margin-bottom: 20px;
}

.logo-line {
  fill: none;
  stroke: white;
  stroke-width: 4.5;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw 2s forwards ease-in-out;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  opacity: 0;
  animation: fadeIn 2s forwards;
  animation-delay: 2s;
  text-align: center;
}

.logo-text .arba {
  color: white;
}

.logo-text .studio {
  color: #AAAAAA;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
