
    .uc_timeline-container {
      max-width: 900px;
      margin-top: 30px;
      position: relative;
      padding-left: 30px;
    }

	/* linha vertical */
    .uc_timeline-container::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 15px;
      width: 1px;
      background-color: #e0e0e0;
    }

    .uc_timeline-date-block {
      margin-bottom: 3rem;
      position: relative;
    }

	/* data */
    .uc_timeline-date-header {
      position: relative;
      background: #6c6c6c;
      color: white;
      padding: 0.4rem 1rem;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 30px;
    }

	/* bolinha */
    .uc_timeline-date-header::before {
      content: "";
      position: absolute;
      left: -13px;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 15px;
      height: 15px;
      background-color: #e0e0e0;
      border: 3px solid #e0e0e0;
      border-radius: 50%;
      z-index: 2;
    }

    .uc_timeline-entry {
      background: #fff;
	  border: 1px solid #e0e0e0;
      padding: 0;
	  margin-left: 30px;
	  margin-top: 30px;
      border-radius: 8px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .uc_timeline-entry-header {
      cursor: pointer;
      padding: 1rem 1.5rem;
      background: #f0f2f5;
      transition: background 0.3s;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .uc_timeline-entry-header:hover {
      background: #e0e4e8;
    }

    .uc_timeline-entry-header h3 {
      margin: 0;
      font-size: 1.05rem;
    }

    .uc_timeline-entry-details {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      padding: 0 1.5rem;
    }

    .uc_timeline-entry.open .uc_timeline-entry-details {
      max-height: 1000px;
      padding-bottom: 1rem;
    }

    .uc_timeline-entry small {
      color: #666;
      font-size: 0.9rem;
    }

    .uc_timeline-meta {
      margin-top: 0.3rem;
      font-size: 0.9rem;
      color: #555;
    }

    .uc_timeline-section {
      margin-top: 0.7rem;
      font-size: 0.95rem;
    }

    .uc_timeline-section strong {
      color: #007BFF;
    }

    .uc_timeline-sentimento {
      display: inline-block;
      padding: 0.3rem 0.7rem;
      border-radius: 20px;
      font-size: 0.85rem;
      margin-top: 0.3rem;
    }

    .uc_timeline-arrow {
      font-size: 1rem;
      transform: rotate(0deg);
      transition: transform 0.3s;
    }

    .uc_timeline-entry.open .uc_timeline-arrow {
      transform: rotate(90deg);
    }