/* ============================================================
   Altus Reborn — Quem Somos page styles
   Imports tokens + base from service.css
   Adds: section-dark, values, comportamento, timeline, equipe
   ============================================================ */

/* ABOUT HERO (full-bleed photo with center text) */
.about-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  padding: 140px 0 96px;
  background: var(--graphite-900);
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../operations/real/02-briefing-equipe.jpg');
  background-size: cover;
  background-position: center center;
}
.about-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,15,18,0.55) 0%, rgba(14,15,18,0.25) 30%, rgba(14,15,18,0.85) 80%, rgba(14,15,18,0.96) 100%);
}
.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}
.about-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  max-width: 1100px;
}
.about-hero h1 em {
  font-style: normal;
  color: var(--accent-blue);
}
.about-hero__sub {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--steel-300);
  max-width: 720px;
}

/* MANIFESTO BLOCK */
.manifesto-section {
  background: var(--graphite-900);
  color: var(--white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.manifesto-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(38, 89, 166, 0.18) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.manifesto-section__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.manifesto-section__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-400);
  margin-bottom: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.manifesto-section__tag::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent-blue);
}
.manifesto-section__quote {
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--white);
}
.manifesto-section__quote p { margin-bottom: 28px; }
.manifesto-section__quote p:last-of-type { margin-bottom: 0; }
.manifesto-section__quote strong {
  font-weight: 800;
  color: var(--accent-blue);
}
.manifesto-section__quote em {
  font-style: normal;
  color: var(--accent-blue);
}

/* VALUES (5 valores) */
.values {
  background: var(--off-white);
  padding: 140px 0;
}
.values__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 48px;
}
.values__head {
  margin-bottom: 80px;
  max-width: 720px;
}
.values__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--graphite-900);
}
.values__title em {
  font-style: normal;
  color: var(--accent-blue);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--steel-300);
}
.value {
  padding: 48px 28px;
  border-right: 1px solid var(--steel-300);
  border-bottom: 1px solid var(--steel-300);
  background: var(--white);
  transition: background 280ms var(--ease);
  position: relative;
  overflow: hidden;
}
.value:last-child { border-right: none; }
.value::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms var(--ease);
}
.value:hover::before { transform: scaleX(1); }
.value__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-blue);
  margin-bottom: 32px;
  display: block;
}
.value__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--graphite-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.value__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--steel-600);
}

/* COMPORTAMENTO (Como vivemos / Como NÃO vivemos) */
.behavior {
  background: var(--graphite-900);
  color: var(--white);
  padding: 140px 0;
  position: relative;
}
.behavior__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 48px;
}
.behavior__head {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.behavior__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.behavior__eyebrow::before, .behavior__eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent-blue);
}
.behavior__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
}
.behavior__title em {
  font-style: normal;
  color: var(--accent-blue);
}
.behavior__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--steel-400);
  max-width: 640px;
  margin: 0 auto;
}
.behavior__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.behavior-col {
  padding: 56px 48px;
  background: var(--graphite-800);
  border: 1px solid var(--graphite-700);
  position: relative;
  overflow: hidden;
}
.behavior-col--positive {
  border-top: 4px solid var(--accent-blue);
}
.behavior-col--negative {
  border-top: 4px solid #B91C1C;
  background: #1A0E10;
}
.behavior-col__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.behavior-col--negative .behavior-col__label {
  color: #EF4444;
}
.behavior-col__heading {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 40px;
}
.behavior-col__heading em {
  font-style: normal;
  color: var(--accent-blue);
}
.behavior-col--negative .behavior-col__heading em {
  color: #EF4444;
}
.behavior-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.behavior-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}
.behavior-list li::before {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}
.behavior-col--positive .behavior-list li::before {
  content: '✓';
  background: var(--accent-blue);
  color: var(--white);
}
.behavior-col--negative .behavior-list li::before {
  content: '✕';
  background: #B91C1C;
  color: var(--white);
}

.behavior__close {
  text-align: center;
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--graphite-700);
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.behavior__close em {
  font-style: normal;
  color: var(--accent-blue);
}

/* TIMELINE */
.timeline {
  background: var(--off-white);
  padding: 140px 0;
}
.timeline__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 48px;
}
.timeline__head {
  margin-bottom: 80px;
  max-width: 720px;
}
.timeline__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--graphite-900);
}
.timeline__title em {
  font-style: normal;
  color: var(--accent-blue);
}
.timeline__list {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--accent-blue);
}
.timeline-item {
  padding: 24px 0 32px 32px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 32px;
  width: 18px; height: 18px;
  background: var(--accent-blue);
  border: 4px solid var(--off-white);
  border-radius: 50%;
}
.timeline-item__year {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent-blue);
  margin-bottom: 10px;
}
.timeline-item__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--graphite-900);
  margin-bottom: 10px;
}
.timeline-item__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--steel-600);
  max-width: 640px;
}

/* TEAM PHOTO + COBERTURA */
.team-photo {
  background: var(--graphite-900);
  color: var(--white);
  padding: 0;
  overflow: hidden;
}
.team-photo__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 140px 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.team-photo__content {
  position: relative;
  z-index: 1;
}
.team-photo__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.team-photo__eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent-blue);
}
.team-photo h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
}
.team-photo h2 em {
  font-style: normal;
  color: var(--accent-blue);
}
.team-photo p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--steel-300);
  margin-bottom: 32px;
  max-width: 480px;
}
.team-photo__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--graphite-700);
  border-bottom: 1px solid var(--graphite-700);
  margin-top: 40px;
}
.team-photo__num {
  padding: 28px 16px;
  border-right: 1px solid var(--graphite-700);
}
.team-photo__num:last-child { border-right: none; }
.team-photo__num-value {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.team-photo__num-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.team-photo__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--graphite-700);
}
.team-photo__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-photo__img-tag {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--accent-blue);
  color: var(--white);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-hero__inner, .manifesto-section__inner, .values__inner, .behavior__inner, .timeline__inner, .team-photo__inner {
    padding-left: 24px; padding-right: 24px;
  }
  .values__grid { grid-template-columns: 1fr 1fr; border-top: 1px solid var(--steel-300); }
  .value { border-right: 1px solid var(--steel-300); }
  .value:nth-child(2n) { border-right: none; }
  .behavior__cols { grid-template-columns: 1fr; }
  .team-photo__inner { grid-template-columns: 1fr; gap: 48px; padding: 96px 24px; }
  .team-photo__numbers { grid-template-columns: 1fr; }
  .team-photo__num { border-right: none !important; border-bottom: 1px solid var(--graphite-700); }
  .team-photo__num:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .values__grid { grid-template-columns: 1fr; }
  .value { border-right: none !important; }
  .behavior-col { padding: 40px 28px; }
  .behavior-list li { font-size: 15px; }
}
