#main-container {
    font-family: "Outfit", sans-serif;
    display: flex;
    flex-direction: column;
    width: 100%;
    
  }
  
  #container {
    max-width: 1200px;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  
  #titulo {
    font-weight: 700;
    font-size: 45px;
    line-height: 56.7px;
    letter-spacing: 0.4%;
    text-align: right;
    color: var(--color-textdarknosotros);
    margin-right: 20px;
  }
  
  #timeline-wrapper {
    background:var(--color-navbar);
    width: 100%;
    max-width: none;
    height: 348px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-left: 7px solid var(--color-violetastronglight);
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: 88px;
    padding-right: 0;
    position: relative;
    margin: 0;
    overflow: hidden;
    align-content: center;
    box-sizing: border-box;
    top: 30px;
  }
  
  #timeline {
    width: auto;
    gap: 9%;
    position: relative;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    -ms-overflow-style: none;
    padding-right: 50px;
  }
  
  #timeline::-webkit-scrollbar {
    display: block;
  }
  
  #timeline-item {
    min-width: 326px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    position: relative;
    padding-right: 5rem;
  }
  
  #year {
    width: 240px;
    height: 64px;
    font-weight: 700;
    line-height: 64px;
    font-size: 57px;
    letter-spacing: 0.4%;
    color: var(--color-violetastronglight);
  }
  
  #description {
    width: 240px;
    height: 80px;
    color: var(--color-textdarknosotros);
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
  
  #separator {
    position: absolute;
    width: 64px;
    height: 12px;
    border-radius: 6px;
    background: url("../images/fondo1.png");
    background-size: cover;
    right: -14px;
    top: 46%;
    z-index: 1;
  }
  
  /* Para asegurar que ocupe todo el ancho en pantallas grandes */
  @media screen and (min-width: 1200px) {
    #container {
      max-width: none;
      width: 100%;
      margin: 0;
      padding: 0 20px;
      margin-top: 3rem;
      
    }
    
    #timeline-wrapper {
      width: 96vw;
      max-width: none;
      margin-left: 80px;
      padding-right: 0;
      box-sizing: border-box;
  }
  }


  @media (min-width:320px) and (max-width:599px){
    #titulo {
      font-family: Outfit;
      font-weight: 600;
      font-size: 32px !important;
      line-height: 36px;
      letter-spacing: 0.4%;
      text-align: center;

    }

    #container {
      margin-bottom: 0rem !important;
    }

  }

  @media(min-width:599px) and (max-width:850px){
    #titulo {
      font-family: Outfit;
      font-weight: 600;
      font-size: 36px !important;
      line-height: 36px;
      letter-spacing: 0.4%;
      padding-right: 5%;
    }
  }

  @media(min-width:600px) and (max-width:950px){
    #titulo {
      padding-right: 5%;
    }

  }