@charset "utf-8";
/* CSS Document */
 
	  /* 
	  green: #0DA05A
	  
	  	font-family: 'Nunito Sans', sans-serif; 
	font-family: 'Rubik', sans-serif;
	font-family: 'Roboto', sans-serif;
	font-family: 'Fredoka', sans-serif;
	font-family: 'Libre Baskerville', serif;
	font-family: 'Saira', sans-serif;
	font-family: 'Montserrat', sans-serif;  
  font-family: "Heebo", sans-serif;
  font-family: "Geologica", sans-serif;
  font-family: "Inter Tight", sans-serif;
	 */
 




/*##########################################################
	   0.0 Start
##########################################################*/ 	  
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;  
    }
 *:hover{  
    }
    html, body {
      margin: 0;
      padding: 0;
      height: 100%; 
      overflow-x: hidden; 
		background-color: #eee;
		
  font-family: "Geologica", sans-serif;
		font-weight: 500; 
    }  
 

 /*##########################################################
	   0.0 SCROLLBAR
##########################################################*/ 
::-webkit-scrollbar{
  width: 10px;
  background: #000;
	z-index: 999;
		position:absolute; 
} 
::-webkit-scrollbar-track{  
  width: 8px;
	z-index: 999;
		position:absolute; 
	
	
}
::-webkit-scrollbar-thumb {
  background: rgba(33,33,33,0.5); 
  border-radius: 33px;  
	z-index: 999;
		position:absolute; 
}
::-webkit-scrollbar-thumb:hover {
	z-index: 999;
		position:absolute; 
}

 .re{  
  padding: 5px;
		    background-size: 400% 400%;  
	 color: #aaa;
	 margin-right: 5px;
	 border-radius: 3px;
	 
	  }

 .check{  
  padding: 5px; 
	 font-weight: 600;
	 color: #333;
	 margin-right: 5px;
	 border-radius: 3px;
	  }

  @keyframes moveBg { 
    0%{background-position:0% 0%; }  
	25%{background-position:25% 25%; } 
	50%{background-position:75% 75%; }
	55%{background-position:100% 100%; }
	75%{background-position:80% 80%;  }
	80%{background-position:70% 70%; } 
    100%{background-position:0% 0%;   }
	
	
}


/*##########################################################
	   0.0 header
##########################################################*/    
.header{
	width: 100%;
	height: 50vh;
	background-image:url("../bg.jpg");
	background-size: cover;
	
	  display: flex;
  align-items: center;   /* Centrado vertical */
  justify-content: center; /* Centrado horizontal */  
}
.header p{	 
	display: inline-block;
  color: white;
  font-size: 13vh; 
  line-height: 1; 
  margin: 0; /* MUY IMPORTANTE */
  padding: 0;
  width: auto; 
}
#btn{ 
	position: absolute;
	left: 13px;
	top: 13px;
	display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;           /* Ancho del botón */
  height: 60px;          /* Alto del botón */
  background-color: #eee;/* Color de fondo */
  color: #002020;               /* Color del texto */
  text-decoration: none;      /* Sin subrayado */
  border-radius: 50%;         /* Hace que sea redondo */
  font-size: 16px;            /* Tamaño del texto */
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#btn:hover{
	
	cursor: none;
  background-color: #00c0c0;/* Color de fondo */
  color: black;               /* Color del texto */
}
/*##########################################################
	   0.0 legal container
##########################################################*/ 
.legal-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  margin-top: 30px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 6px;
}
.legal-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #000;
}
 

/*##########################################################
menubtns
##########################################################*/ 
 .section-title {
      cursor: pointer;
      font-weight: bold;
      margin: 15px 0;
      padding: 10px;
      background: #f2f2f2;
      border-radius: 6px;
      transition: background 0.3s;
    }

    .section-title:hover {
      background: #e0e0e0;
    }

    .legal-text {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      margin: 0;
      padding: 0 5px;
    }

    .legal-text.active {
      max-height: 1000px; /* grande para que se expanda suficiente */
      padding: 10px 21px;
      background: #f2f2f2;
	
    }



/* Mobile V 0.0.1  */
@media (max-width: 767px){
	
.header p{	 
	display: inline-block;
  color: white;
  font-size: 8vh; 
  line-height: 1; 
  margin: 0; /* MUY IMPORTANTE */
  padding: 13px;
  width: auto; 
}
}