@charset "UTF-8";

/* ===========================
   LAYOUT
   =========================== */

body { padding-top: 72px; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6%;
}

.section { padding: var(--space-2xl) 0; }

/* SECTION HEADERS */
.section-label {
  font-family: var(--font-main);
  font-weight: var(--weight-regular);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.section-header { margin-bottom: var(--space-lg); }

.section-header.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

/* GRID FLYERS — uno al lado del otro con márgenes */
.grid-flyers {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .grid-flyers { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .container { padding: 0 5%; }
  .section   { padding: var(--space-xl) 0; }
  .grid-flyers { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}
