
    /*//////////////////////////////BODY///////////////////////////////////*/
    body{
      width: 100%;
      background: #D6D6D6; 
   }

/* Estilos generales de la sección "Sobre Nosotros" */
#nosotros {
  margin-top: 100px; /* Esto agrega un espacio de 50px desde la parte superior */
  padding: 6rem 1rem;
  background-color: #f4f4f4;
  font-family: Arial, sans-serif;
}

.contenido {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.titulo-seccion h1 {
  font-size: 3rem;
  color: #003366;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.titulo-seccion p {
  font-size: 1.3rem;
  color: #333;
  font-weight: 400;
  position: relative;
}

.apartado {
  background-color: #fff;
  margin-bottom: 2rem;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apartado:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.apartado h2 {
  font-size: 2.5rem;
  color: #003366; /* Color de texto para mayor visibilidad */
  margin-bottom: 1rem;
  font-weight: bold;
  text-transform: uppercase; /* Esto pone los títulos en mayúsculas */
  letter-spacing: 1px; /* Espaciado entre letras */
}

.apartado p, .apartado ul {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
}

.valores ul {
  list-style-type: none;
  padding: 0;
}

.valores li {
  background-color: #e0f7fa;
  padding: 0.8rem;
  margin: 0.8rem 0;
  border-radius: 5px;
  font-weight: bold;
  text-transform: capitalize;
}

/* Animación de Fade-in */
[data-aos="fade-up"] {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.contenido-video h2 {
  font-size: 2.5rem;
  color: #003366; /* Color de texto para mayor visibilidad */
  margin-bottom: 1rem;
  font-weight: bold;
  text-transform: uppercase; /* Esto pone los títulos en mayúsculas */
  letter-spacing: 1px; /* Espaciado entre letras */
}

   /*/////////////////////////////////////////////////////////////////*/




  /*//////////////////////////////////KEYFRAMES ANIMATION//////////////////////////////////*/

  @keyframes slideTop {
    0% {
      transform: translateY(100px);
      opacity: 0;
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
    
  }
  

