/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth; /* Hace el scroll suave */
}

header {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa toda la altura de la ventana */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* Capa semi-transparente */
        url('assets/img/IMG_20240617_135102.jpg') center/cover no-repeat; /* Imagen de fondo */
    box-shadow: 0 5px 15px rgba(0,0,0,0.7); /* Sombra suave */
    z-index: 100; /* Asegura que esté por encima del contenido */
}

/* Media Query para dispositivos móviles */
@media (max-width: 768px) {
    header {
        background-size: 250%; /* Ajusta el tamaño de la imagen de fondo al 110% del ancho original */
    }
}

#logo {
    max-width: 50%;
}

@media (min-width: 768px) {
    #logo {
        max-width: 30%; /* Ajusta el tamaño máximo del logo en dispositivos grandes */
    }
}

@media (min-width: 1024px) {
    #logo {
        max-width: 20%; /* Ajusta el tamaño máximo del logo en dispositivos grandes */
    }
}



.scroll-indicator {
    position: absolute;
    bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.arrow-down {
    width: 20px;
    height: 20px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    display: inline-block;
    transform: rotate(45deg);
    margin-top: 10px;
}

main {
    
    margin-top: 2vh; /* Espacio para evitar que el contenido esté detrás del header fijo */
    justify-content: center;
}




.main {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1e1f26;
  text-align: center;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.7);
  margin-top: 20px;
  margin-bottom: 0;
}

.main-container{
    margin-top: 50px;
    margin-bottom: 50px;
}

.main h1,
.slider h1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 9vw;
  margin: 0;
  padding-bottom: .5rem;
  letter-spacing: 0.5rem;
  color: #03dac6;
  transition: all 0.3s ease;
  z-index: 3;
}
h1:hover {
  transform: translate3d(0, -10px, 22px);
  color: #ff0266;
}


h3.span {
  font-size: 4vw;
  letter-spacing: 0.2em;
  font-family: "ROBOTO", sans-serif;
  font-weight: 300;
  color: #ff0266;
  z-index: 4;
}



.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distribución equitativa de las imágenes */
    padding: 20px;
  }
  
  .image-box {
    width: calc(50% - 10px); /* Ajusta el ancho de cada caja de imagen */
    margin-bottom: 20px; /* Espacio entre las cajas de imagen */
  }
  
  .image-box img {
    width: 100%;
    height: auto;
    display: block; /* Evita el espacio adicional debajo de las imágenes */
    border-radius: 20px;
  }
  
  /* Media queries para dispositivos móviles */
  @media (max-width: 768px) {
    .container {
      flex-direction: column; /* Cambia a disposición vertical */
    }
  
    .image-box {
      width: 100%; /* Toma todo el ancho disponible */
      margin-bottom: 10px; /* Espacio entre las cajas de imagen */
    }
  }



a {
  text-decoration: none;
}

button {
    --green: #1BFD9C;
    font-size: 15px;
    padding: 0.7em 2.7em;
    letter-spacing: 0.06em;
    position: relative;
    font-family: inherit;
    border-radius: 0.6em;
    overflow: hidden;
    transition: all 0.3s;
    line-height: 1.4em;
    border: 2px solid var(--green);
    background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%,transparent 60% , rgba(27, 253, 156, 0.1) 100%);
    color: var(--green);
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
  }
  
  button:hover {
    color: #82ffc9;
    box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.6), 0 0 9px 3px rgba(27, 253, 156, 0.2);
  }
  
  button:before {
    content: "";
    position: absolute;
    left: -4em;
    width: 4em;
    height: 100%;
    top: 0;
    transition: transform .4s ease-in-out;
    background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%,rgba(27, 253, 156, 0.1) 60% , transparent 100%);
  }
  
  button:hover:before {
    transform: translateX(15em);
  }



p{
    color: #faebd7;
    letter-spacing: 2px; 
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    padding-bottom: 15px;
}

.img-intro{
    width: 20%;
}

@media (max-width: 768px) {
    .img-intro {
        width: 50%; /* Ajusta el tamaño máximo del logo en dispositivos grandes */
    }
}

.up{
    margin-top: 90px;
    text-align: center;
    font-weight: 1000;
    font-size: 28px;
    color: #1BFD9C;
}

.up-participa{
    color: #1BFD9C;
    font-weight: 1000;
    font-size: 28px;
    text-align: center;
}

li{
    color: #faebd7;
    letter-spacing: 2px; 
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}







/* Estilos para el contenido de la página */
section {
    padding: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    
}
