/* sobre.css - Specific stylesheet to style the About page layout matching the print exactly */

body.aboutPage {
  background: #fff;
  color: #1f1f1f;
  font-family: Montserrat, sans-serif;
  overflow-x: clip;
}

/* Header style for dark background top section */
body.aboutPage .header {
  position: relative;
  width: 100%;
  height: 90px;
  background: #000000;
  border: 0;
  color: #fff;
  padding: 0 max(20px, calc((100vw - 1140px)/2));
  z-index: 10;
  box-sizing: border-box;
}

body.aboutPage .header .logo {
  filter: none;
}

body.aboutPage .nav a {
  color: #fff;
}

body.aboutPage .nav a:hover,
body.aboutPage .nav a.active {
  color: #c5e7ff;
  font-weight: 700;
}

body.aboutPage .headerSocial a {
  color: #fff;
}

body.aboutPage .headerSocial a:hover {
  color: #c5e7ff;
}

body.aboutPage .menu span {
  background: #fff;
}

/* 1. Intro Section (Dark Background, overlapping images) */
.aboutIntro {
  background: #000000;
  color: #fff;
  padding: 60px 0 100px;
}

.aboutIntroGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.aboutIntroText h1 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.aboutIntroText h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.35;
  text-transform: uppercase;
}

.aboutIntroText p {
  font-size: 15px;
  line-height: 1.75;
  color: #cbd1ca;
  margin-bottom: 18px;
}

.aboutIntroText p strong {
  color: #fff;
  font-weight: 700;
}

.aboutIntroVisual {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
}

.aboutIntroVisual .aboutVisual {
  width: 100%;
  max-width: 480px;
  height: 520px;
  position: relative;
}

.aboutIntroVisual .aboutVisual img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.aboutIntroVisual .aboutOne {
  width: 270px;
  height: 440px;
  left: 0;
  top: 0;
  z-index: 1;
}

.aboutIntroVisual .aboutTwo {
  width: 270px;
  height: 440px;
  right: 0;
  top: 70px;
  z-index: 2;
  border: none;
}

/* 3. History, Purpose & Founders Section (Yellow Background) */
.historyPurpose {
  background: #ffb700 url('images/fundo-depoimento2.png') no-repeat top center / cover;
  color: #1f1f1f;
  padding: 80px 0 100px;
}

.historyPurpose h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: left;
  color: #1f1f1f;
  letter-spacing: -0.02em;
}

.historyPurpose .historyLead {
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  max-width: 100%;
  margin: 0 0 50px;
  color: #1f1f1f;
}

.foundersGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.founderCard {
  text-align: center;
}

.founderAvatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  display: block;
}

.founderCard h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 5px;
  color: #1f1f1f;
  text-align: center;
}

.founderCard .role {
  display: block;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: #333;
  margin-bottom: 18px;
  font-weight: 600;
  text-align: center;
}

.founderCard p {
  font-size: 14px;
  line-height: 1.7;
  color: #1f1f1f;
  text-align: left;
  margin: 0;
}

/* 4. Methodology Section (White Background) */
.aboutMethodology {
  background: #fff;
  padding: 100px 0;
  text-align: center;
}

.aboutMethodology h2 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.aboutMethodology p {
  font-size: 15px;
  line-height: 1.85;
  color: #59635e;
  max-width: 950px;
  margin: 0 auto 20px;
}

/* 5. Projects Slide at the bottom overrides */
.aboutPage .projects {
  border-top: 1px solid #111;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  body.aboutPage .header {
    height: 80px;
  }
  
  body.aboutPage .nav.open {
    top: 80px;
  }
  
  .aboutIntro {
    padding-top: 110px;
  }
  
  .aboutIntroGrid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .aboutIntroVisual .aboutVisual {
    max-width: 500px;
    height: 350px;
    margin: 0 auto;
  }
  
  .foundersGrid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .aboutIntro {
    padding: 60px 0 60px;
  }
  
  .aboutIntroText h1 {
    font-size: 26px;
  }
  
  .aboutIntroText h2 {
    font-size: 18px;
  }
  
  .aboutIntroVisual .aboutVisual {
    height: 300px;
  }
  
  .aboutIntroVisual .aboutOne,
  .aboutIntroVisual .aboutTwo {
    width: 200px;
    height: 300px;
  }
  
  .historyPurpose,
  .aboutMethodology {
    padding: 60px 0;
  }
  
  .historyPurpose h2,
  .aboutMethodology h2 {
    font-size: 24px;
  }
  
  .founderCard p {
    text-align: left;
  }
}
