#about-us {
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center; 
}

/* Contenedor principal: Logo (1fr) a la izquierda y Contenido (2fr) a la derecha */
#aus_container {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 30px; 
  width: 100%;
  min-height: 80vh;
  align-items: center; 
  align-content: center;
}
  

/* Logo 3D */
#aus_container .logo3d{
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo3d video {
  max-width: 100%;
  width: 100%; /* Añadido para garantizar el 100% de ancho */
  height: auto;
  object-fit: cover;
  border-radius: 35px; 
  display: block; /* Mantener el borde redondeado en la imagen */
  aspect-ratio: 1 / 1; /* Mantener proporción cuadrada */
}

/* Contenido de la derecha: Disposición 2x2 */
.aus_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;  
  width: 100%;
  height: 100%;
  padding-right: 5%;
}

/* Estilos de los cuadrantes */
.one, .two, .three, .four {
  display: flex;
  flex-direction: column; /* Apila título y párrafo */
  width: 100%;
  padding: 1.5rem; /* Aumentado padding para seriedad */
  box-sizing: border-box;
  background-color: #ffffff; /* Fondo blanco, más limpio */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Sombra más sutil */
  min-height: 220px;
  justify-content: flex-start; /* Alinea el contenido al inicio */
  align-items: center;
  margin-bottom: 0; /* Removido el margin-bottom gracias al gap del grid */
}

.one p, .two p, .three p, .four p {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-bottom: 0;
  text-align: left; /* Alineación a la izquierda para el cuerpo del texto */
  font-size: 0.95rem; /* Tamaño de fuente ligeramente más pequeño para profesionalismo */
  color: #555;
}

.one h3, .two h3, .three h3, .four h3 {
  margin-bottom: 0.8rem;
  font-weight: 700;
}

/* Animación y Hover */
#about-us .one,
#about-us .two,
#about-us .three,
#about-us .four {
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, background 0.3s;
}

#about-us .one:hover,
#about-us .two:hover,
#about-us .three:hover,
#about-us .four:hover {
  transform: translateY(-5px); /* Movimiento más sutil */
  box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* Sombra más pronunciada en hover */
  background: #f0f6ff;
}

/* -------------------- */
/* RESPONSIVIDAD (TABLETS Y ABAJO) */
/* -------------------- */

@media (max-width: 991px) {
  #aus_container {
    /* MODIFICADO: Vuelve a disposición de columna simple */
    display: flex; 
    flex-direction: column;
    min-height: auto;
    gap: 40px;
    padding: 20px 0;
    align-items: center;
  }

  #aus_container .logo3d {
    margin-left: 0;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    order: -1;
  }

  .aus_content {
    /* MODIFICADO: Vuelve a disposición de columna simple para los cuadrantes */
    display: flex; 
    flex-direction: column;
    padding-right: 0;
    width: 90%;
    height: auto;
    gap: 15px; /* Espacio entre los elementos apilados */
  }
  
  /* Asegura que los cuadrantes tengan margen al apilarse */
  .one, .two, .three, .four {
    margin-bottom: 0; 
    width: 100%;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  #about-us {
    padding-top: 20px;
    min-height: auto;
  }

  #aus_container .logo3d {
    width: 95%;
    margin-bottom: 15px;
  }

  .one, .two, .three, .four {
    padding: 1rem;
  }
  
  .one p, .two p, .three p, .four p {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 0.9rem;
  }
}