/* ===== SOBRE PAGE STYLES ===== */

/* HERO */
.sobre-hero {
  position: relative; min-height: 85vh; display: flex; align-items: flex-end;
  padding-bottom: 80px; overflow: hidden;
}
.sobre-hero__bg { position: absolute; inset: 0; }
.sobre-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: grayscale(0.3); }
.sobre-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,20,40,0.5) 0%, rgba(10,20,40,0.7) 60%, rgba(10,20,40,0.95) 100%);
}
.sobre-hero__content { position: relative; z-index: 2; max-width: 700px; padding: 0 24px; margin: 0 auto; text-align: center; }
.sobre-hero__label {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 6px;
  color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.sobre-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: #fff; line-height: 1.05;
  margin-bottom: 20px; animation: fadeInUp 0.8s ease 0.4s both;
}
.sobre-hero h1 span { color: #2584C4; }
.sobre-hero p {
  font-size: 1.2rem; color: rgba(255,255,255,0.7); line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.breadcrumb {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-bottom: 24px; font-size: 13px; color: rgba(255,255,255,0.4);
  animation: fadeInUp 0.8s ease both;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 9px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeInUp 0.8s ease 1s both;
}
.scroll-indicator span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 600; }
.scroll-indicator__arrow { animation: bounceDown 2s ease infinite; color: rgba(255,255,255,0.4); }
@keyframes bounceDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* INTRO */
.sobre-intro { padding: 100px 0; background: #fff; }
.sobre-intro__content { max-width: 800px; margin: 0 auto; text-align: center; position: relative; }
.quote-mark { font-size: 48px; color: #2584C4; opacity: 0.2; margin-bottom: 16px; }
.sobre-intro h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; color: #1A2332;
  line-height: 1.7; font-style: italic;
}

/* TIMELINE */
.timeline-section { padding: 80px 0 40px; background: #FAFBFC; position: relative; }
.timeline { position: relative; max-width: 1100px; margin: 0 auto; }

/* Chapter markers */
.timeline__chapter {
  display: flex; flex-direction: column; align-items: center; position: relative;
  padding: 60px 0 40px; z-index: 3;
}
.timeline__line {
  width: 2px; height: 60px; background: linear-gradient(180deg, transparent, #2584C4);
  margin-bottom: 16px;
}
.timeline__dot {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #1B6FA8, #2584C4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  box-shadow: 0 4px 20px rgba(27,111,168,0.3);
  margin-bottom: 16px;
}
.timeline__year {
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 4px;
  color: #1B6FA8;
}

/* Story blocks */
.story-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 40px 0; position: relative;
}
.story-block--left { direction: ltr; }
.story-block--right { direction: ltr; }
.story-block--full {
  grid-template-columns: 1fr; max-width: 900px; margin: 0 auto;
}

.story-block__image {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.story-block__image img {
  width: 100%; height: 100%; min-height: 350px; object-fit: cover;
  filter: grayscale(0.6); transition: all 0.8s ease;
}
.story-block__image:hover img { filter: grayscale(0); transform: scale(1.03); }
.story-block__image--wide img { min-height: 400px; }
.story-block__image-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px; font-size: 13px; font-weight: 600; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-style: italic; letter-spacing: 0.5px;
}

.story-block__text h3 {
  font-size: 1.6rem; font-weight: 800; color: #1A2332; margin-bottom: 16px;
  line-height: 1.3;
}
.story-block__text p {
  font-size: 1rem; color: #6B7A8D; line-height: 1.9; margin-bottom: 14px;
}
.story-block__text p:last-child { margin-bottom: 0; }
.story-block__text strong { color: #1A2332; }
.story-block__text em { color: #1B6FA8; font-style: italic; }
.story-block__text--center { text-align: center; padding: 0 20px; }

/* STATS */
.sobre-stats {
  padding: 100px 0;
  background: linear-gradient(135deg, #0A1628, #134E78, #0A1628);
  position: relative; overflow: hidden;
}
.sobre-stats::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(37,132,196,0.1); top: -250px; right: -100px;
}
.sobre-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.sobre-stats__item {
  text-align: center; padding: 40px 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; transition: all 0.4s ease;
}
.sobre-stats__item:hover { background: rgba(255,255,255,0.08); transform: translateY(-6px); }
.sobre-stats__number {
  font-size: 3.5rem; font-weight: 900; color: #2584C4; line-height: 1;
  margin-bottom: 8px;
}
.sobre-stats__label {
  font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: 1px;
}
.sobre-stats__desc { font-size: 13px; color: rgba(255,255,255,0.4); }

/* VALUES on this page */
.sobre-values { padding: 100px 0; background: #fff; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sobre-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sobre-hero { min-height: 70vh; padding-bottom: 60px; }
  .sobre-hero h1 { font-size: 2.2rem; }
  .scroll-indicator { display: none; }
  .sobre-intro { padding: 60px 0; }
  .sobre-intro h2 { font-size: 1.15rem; }
  .story-block { grid-template-columns: 1fr; gap: 24px; }
  .story-block__image img { min-height: 250px; }
  .story-block__image--wide img { min-height: 250px; }
  .timeline__chapter { padding: 40px 0 24px; }
  .timeline-section { padding: 40px 0 20px; }
  .sobre-stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sobre-stats__number { font-size: 2.5rem; }
  .sobre-stats__item { padding: 28px 16px; }
  .sobre-stats { padding: 60px 0; }
  .sobre-values { padding: 60px 0; }
}
