/* =======================
   QUEM SOU PAGE
   ======================= */

.qs-section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.qs-section--white {
  background: #fff;
}

.qs-section--blue {
  background: #0a438d;
}

.qs-section--gray {
  background: #f9f9f9;
}

.qs-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}

.qs-grid-2--start {
  align-items: start;
}

.qs-img-box {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 50vw, 500px);
  height: auto;
}

.qs-img-box--tall {
  min-height: clamp(320px, 55vw, 560px);
}

.qs-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  display: block;
}

.qs-img-box--cover img {
  object-fit: cover;
}

.qs-img-box--light {
  background: #f0f0f0;
}

.qs-badge {
  position: absolute;
  bottom: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3.75rem);
  left: auto;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: clamp(0.75rem, 2vw, 1.25rem);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(280px, calc(100% - 2rem));
}

.qs-badge-icon {
  width: 40px;
  height: 40px;
  background: #e45b3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qs-badge-text {
  color: #0a438d;
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 0.875rem);
  line-height: 1.3;
}

.qs-text-col {
  padding-left: clamp(0, 3vw, 2.5rem);
}

.qs-text-col--right {
  padding-left: 0;
  padding-right: clamp(0, 3vw, 2.5rem);
}

.qs-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.qs-tag--center {
  justify-content: center;
}

.qs-tag-line {
  width: 40px;
  height: 2px;
  background: #e45b3a;
  flex-shrink: 0;
}

.qs-tag-label {
  color: #e45b3a;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.qs-title {
  color: #0a438d;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.qs-title--white {
  color: #fff;
}

.qs-title--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.qs-lead {
  color: #6c757d;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.qs-link {
  color: #e45b3a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qs-section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.qs-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.125rem);
}

.qs-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3.75rem);
}

.qs-card {
  background: white;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 16px;
  position: relative;
}

.qs-card-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(228, 91, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qs-card-title {
  color: #0a438d;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-right: 3.5rem;
}

.qs-card-text {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.5;
}

.qs-btn-center {
  text-align: center;
}

.qs-btn-primary {
  background: #e45b3a;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
}

.qs-btn-primary:hover {
  background: #d14830;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(228, 91, 58, 0.3);
}

.qs-body-text {
  color: #6c757d;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
}

.qs-quote-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.qs-quote-card {
  background: white;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #e45b3a;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.qs-quote-text {
  color: #0a438d;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.qs-quote-author {
  color: #6c757d;
  font-size: 0.875rem;
  font-weight: 500;
}

.qs-timeline-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.qs-timeline-line {
  position: absolute;
  left: clamp(28px, 5vw, 60px);
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e45b3a;
}

.qs-timeline-list {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.75rem);
}

.qs-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 2rem);
}

.qs-timeline-dot {
  width: 20px;
  height: 20px;
  background: #e45b3a;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #e45b3a;
  flex-shrink: 0;
  margin-top: 8px;
  margin-left: clamp(18px, 4.5vw, 50px);
}

.qs-timeline-content {
  flex: 1;
  padding-top: 4px;
  min-width: 0;
}

.qs-timeline-year {
  color: #e45b3a;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.qs-timeline-title {
  color: #0a438d;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.qs-timeline-desc {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.5;
}

.qs-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.qs-footer-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.qs-footer-card h4 {
  color: #e45b3a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.qs-footer-card p {
  opacity: 0.9;
}

.qs-footer {
  background: #0a438d;
  color: #fff;
  padding: 60px 0;
}

.qs-footer-header {
  margin-bottom: 40px;
}

.qs-footer-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qs-footer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.qs-footer-tag {
  color: #e45b3a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.qs-footer-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.qs-footer-desc {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.6;
}

.qs-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.qs-footer-copyright {
  opacity: 0.7;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .qs-grid-2,
  .qs-cards-grid {
    grid-template-columns: 1fr;
  }

  .qs-text-col,
  .qs-text-col--right {
    padding-left: 0;
    padding-right: 0;
  }

  .qs-badge {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .qs-img-box {
    overflow: visible;
  }

  .qs-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 1rem auto 0;
    max-width: 100%;
  }

  .qs-img-box,
  .qs-img-box--tall {
    min-height: 0;
  }

  .qs-img-box img {
    max-height: 420px;
    object-fit: contain;
  }

  .qs-img-box--cover img {
    max-height: 360px;
    object-fit: cover;
  }

  .qs-quote-card {
    margin-top: 1rem;
  }

  .qs-timeline-line {
    left: 18px;
  }

  .qs-timeline-dot {
    margin-left: 8px;
  }

  .qs-tag {
    justify-content: center;
  }

  .qs-text-col .qs-tag {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .qs-card-icon {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  .qs-card-title {
    margin-right: 2.75rem;
  }
}
