::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #fcfcfc;
  }
  
  ::-webkit-scrollbar-thumb {
    background:#000;
  }
  
  * {
    margin:0;
    padding:0;
    box-sizing:border-box;
  }
  
  body {
    font-family:'Poppins', sans-serif;
    font-size:16px;
    text-align:center;
    background: #353030;
  }
  
  input {
    padding:5px 10px;
    height:60px;
    border:none;
    border-radius:6px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
  }
  
  section {
    padding: 80px 0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .button {
    background:#4285f4;
    color:#fff;
    border-radius:6px;
    font-weight:bold;
    padding:5px 20px;
    height:60px;
    border:none;
    text-transform:uppercase;
    cursor: pointer;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    transition: all ease .3s;
  }
  
  .button:hover {
    opacity: 0.9;
  }
  
  h2 {
    color:#FFFFFF;
    margin:0 0 20px 0;
    text-align: left;
    font-size: 30px;
  }
  
  h3 {
    color:#afafaf;
    margin:0 0 20px 0;
    text-align: left;
    font-size: 24px;
  }
  
  p {
    text-align:left;
    line-height:25px;
  }
  
  ol {
    list-style-type: none;
    padding-left: 0;
    counter-reset: item;
  }
  
  ol li {
    counter-increment: item;
    position: relative;
    padding-left: 2.5em; /* Aumentei um pouco o espaço para o número */
    margin-bottom: 0.5em;
    text-align: left;
    color: #c3c3c3;
  }
  
  ol li::before {
    content: counter(item);
    position: absolute;
    color: #000;
    left: 0;
    width: 1.8em; /* Largura fixa para o fundo */
    height: 1.8em; /* Altura fixa para o fundo */
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  /* Aplica opacidades específicas para o BACKGROUND de cada número */
  ol li:nth-child(1)::before { background: rgba(255, 255, 255, 1); }
  ol li:nth-child(2)::before { background: rgba(255, 255, 255, 0.9); }
  ol li:nth-child(3)::before { background: rgba(255, 255, 255, 0.8); }
  ol li:nth-child(4)::before { background: rgba(255, 255, 255, 0.7); }
  ol li:nth-child(5)::before { background: rgba(255, 255, 255, 0.6); }
  ol li:nth-child(6)::before { background: rgba(255, 255, 255, 0.5); }
  ol li:nth-child(7)::before { background: rgba(255, 255, 255, 0.45); }
  ol li:nth-child(8)::before { background: rgba(255, 255, 255, 0.35); }
  ol li:nth-child(9)::before { background: rgba(255, 255, 255, 0.25); }
  ol li:nth-child(10)::before { background: rgba(255, 255, 255, 0.15); }
  
  .logo-container {
    padding:80px 0 40px;
  }
  
  section.headline {
    padding: 40px 20% 60px;
  }
  
  section.headline h2 {
    font-size: 60px;
    line-height: 110%;
    font-weight: 600;
    margin-bottom: 80px;
    text-align: center;
  }
  
  section.headline h2 span {
    color: #f0b102;
    font-weight: 700;
  }
  
  section.headline p {
    color: #c3c3c3;
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 8%;
  }
  
  .search-container {
    padding:10px 0;
    max-width: 1200px;
    margin: 0 auto 70px;
  }
  
  .search-container .input-container {
    background: #4285f4;
    display: flex;
    flex-direction: row;
    padding: 5px;
    border-radius: 6px;
  }
  
  .search-container input[type=text] {
    width: 100%;
    outline: none !important;
  }
  
  /* Estilos para as abas */
  .tab-container {
    display: flex;
    margin-bottom: 10px;
  }
  
  .tab-button {
    padding: 10px 15px 10px 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #818181;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
  }
  
  .tab-button.active {
    color: #4285f4;
    border-bottom: 3px solid #4285f4;
    font-weight: 500;
  }
  
  .tab-button svg {
    max-width: 30px;
    max-height: 18px;
  }
  
  .tab-content {
    display: none;
  }
  .tab-content.active {
    display: block;
  }
  
  .main-container,
  .preposition-container,
  .alphabet-container {
    max-width:1200px;
    margin:0 auto 80px auto;
    padding:30px;
    border: solid 1px #6c6c6c;
    border-radius: 6px;
  }
  
  .alphabet-container {
    margin-bottom: 0;
  }
  
  .tool {
    padding-top: 0;
  }
  
  .grid-alphabet {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  
  .grid-prepositions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  #loading {
    display: none;
    min-height: 40vh;
    align-items: center;
    justify-content: center;
  }
  
  .box {
    border:solid 1px #6c6c6c;
    border-radius: 6px;
    padding: 20px;
    background: #443f3f;
  }
  
  .datadriven {
    background: #f0f0f0;
  }
  
  .datadriven h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
    padding: 0 20%;
  }
  
  .datadriven .potencialize {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  
  .promo-box {
    background: #FFF;
    color:#6a6a6a;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
  }
  
  .promo-box svg {
    width: auto;
    height: 60px;
    margin-bottom: 10px;
  }
  
  .promo-box path {
    fill: #4285f4;
  }
  
  .promo-box h3 {
    color:#000;
  }
  
  .tool {
    display: none;
  }
  
  footer {
    background: #262424;
    color: #FFFFFF;
    padding: 40px 0 0 0;
  }
  
  footer h3 {
    color: #f0b102;
  }
  
  footer .info {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0 0 40px 0;
    gap: 30px;
  }
  
  footer .info .left {
    text-align: left;
    padding-right: 20%;
  }
  
  footer .info .left img {
    max-width: 300px;
  }
  
  footer .info ul li {
    list-style:none;
    text-align: left;
    line-height: 26px;
  }
  
  footer a {
    color:#FFFFFF;
    text-decoration: none;
    transition: all ease .3s;
  }
  
  footer a:hover {
    color: #f0b102;
  }
  
  
  .sub {
  
    padding: 10px 0;
    background: #000;
    color: #FFFFFF;
  }
  
  .sub .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .sub a {
    color:#FFFFFF;
    text-decoration: none;
    transition: all ease .3s;
  }
  
  .sub a:hover {
    color: #f0b102;
  }
  
  .developed {
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }
  
  .developed svg {
    width: 100px;
    height: auto;
  }
  .developed path {
    transition: all ease .3s;
  }
  .developed svg:hover path {
    fill: #ED4C5E;
  }
  
  /* Tablets */
  @media (max-width: 1080px) {
    .logo-container img {
      width: 100%;
      height: auto;
    }
    .container,
    .search-container,
    .logo-container {
      padding-left: 30px;
      padding-right: 30px;
    }
    .datadriven .potencialize {
      grid-template-columns: 1fr 1fr;
    }
    section.headline {
      padding:40px 0 60px;
    }
    .datadriven h2 {
      padding: 0 5%;
    }
    .tool {
      padding-left: 30px;
      padding-right: 30px;
    }
    .grid-alphabet {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* Celulares */
  @media (max-width: 768px) {
    section.headline h2 {
      font-size: 50px;
    }
    .datadriven .potencialize {
      grid-template-columns: 1fr;
    }
    footer .info,
    .sub .container {
      grid-template-columns: 1fr;
    }
    .sub .container {
      text-align: center;
      justify-content: center;
    }
    .developed {
      justify-content: center;
    }
    footer .info .left {
      padding: 0;
    }
    .grid-prepositions,
    .grid-alphabet {
      grid-template-columns: 1fr;
    }
  }