/* ==========================================================================
   ACOLHIMENTO & ORAÇÃO - COMO FUNCIONA (TIMELINE) STYLES
   ========================================================================== */

.timeline-section {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: var(--bg-main);
}

.timeline-container {
  margin-top: 3.5rem;
  position: relative;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Horizontal connecting line behind steps */
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.timeline-header-node {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.timeline-number {
  width: 32px;
  height: 32px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: 50%;
  font-size: 0.9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(45, 75, 39, 0.2);
}

.timeline-icon-box {
  width: 52px;
  height: 52px;
  background-color: var(--bg-white);
  border: 2px solid var(--primary-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.timeline-step:hover .timeline-icon-box {
  border-color: var(--primary-green);
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

.timeline-icon-box svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.timeline-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 240px;
}
