/* ====== Hero Nosotros Fullscreen ====== */
.hero-nosotros {
  position: relative;
  height: 100vh; /* Ocupa toda la altura de la pantalla */
  background-image: url("../assets/img/portada_expo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px; /* Espacio por el navbar */
  overflow: hidden;
}

.hero-nosotros::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* oscurece para que se lea bien el texto */
  z-index: 1;
}

.hero-nosotros .container {
  position: relative;
  z-index: 2;
}

.hero-nosotros h1,
.hero-nosotros p {
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}


/* Aseguramos que las imágenes en Expo Clean no tengan bordes ni sombras */
img {
  border: none !important;
  box-shadow: none !important;
}

/* Fondo y diseño de la sección Expo Clean */
.expo-clean-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

/* Estilo de los títulos */
.expo-clean-section h2 {
  font-weight: bold;
  color: #002244;
  font-size: 2.5rem;
}

.expo-clean-section p {
  font-size: 1.1rem;
  color: #555;
}

/* Estilos de la sección de contacto */
.expo-clean-contact a {
  color: #ffc107;
  text-decoration: none;
}

.expo-clean-contact a:hover {
  text-decoration: underline;
}

/* Mejora de la imagen para dispositivos móviles */
.expo-clean-image img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

/* Otros estilos específicos de Expo Clean */

/* Responsive */
@media (max-width: 768px) {
  .expo-clean-section h2 {
    font-size: 2rem;
  }
}
