* {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Montserrat-BlackItalic';
  src: url('Fonts/Montserrat-BlackItalic.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat-Black';
  src: url('Fonts/Montserrat-Black.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat-Thin';
  src: url('Fonts/Montserrat-Thin.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url('Fonts/Montserrat-Bold.ttf') format('truetype');
}

html {
  font-size: 20px; /* Tamaño de fuente base en píxeles */
}

header 
{
  
  height: 120px;
  position: relative;
  background-image: url('Encabezado_Actividades.jpg');
  background-size: cover;
  background-position: center; /* Mueve la imagen 200px hacia abajo */
}

#BtnWhatsapp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10;
  background: #59CE72;
  border-radius: 50%;
  width: 1px; /* Ancho inicial */
  height: 1px; /* Altura inicial */
  cursor: pointer;
  transition: width 1s, height 1s;
}

#BtnWhatsapp.expanded {
  width: 60px; /* Ancho al hacer scroll */
  height: 60px; /* Altura al hacer scroll */
}

#BtnWhatsapp a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none; /* Si deseas quitar el subrayado */
  opacity: 0; /* Inicialmente oculto */
  transition: opacity 0.5s; /* Transición suave para la opacidad */
}

#BtnWhatsapp.expanded a {
  opacity: 1; /* Mostrar el icono cuando se expande el contenedor */
}

#BtnWhatsapp a i {
  color: white;
  font-size: 2rem;
}

#BtnWhatsapp:hover {
  background: #215C54;
  transition: background 0.6s; /* Solo transición para el color de fondo */
}

.Encabezado {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* Puedes usar 'space-around' en lugar de 'space-between' si quieres un poco más de espacio */
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  padding-right: 48px;
}


.MenuEncabezado {
  position: relative;
  top: 0.4rem;
}

.mostrar-menu,
.ocultar-menu {
  font-size: 7.5rem;
  display: none;
}

.mostrar-menu {
  order: 1;
  color: rgba(0, 0, 0, 0.8);
  font-weight: bold;
}

.ocultar-menu {
  color: #ffffff;
  position: relative;
  top: 0px;
  font-weight: bold;
}

#check {
  display: none;
}

.LogoEncabezado 
{
  position: relative;
  top: 10px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}.LogoEncabezado 
{
  position: relative;
  top: 10px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.LogoEncabezado img
{
  max-width: 100%;
  max-height: 100%;
}

nav {
  background-color: none;
}

nav ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
}

nav li {
  position: relative;
}

nav a {
  display: block;
  padding: 11px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
}

/* Estilos para la lista desplegable */
nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8); /* Cambio de color de fondo a negro *//* Cambio de color de las letras a blanco */
  padding: 0;
  margin: 0;
  border: 1px solid none;
  z-index: 2;
  text-align: center;
}

nav ul ul li {
  width: 100%;
  border-top: 1px solid #beb6b6;
}

nav ul li:hover > ul {
  display: inline-block;
}




.TextoNosotros
{
  display: flex;
  justify-content: center;
  align-items: center; /* Ajusta la altura según tus necesidades */
  background-color: #2B5336;
}

.VideoSection {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 800px; /* Ajusta la altura según sea necesario */
  background-color: #ffffff;
}

.VideoSection iframe {
  width: 880px;
  height: 500px;
}

.VC 
{
  height: 600px;
  max-width: 1280px;
}

iframe
{
  width: 100%; 
  height: 600px;
  min-width: 800px;
  margin: 0; 
}

.SectionParallax1 
{
  position: relative;
  display: flex;
  position: relative; /* Agrega posicionamiento relativo al contenedor */
  justify-content: center;
  align-items: center;
  height: 600px;
  background-color: #000000;
  overflow: hidden;
}

.SectionParallax1 img {
  opacity: 0.65;
  width: auto;
}

.SectionParallax2 
{
  position: relative;
  display: flex;
  position: relative; /* Agrega posicionamiento relativo al contenedor */
  justify-content: center;
  align-items: center;
  height: 600px;
  background-color: #000000;
  overflow: hidden;
}

.SectionParallax2 img {
  opacity: 0.65;
  width:100%;
}

.SectionParallax3
{
  position: relative;
  display: flex;
  position: relative; /* Agrega posicionamiento relativo al contenedor */
  justify-content: center;
  align-items: center;
  height: 600px;
  background-color: #000000;
  overflow: hidden;
}


#SCP {
  opacity: 0; /* Inicialmente, establece la opacidad en 0 para que estén ocultas */
  transform: translateY(180px); /* Desplazamiento inicial hacia abajo */
  transition: opacity 0.5s ease, transform 0.5s ease; /* Agrega transiciones para una animación suave */
}


#CenterText
{
  position: absolute;
  display: flex; /* <img class="ParrallaxEffect" src="_MG_5279_SK.jpg" alt="image"> Utilizamos flexbox */
  justify-content: center; /* Centrar horizontalmente */
  align-items: center; 
  z-index: 1;
  height: max-content;
}

#TitleNosotros
{
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  line-height: 1;
  font-family: 'Montserrat-Bold';
  color: white;
  font-size: 4.5rem;
}

 #Title
{
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  line-height: 1;
  font-family: 'Montserrat-Bold';
  color: #ffffff;
  font-size: 4.5rem;
}

#Title1
{
  padding-top: 20px;
  padding-bottom: 10px;
  text-align: center;
  line-height: 1;
  font-family: 'Montserrat-Bold';
  color: #2B5336;
  font-size: 2.5rem;
}

#Title2
{
  padding-top: 25px;
  padding-bottom: 5px;
  text-align: center;
  line-height: 1;
  font-family: 'Montserrat-Bold';
  color: #2B5336;
  font-size: 2.5rem;
  justify-content: center;
}

#Title3
{
  padding-top: 0px;
  padding-bottom: 5px;
  text-align: center;
  line-height: 1;
  font-family: 'Montserrat-Bold';
  color: #2B5336;
  font-size: 2.5rem;
}

#Subtitle
{
  line-height: 1.5;
  font-family: 'Helvetica', sans-serif;
  font-size: 1.1rem;
  color: black;
  margin-right: 50px;
  margin-left: 50px;
}

#SubtitleP
{
  line-height: 1.5;
  font-family: 'Helvetica', sans-serif;
  font-size: 1.2rem;
  color: rgb(255, 255, 255);
  padding: 5px;
  max-width: 550px;
  font-weight: bold;
  text-align: center;
}


#SF
{
  height: fit-content;
  min-height: 600px;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#UO
{
  height: fit-content;
  min-height: 600px;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ImgUO
{
  padding-top: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ImgCO
{
  justify-content: center;
  align-items: center;
  display: flex;
}

#CenterAll
{
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: space-between; /* Centramos horizontalmente el contenido */
  max-width: 1280px;
  max-width: 1280px;
  opacity: 0;
  transform: translateY(75px);
  transition: opacity 0.5s, transform 0.6s;
  pointer-events: none;
}

#CenterAll.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#CenterAll .ImgSF
{
  min-width: 40%;
}

 #CenterAll .ImgUO, #CenterAll .ImgCO
{
  min-width: 30%;
  max-width: 40%;
}

#CenterAll .ImgSF img, #CenterAll .ImgUO img, #CenterAll .ImgCO img
{
  max-width: 100%;
}

.TextoMain
{
  text-align:center;
}

.video-container {
  position: relative;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Ajusta el valor del último parámetro (0.5) para cambiar la intensidad del oscurecimiento */
}

footer 
{
  /* Estilos para el footer en general */
  background-color: #157139;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

#CenterFooter 
{
  padding-top: 60px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1280px;
  display: flex;
  gap: 5%;
  line-height: 0.9rem;
}

#CenterFooter h7 
{ /* Eliminar márgenes por defecto */
  font-size: 1.2rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, 'Helvetica', sans-serif;
  font-weight: bold;
  text-decoration: none;
}

#CenterFooter h7 a, #CenterFooter p a
{ /* Eliminar márgenes por defecto */
  text-decoration: none;
  color: #000000;
}

#CenterFooter h7 a:hover, #CenterFooter p a:hover
{ /* Eliminar márgenes por defecto */
  text-decoration: none;
  color: #ffffff;
}

#CenterFooter h8
{ /* Eliminar márgenes por defecto */
  font-size: 0.8rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, 'Helvetica', sans-serif;
}

#TextHF
{ /* Eliminar márgenes por defecto */
  font-size: 0.9rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, 'Helvetica', sans-serif;
}

.HoursFooter
{
  text-align: left;
  min-width: 30%;
}

.ContactFooter
{
  text-align: left;
  min-width: 20%;
}

#Copyright
{ /* Eliminar márgenes por defecto */
  font-size: 0.7rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, 'Helvetica', sans-serif;
  margin-top: 35px;
  margin-bottom: 10px;
}

@media  (max-width: 1024px) 
{

  .Encabezado {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 1023px) 
{
  html
  {
    font-size: 20px;
  }

  #BtnWhatsapp {
    z-index: 2;
    right: 10px;
    bottom: 10px;
  }

  #BtnWhatsapp.expanded {
    width: 50px; /* Ancho al hacer scroll */
    height: 50px; /* Altura al hacer scroll */
  }
  
  #BtnWhatsapp a i {
    font-size: 1.5rem;
  }

  #CenterAll
{
  margin: 0;
  max-width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(75px);
  transition: opacity 0.5s, transform 0.6s;
  pointer-events: none; 
  min-width: 300px;/* Centramos horizontalmente el contenido */
}

  #TitleNosotros
  {
    font-size: 2.5rem;
  }

  #Title
  {
    font-size: 1.6rem;
  }

  #Title1,#Title2,#Title3
  {
    padding-top: 10px;
    padding-bottom: 5px;
    font-size: 1.8rem;
  }

  #Subtitle
  {
    line-height: 1.1;
    font-size: 0.9rem;
    padding-bottom: 15px;
    margin-right: 10px;
    margin-left: 10px;
    max-width: 700px;
  }

  #SubtitleP
  {
    font-size: 0.85rem;
    padding-left: 5px;
    padding-right: 5px;
  }

  .VideoSection {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh; /* Ajusta la altura según sea necesario */
  }
  
  .VideoSection iframe {
    width: 100%;
    height: 100%;
  }

  .SectionParallax2 
{
  max-height: 380px;
  min-height: calc(35v);
}
  .SectionParallax2 img
  {
    width: 150%;
    height: 100%;
  }

  .SectionParallax1 
  {
    max-height: 460px;
    min-height: calc(40v);
  }
  .SectionParallax1 img {
    opacity: 0.65;
    width: 315%;
  }
  

  .SectionParallax3 
  {
    max-height: 420px;
    min-height: calc(35v);
  }



.VC 
{
  height: 100%;
  width: 100%;
}

iframe
{
  width: 100%; 
  height: 100%;
  min-width: auto;
  margin: 0; 
}

#SF
{
  padding-top: 20px;
  max-height: fit-content;
  min-height: calc(35v);
}

#ImgSFM
{
  width: 80%;
  max-width: 500px;
  padding-bottom: 20px;
}

#UO
{
  padding-top: 20px;
  max-height: fit-content;
  min-height: calc(35v);
}

#ImgUOM
{
  width: 80%;
  max-width: 500px;
  padding-top: 20PX;
  padding-bottom: 20px;
}

#ImgCA
{
  display: none;
}

footer 
{
  /* Estilos para el footer en general */
  background-color: #157139;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

#CenterFooter 
{
  padding-top: 0px;
  width: 100%;
  max-width: 1280px;
  display: flex;
  gap: 5%;
  align-content: center;
  justify-content: center;
  margin-bottom: 15px;
  margin-left: 5px;
  margin-right: 5px;
  flex-direction: column-reverse;
  line-height: 0.9rem;  
}

#CenterFooter h7 
{ /* Eliminar márgenes por defecto */
  font-size: 0.9rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, 'Helvetica', sans-serif;
  font-weight: bold;
  text-decoration: none;
}

#CenterFooter h7 a, #CenterFooter p a
{ /* Eliminar márgenes por defecto */
  text-decoration: none;
  color: #000000;
}

#CenterFooter h7 a:hover, #CenterFooter p a:hover
{ /* Eliminar márgenes por defecto */
  text-decoration: none;
  color: #ffffff;
  text-align: center;
}

footer h8
{ /* Eliminar márgenes por defecto */
  font-size: 0.6rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, 'Helvetica', sans-serif;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}

#TextHF
{ /* Eliminar márgenes por defecto */
  font-size: 0.8rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, 'Helvetica', sans-serif;
  text-align: center;
}

.HoursFooter
{
  text-align: center;
  min-width: 40%;
}

.ContactFooter
{
  text-align: center;
  min-width: 50%;
}

#Copyright
{ /* Eliminar márgenes por defecto */
  font-size: 0.5rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, 'Helvetica', sans-serif;
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: center;
}

  header 
  {
    height: 75px;
    position: relative;
  }

  .mostrar-menu,
  .ocultar-menu {
    display: block;
    font-size: 5rem;
  }

  .mostrar-menu
  {
    position: relative;
    top: -10px;
  }

  .ocultar-menu
  {
    position: absolute;
    top: -24px;
    right: 10px;
  }

  .menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    right: -100%;
    top: 0;
    text-align: center;
    padding: 60px 0px;
    z-index: 999;
    transition: 0.8s;
  }
  nav a 
  {
    color: rgb(255, 255, 255);
  }
  nav ul {
    flex-direction: column;
  }
  nav ul ul {
    position: static;
    display: none;
    margin-top: 5px;
  }
  
  nav ul ul li {
    border-top: none;
    background-color: rgb(0, 0, 0, 0.4);
    color: rgb(143, 143, 143);
  }
  nav a:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
  }
  
  /* Estilos para mostrar/ocultar el menú desplegable */
  #check:checked ~ .menu {
    right: 0;
    align-items: center;
  }
  .icono-idioma {
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url("IdiomaBlanco.png");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .menu a 
  {
    font-size: 1.5rem;
  }
  .Encabezado {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    object-position: center;
    height: 75px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100vw;
  }
  .LogoEncabezado
  {
    position: relative;
    top: 5px;
    right: -10px;
    height: 230px;
    width: 127px;
  }

}

@media  (max-height: 425px) 
{
  .SectionParallax2,.SectionParallax1,.SectionParallax3 
  {
  
    max-height: 230px;
    height: max-content;
  }

  .menu a 
  {
    font-size: 1rem;
  }

  .icono-idioma {
    width: 1rem;
    height: 1rem;
  }

  
}



