/* ========================================================== */
  /* ESTILOS PREMIUM PARA QUIÉNES SOMOS                         */
  /* ========================================================== */
  
  /* 1. Cabecera con Video (Hero) */
  .about-hero {
    position: relative;
    width: 100%;
    height: 45vh; /* Ocupa casi media pantalla */
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 40px;
  }
  
  .about-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
    filter: grayscale(80%) contrast(1.2);
  }

  /* La misma trama cuadrillé del ingreso para mantener identidad */
  .about-grid-overlay {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-size: 4px 4px; 
    background-image: 
      linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  }

  /* Degradado para fundir el video con el fondo negro de la página */
  .about-fade {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to bottom, transparent 30%, #05070b 100%);
  }

  .about-hero-title {
    position: relative; z-index: 3;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex; flex-direction: column; align-items: center;
  }
  .about-hero-title span {
    color: var(--kz-gold);
    font-size: 0.4em;
    letter-spacing: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(246, 206, 31, 0.3);
  }

  /* 2. Layout Principal (Grid) */
  .about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px 20px;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
  }
  @media (min-width: 768px) {
    .about-grid {
      grid-template-columns: 4fr 5fr; /* La foto ocupa un poco menos que el texto */
      gap: 70px;
    }
  }

  /* 3. Marco de la Foto (Estilo Cristal/Cámara) */
  .about-image-wrapper {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  
  /* Detalle dorado tipo "enfoque de cámara" */
  .about-image-wrapper::before {
    content: ''; position: absolute; top: -2px; left: -2px; width: 40px; height: 40px;
    border-top: 3px solid var(--kz-gold); border-left: 3px solid var(--kz-gold);
    border-top-left-radius: 16px; transition: 0.4s;
  }
  .about-image-wrapper::after {
    content: ''; position: absolute; bottom: -2px; right: -2px; width: 40px; height: 40px;
    border-bottom: 3px solid var(--kz-gold); border-right: 3px solid var(--kz-gold);
    border-bottom-right-radius: 16px; transition: 0.4s;
  }
  .about-image-wrapper:hover::before, .about-image-wrapper:hover::after { width: 60px; height: 60px; }

  .about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.5s ease;
  }
  .about-image-wrapper:hover .about-img {
    filter: grayscale(0%) contrast(1.05);
  }

  /* 4. Tipografía del Texto */
  .about-role {
    color: var(--kz-gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }
  
  .about-name {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #fff;
    margin: 0 0 24px 0;
    text-transform: uppercase;
  }

  .about-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
  }

  /* La cita gigante (Quote) */
  .about-quote {
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    line-height: 1.1;
    color: #fff;
    margin: 35px 0;
    padding-left: 25px;
    border-left: 4px solid var(--kz-gold);
    letter-spacing: 1px;
  }
  .about-quote::before {
    content: '"';
    position: absolute;
    top: -20px; left: 10px;
    font-size: 4rem;
    color: rgba(246, 206, 31, 0.15);
    font-family: serif;
  }

  /* 5. Botón de Acción */
  .btn-gold-outline {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    border: 1px solid var(--kz-gold);
    background: rgba(246, 206, 31, 0.05);
    color: var(--kz-gold);
    font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; text-decoration: none;
    transition: all 0.3s ease;
  }
  .btn-gold-outline:hover {
    background: var(--kz-gold); color: #000;
    box-shadow: 0 10px 25px rgba(246, 206, 31, 0.25);
    transform: translateY(-2px) scale(1.02);
  }

  /* ========================================================== */
  /* 6. SECCIÓN STAFF                                           */
  /* ========================================================== */
  .staff-section {
    max-width: 1100px;
    margin: 0 auto 50px auto; /* Margen ajustado para darle lugar al botón abajo */
    padding: 0 20px;
  }

  .staff-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(0,0,0,0.6));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  }

  @media (min-width: 800px) {
    .staff-card { flex-direction: row; }
  }

  .staff-image-col {
    flex: 1;
    min-height: 350px;
    /* La imagen de tu staff va acá de fondo */
    background-image: url('/static/foto_staff.webp'); 
    background-size: cover;
    background-position: center 20%;
    position: relative;
    filter: grayscale(40%);
    transition: filter 0.5s ease;
  }
  
  .staff-card:hover .staff-image-col {
    filter: grayscale(0%);
  }

  /* Difuminado sutil para unir la foto con el texto */
  .staff-image-col::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(6, 8, 13, 1));
  }
  @media (min-width: 800px) {
    .staff-image-col::after {
      background: linear-gradient(to right, transparent 50%, rgba(6, 8, 13, 1));
    }
  }

  .staff-text-col {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(6, 8, 13, 1);
    position: relative;
  }

  .staff-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(246, 206, 31, 0.08);
    color: var(--kz-gold);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 20px;
    align-self: flex-start;
    border: 1px solid rgba(246, 206, 31, 0.2);
  }

  .staff-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    line-height: 1.1;
  }

  .staff-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .staff-highlight {
    color: #fff;
    font-weight: 500;
    border-left: 2px solid var(--kz-gold);
    padding-left: 15px;
    margin-top: 10px;
    font-size: 1.05rem;
  }

  /* 7. Contenedor del Botón Final */
  .about-cta-section {
    display: flex;
    justify-content: center;
    padding: 0 20px 80px 20px;
  }

.staff-desc--spaced {
  margin-top: 15px;
}

.about-grid,
.staff-section,
.about-cta-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
