html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #600b50;
    position: relative;
    overflow-x: hidden;
  }
  
  * {
    box-sizing: inherit;
  }
  
  .imagem-topo-direita,
  .logo,
  .borboletas {
    position: absolute;
  }
  
  .imagem-topo-direita {
    top: 0;
    right: 0;
    height: 246px;
    width: auto;
    z-index: 2;
  }
  
  .logo {
    top: 98px;
    left: 18px;
    width: 234.24px;
    height: auto;
    z-index: 200;
  }
  
  .borboletas {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
  }
  
  .cards-container {
    position: relative;
    top: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
  }
  
  .card {
    width: 340px;
    height: 70px;
    border-radius: 18px;
    background-color: #d1d1d1;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-left: 8.7px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .icone-wrapper {
    width: 51px;
    height: 51px;
    background-color: #fab900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icone-wrapper img {
    width: 31px;
    height: auto;
  }
  
  .card-texto {
    margin-left: 10.4px;
    color: #600b50;
    font-size: 21px;
    font-weight: bold;
    white-space: nowrap;
  }
  
  .rodape {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #fab900;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
    z-index: 2;
  }
  
  .rodape p {
    margin-bottom: 2px;
  }
  
  .linha-rodape {
    width: 110%;
    height: 6px;
    background-color: #fab900;
    z-index: 2;
  }
  
  @media screen and (min-width: 720px) {
    .imagem-topo-direita {
      height: calc(246px * 2.2);
      right: 0;
    }
  
    .logo {
      top: 60px;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
    }
  
    .borboletas {
      display: none;
    }
  
    .cards-container {
      top: 45vh;
      transform: translateY(-20%);
    }
  
    .card {
      width: 50vw;
      height: 8vh;
    }
  
    .card-texto {
      font-size: 1.5vw;
    }
  }
  