/* M7. Bastidores */

/* ============================================================
   M7. BASTIDORES (social proof visual / moodboard)
   ============================================================ */
.bastidores {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--brn-surface);
}
.bastidores-header {
  text-align: center;
  margin-bottom: 60px;
}
.bastidores-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brn-blue-accent);
  margin-bottom: 16px;
}
.bastidores-title {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.bastidores-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.bastidores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  grid-auto-flow: dense;
}
.bastidores-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  transition: all 0.5s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.bastidores-card.tall { grid-row: span 2; }
.bastidores-card.wide { grid-column: span 2; }

.bastidores-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

/* Photo cards with real images */
.bastidores-card.photo {
  border: none;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}
.bastidores-card.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,19,64,0.7) 100%);
  pointer-events: none;
}
.bastidores-card.photo .card-label {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.bastidores-card.photo:hover {
  transform: scale(1.02) translateY(-3px);
}

/* Quote cards */
.bastidores-card.quote {
  justify-content: center;
  text-align: center;
  padding: 28px;
}
.bastidores-card.quote p {
  font-family: 'Noto Serif', Georgia, serif;
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
}
.bastidores-card.quote .quote-author {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 500;
}

/* Stat cards */
.bastidores-card.stat {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--brn-blue-glow);
  border-color: rgba(91,155,255,0.1);
}
.bastidores-card.stat .big-num {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brn-blue-accent);
  line-height: 1;
}
.bastidores-card.stat .stat-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .bastidores-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 480px) {
  .bastidores-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .bastidores-card.wide { grid-column: span 1; }
  .bastidores-card.tall { grid-row: span 1; }
}
