/* ===================================================
   SEÇÃO 4 - MINHA HISTÓRIA - BASE
   =================================================== */

.section-4 {
  padding: 120px 0;
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, #030712 0%, #0f172a 50%, #030712 100%);
  overflow: hidden;
}

@media (max-width: 900px) {
  .section-4 {
    padding: 25px 0 !important;
  }

  .story-container {
    margin-top: 15px !important;
  }

  .story-content {
    display: flex !important;
    flex-direction: column-reverse !important;
    gap: 15px !important;
  }

  .story-block {
    padding: 24px !important;
    margin-bottom: 15px !important;
  }

  .story-block p {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
  }

  .year-marker {
    margin-bottom: 10px !important;
  }
}

.section-4::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.story-container {
  max-width: 850px; /* Reduzido para melhor leitura do texto corrido */
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}

.story-intro-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.story-content {
  display: block; /* Removido grid para narrativa linear */
  text-align: left;
}

.story-block {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(31, 41, 55, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  backdrop-filter: blur(16px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.story-block:hover {
  border-color: rgba(245, 158, 11, 0.2);
  background: linear-gradient(135deg, rgba(17, 24, 39, 1) 0%, rgba(31, 41, 55, 0.5) 100%);
  transform: translateX(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.year-marker {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.year-marker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.4), transparent);
}

.story-block p {
  font-size: 17px;
  line-height: 1.85;
  color: #d1d5db;
  margin-bottom: 20px;
}

.story-block strong {
  color: #ffffff;
  font-weight: 700;
}