/* ══════════════════════════════════════
     CSS DA PÁGINA ABOUT THE STUDIO
  ══════════════════════════════════════ */

/* ══════════════════════════════════════
     SECTION WRAPPER (CH)
  ══════════════════════════════════════ */
  .qs-section-about {
    max-width: 780px;
    margin: 0 auto;
    padding: 20px 24px;
  }
  
  /* ══════════════════════════════════════
     TYPOGRAPHY
  ══════════════════════════════════════ */
  .qs-eyebrow-about {
    font-size: 0.78rem;
    font-weight: 500;
	font-style: italic;
    color: #18182b;
    margin-bottom: 4px;
    text-align: center;
  }
 
  .qs-title-about {
    font-size: 1.6em;
    font-weight: lighter;
    line-height: 1.15;
	  font-style: italic;
    color: #18182b;
	  text-align: center;
    margin-bottom: 4px;
    text-transform: uppercase;
  }
 
  .qs-body-about {
    font-size: .9rem;
    line-height: 1.25;
    color: #18182b;
  }
  
   .qs-body-about p {
    margin-top: 1px;
  }
  /* ══════════════════════════════════════
     HERO IMAGE — curtain reveal
  ══════════════════════════════════════ */
  .qs-hero-about {
    margin: 4px 20px 0 20px;
    overflow: hidden;
    position: relative;
    height: 70vh;
    min-height: 420px;
	  
  }
.qs-hero__video-about {
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: center 30% !important;
  display: block;
}
 
  /* The two curtain halves */
  .qs-hero-about::before,
  .qs-hero-about::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background: #f8f9fa;
    z-index: 2;
    transition: transform 1.1s cubic-bezier(0.77, 0, 0.18, 1);
  }
  .qs-hero-about::before { left: 0; transform: translateX(0); }
  .qs-hero-about::after  { right: 0; transform: translateX(0); }
 
  .qs-hero-about.revealed::before { transform: translateX(-100%); }
  .qs-hero-about.revealed::after  { transform: translateX(100%); }
 
  .qs-hero-about.revealed img {
    width: 100%; 
	height: 100%;
    object-fit: cover;
	object-position: center 30% !important;
    display: block;
	
  }
  
  /* ══════════════════════════════════════
     RESPONSIVE — mobile
  ══════════════════════════════════════ */
  @media (max-width: 768px) {
    .qs-hero-about { height: 55vw; min-height: 260px; }
 
    .qs-title { font-size: 1.45em; }
 
    .qs-cols {
      grid-template-columns: 1fr;
      margin: 0 12px 40px;
    }
	.qs-two-cols {
      grid-template-columns: 1fr;
      margin: 0 12px 40px;
    } 
	  
    .qs-col { border-right: none; border-bottom: 0px solid rgba(24,24,43,0.12); }
    .qs-col:last-child { border-bottom: none; }
 
    .qs-col-img { aspect-ratio: 16/9; }
 
    .qs-img-full { margin: 0 12px; }
    .qs-hero { margin: 12px; }
  }



/* ── Centered body text variant ── */
  .qs-body-centered {
    font-size: .9rem;
    line-height: 1.85;
	  text-align: center;
    color: #18182b;
  }
  .qs-body-centered p { margin-bottom: 1.3em; }
  .qs-body-centered p:last-child { margin-bottom: 0; }
  
 /* ── Centered tagline ── */
  .qs-tagline-about {
    text-align: center;
    font-size: 1.0rem;
    font-weight: 700;
    color: #18182b;
    letter-spacing: 0.01em;
    margin: 10px 0 5px;
  }
 
  /* ── IAP Principles list ── */
  .qs-principles-about {
    font-size: 1rem;
    line-height: 1.85;
    color: #18182b;
    display: flex;
    justify-content: center;
    
  }
  .qs-principles-about p { 
	  font-size: .9rem;
    line-height: 1.85;
	  text-justify: auto;
    color: #18182b;
	  margin-bottom: 1.1em; 
	  width: 480px;
	  text-align: center;
}

  .qs-principles-about strong {
    font-weight: 500;
    font-size: 1rem;
	 text-align: center;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 4px;
    color: #18182b;
	  font-family: "Abril display", serif;
  }
 