
#main .mainPicture{
	background-size: cover; /* Ajusta el tamaño */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que se repita */  
    background-attachment: scroll; /* importante para JS */     
    max-height: 800px;
    height: 80vh;
    width: 100%;
    /*max-width: 1500px;*/
    margin: auto;
    background-color: #000;
    overflow: hidden;
    position: relative;
	background-size: 110% 100%;
	background-position: 0% 0%;
	animation: 20s linear 0s infinite normal none running slideBg;    
}


#main .mainPicture .title{
	max-width: 600px;
	width: 95%;
	top:20%;
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
  animation: revealSlide 5s forwards, customBlinkFast 10s infinite;
  filter: drop-shadow(0 0 10px cyan);
}


 
#main .mainPicture .world{
	width: 90%;
	max-width: 900px;
	bottom: -150px;
	position: absolute;
	margin-bottom: 0;
	right: 0;
	left: 0;
	display: block;
	margin: auto;
}

@media(max-width: 900px){
	#main .mainPicture .world{
		bottom: -10vh;
	}	
}

@media(max-width: 750px){
	#main .mainPicture{
		max-height: 600px;
	}
}

@media(max-width: 480px){

	#main .mainPicture .title{
		top:30%;
	}

	#main .mainPicture .world{
		width: 120%;
		left: -9%;
	}	

	#main .mainPicture{
		max-height: 500px;
	}
}

#main .mainPicture h2 {
  color: #e0f7ff;
  display: block;
  position: absolute;
  top:25%;
  right: 0;
  left: 0;
text-align: center;

  margin: auto;  
  font-size: 14px;
  font-family: 'Futuro', sans-serif;
letter-spacing: 12px; /* MUY importante */  

  /* Efecto neón */
  text-shadow:
    0 0 5px #00cfff,
    0 0 10px #00cfff,
    0 0 20px #00cfff,
    0 0 40px #00e6ff,
    0 0 80px #00e6ff;

 
  animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
  0% {
    opacity: 1;
    text-shadow:
      0 0 5px #0ff,
      0 0 10px #0ff,
      0 0 20px #0ff,
      0 0 40px #00e6ff;
  }
  100% {
    opacity: 0.8;
    text-shadow:
      0 0 2px #0ff,
      0 0 5px #0ff,
      0 0 10px #00e6ff;
  }
}

@media(max-width:  700px){

	#main .mainPicture{
		height: 80vh;
	}
}

#main .projects{
	background-color: #121212;
}

#main .projects h2, #main .presence h2{
	padding: 40px 0px 30px 0px;
	text-align: center;
	font-weight: 600;
	color: #FFF;
}

#main .projects h2 span, #main .presence h2 span{
	font-weight: 800;	
}

#main .projects .vewmore{
	color: #FFF;
	text-align: center;
	display: block;
	font-family: 'Poppins', sans-serif;
	font-style: italic;  
	font-size: 20px;
	padding: 60px 0px;
	font-weight: 700;
}

#main .projects .vewmore img{
	width: 20px;
	margin-left: 10px;
}

#main .presence {
	padding: 20px 10px 60px 10px;
}

#main .regions{
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: relative;
}

#main .regions > div{
	width: calc(33% - 50px);
	max-width: 180px;
	transition: all 0.3s ease;
	cursor: pointer;
}

@media(max-width: 670px ){
	#main .regions h3{
		font-size: 4vw;
	}
}

@media(max-width: 500px ){

	#main .regions > div{
		width: calc(50% - 20px);
	}

	#main .regions{
		flex-wrap: wrap;
	}
}

#main .regions > div:hover{
	transform: scale(1.1); 
}

#main .regions img{
	width: 100%;
	
}
#main .regions h3{
	text-align: center;
}



#main .main-g{
	padding: 45px 30px;
}

#main .navOptions{
	background-color: #FEDC2C;

}

#main .navOptions a{
	display: inline-block;
	font-size: 20px;
	padding: 15px 20px;
}

#main .navOptions > div{
	margin: auto;
	width: max-content ;
}




@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

