/* =============================================
   GRUPO SAENZ - Estilos Globales
   Compartido entre todas las páginas
   ============================================= */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Cuadrícula de puntos para secciones de servicios */
.structural-grid {
    background-image: radial-gradient(circle, #E0E0E0 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Línea degradada roja (usada en paginaNosotros) */
.structural-line {
    background: linear-gradient(90deg, #BB2222 0%, transparent 100%);
}

/* Bento grid personalizado (usada en paginaNosotros) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Industrial shadow */
.industrial-shadow {
    box-shadow: 10px 10px 0px 0px rgba(187, 34, 34, 0.1);
}

/* Imágenes responsivas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Imágenes de secciones */
.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

/* Imágenes de proyectos */
.project-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

/* Imágenes hero grandes */
.hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Logos */
.logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* Ligthbox */
#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  width: 56px;
  height: 56px;
  font-size: 36px;
  cursor: pointer;
  transition: background 0.2s;
}

#lightbox-prev:hover,
#lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

#lightbox-prev {
  left: 20px;
}

#lightbox-next {
  right: 20px;
}