/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 08 2026 | 10:38:01 */
:root {
  --azul-principal: #193969;
  --azul-secundario: #0154A4;
  --texto: #414141;
  --azul-n4: #657BBB;
  --azul-n6: #C6CCE7;
}

.pp-timeline {
  padding: 5rem 1rem;
  background: #f6f7fb;
  border-radius: 10px;
}

.pp-timeline h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--azul-principal);
  margin-bottom: 4rem;
  font-weight: 700;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--azul-n6),
    var(--azul-secundario)
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item.left {
  justify-content: flex-start;
}

.timeline-item.right {
  justify-content: flex-end;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--azul-secundario);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-item.highlight::before {
  background: var(--azul-n4);
}

.content {
  background: #fff;
  padding: 1.4rem 1.6rem;
  border-radius: 16px;
  width: 42%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  position: relative;
}

.timeline-item.left .content::after,
.timeline-item.right .content::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 22px;
  height: 2px;
  background: var(--azul-secundario);
}

.timeline-item.left .content::after {
  right: -22px;
}

.timeline-item.right .content::after {
  left: -22px;
}

.content p {
  margin: 0;
  color: var(--texto);
  font-size: 0.95rem;
  line-height: 1.5;
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--azul-principal);
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* DESTAQUE FINAL */
.timeline-item.highlight .content {
  background: var(--azul-n4);
}

.timeline-item.highlight p {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    justify-content: flex-start;
  }

  .timeline-item::before {
    left: 20px;
  }

  .content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }

  .content::after {
    display: none;
  }
}


/* MOBILE */
@media (max-width: 900px) {
  .row,
  .row.reverse {
    flex-direction: column;
  }

  .arrow,
  .connector-down {
    display: none;
  }

  .products {
    margin: 1rem 0 0;
  }
}


/* ELEMENTO QUE ACOMPANHA */
.caminho_text {
  position: sticky;
  top: 100px; /* ajuste conforme seu header */
  align-self: start; /* evita esticar */
}

/* MOBILE */
@media (max-width: 768px) {
  .caminho_pp {
    grid-template-columns: 1fr;
  }

  .caminho_text {
    position: relative; /* desliga sticky */
    top: auto;
  }
}


