:root {
  --azul: #003a98;
  --amarillo: #ffd703;
  --gris-claro: #f9f9f9;
  --texto: #333;
}

/* HERO */
.nosotros-hero {
  background: 
    linear-gradient(rgba(0, 98, 255, 0.712), rgba(1, 40, 105, 0.801)),
    url("/static/img/revision.jpg"); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  padding: 140px 20px;
  text-align: center;
  color: white;
}

.nosotros-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.nosotros-hero p {
  font-size: 1.3rem;
}

/* CONTENEDOR GENERAL */
.contenedor {
  width: 90%;
  margin: auto;
  max-width: 1200px;
  padding: 50px 0;
}

/* BLOQUES */
.bloque {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: center;
}

.bloque.reverse {
  flex-direction: row-reverse;
}

.bloque .texto {
  flex: 1;
}

.bloque .texto h2 {
  color: var(--azul);
  margin-bottom: 15px;
}

.bloque .imagenes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 15px;
  flex-wrap: wrap;
}

.bloque .imagenes img {
  width: 100%;
  max-width: 260px;
  border-radius: 10px;
  box-shadow: 0 4px 15px #0002;
}

/* MISIÓN Y VISIÓN */
.mision-vision {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 80px;
}

.mv-card {
  flex: 1;
  background: var(--gris-claro);
  padding: 25px;
  border-left: 6px solid var(--amarillo);
  border-radius: 8px;
}

/* VALORES */
.valores h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--azul);
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.valor {
  background: var(--gris-claro);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

/* CERTIFICACIONES */
.certificaciones {
  margin-bottom: 80px;
}

.certificaciones h2 {
  color: var(--azul);
  margin-bottom: 20px;
  text-align: center;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.cert-item {
  padding: 15px;
  background: var(--gris-claro);
  border-left: 5px solid var(--azul);
  border-radius: 8px;
}

/* LOCALES */
.locales h2 {
  text-align: center;
  margin-bottom: 10px;
  color: var(--azul);
}

/* GALERÍA */
.galeria h2 {
  text-align: center;
  margin-bottom: 10px;
  color: var(--azul);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.galeria-grid img {
  width: 100%;
  border-radius: 10px;
}

/* VIDEOS */
.videos_nosotros h2 {
  text-align: center;
  color: var(--azul);
  margin-bottom: 20px;
}

.videos-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* RESPONSIVO */
@media(max-width: 900px){
  .bloque {
    flex-direction: column;
  }
  .bloque.reverse {
    flex-direction: column;
  }
  .valores-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .galeria-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 600px){
  .valores-grid,
  .galeria-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }
}
