  .quem-somos {
    width: 100%;
    padding-inline: 14%;
  }
  
  /* Cards Superiores */
  .cards-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
  }
  
 .card {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0d0f28 40%, #080915 100%);
    border: 1px solid var(--secondary-color);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
  
  .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-circle svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary-color);
  }
  
  .card-header h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 4px;
  }
  
  .card {
    flex: 1;
    background: 
      linear-gradient(#101034) padding-box,
      linear-gradient(135deg, var(--secondary-color) 0%, #080915 100%) border-box;
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 35px rgba(255, 183, 3, 0.2);
  }
  /* Contêiner Inferior da Linha do Tempo */
  .cards-timeline-section {
    background: 
      linear-gradient(#101034) padding-box,
      linear-gradient(135deg, var(--secondary-color) 0%, #080915 100%) border-box;
    border: 2px solid transparent;
    border-radius: 35px;
    padding: 40px 20px 30px 20px;
    position: relative;
    margin-top: 20px;
  }
  
  .uc-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .timeline-line {
    position: absolute;
    top: 32px;
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: var(--secondary-color);
    z-index: 1;
  }
  
  .uc-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 13%;
    text-align: center;
  }
  
  .uc-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #08091a;
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
    box-shadow: inset 0 0 10px rgba(255, 183, 3, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .uc-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 183, 3, 0.6);
    background-color: #121533;
  }
  
  .uc-circle.active {
    background-color: var(--secondary-color);
    color: #08091a;
    box-shadow: 0 0 20px var(--secondary-color);
  }
  
  .uc-label {
    font-size: 0.60rem;
    color: #c0c0c0;
    line-height: 1.3;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  /* Balão Flutuante (Popover) */
.uc-popover {
    position: absolute;
    width: 250px;
    background: 
      linear-gradient(#08091a, #08091a) padding-box,
      linear-gradient(135deg, var(--secondary-color) 0%, #080915 100%) border-box;
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 15px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(10px);
  }
  
  .uc-popover.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  
  .uc-popover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: var(--secondary-color) transparent transparent transparent;
  }
  
  .uc-popover p {
    font-size: 0.82rem;
    text-align: left;
    line-height: 1.4;
    margin: 0;
  }
  
  /* Responsivo */
  @media (max-width: 900px) {
    .cards-container {
      flex-direction: column;
    }
    
    .uc-timeline {
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    
    .timeline-line {
      display: none;
    }
    
    .uc-item {
      width: 28%;
    }
  }