main {
    margin-top: 80px;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Opcional: centraliza horizontalmente */
    height: 75vh; /* Ocupa toda a altura da tela */
    gap: 40px; /* Espaço entre texto e imagem */
    margin-left: 50px;
    margin-top: 40px;
}
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 130px;
    
}

.hero-text h1 {
    font-weight: 700;
    font-size: 58px;
    color: #ec6f15;
    font-family: "Inter", sans-serif;
}

.hero-text p {
    font-size: 18px;
}

.hero-btn {
    background-color: #ec6f15;
    background-image: linear-gradient(to right, #ff641c, #ff8c42);
    padding: 15px 110px;
    border: none;
    border-radius: 13px;
    margin-top: 10px;
    transition: background-image 0.3s ease, transform 0.3s ease;
    transform-origin: left center;
}

.hero-btn a {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.hero-btn:hover {
    background-image: linear-gradient(to right, #e55500, #ff8c42); /* Degradê diferente ao passar o mouse */
    transform: scaleX(1.1);
}

#bg-cartao img {
    height: 600px;
    transform: translateY(-50px); /* Sobe 50px */
    margin-right: 30px;
    margin-top: 150px ;
    animation: flutuar 3s ease-in-out infinite;
}

#bg-cartao {
    background: transparent;
}

.hero-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-dots {
    position: relative;
    width: 100%;
    height: 100px; /* altura da área do main */
    
  }
  
  .dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.9;
  }
  
  /* Bolinhas com diferentes tamanhos, cores e posições */
  .dot-blue {
    width: 20px;
    height: 20px;
    background-color: #ff820d;
    top: 190px;
    left: 65%;
  }
  
  .dot-lightblue {
    width: 60px;
    height: 60px;
    background-color: #ffa048;
    top: 50px;
    left: 70%;
  }
  
  .dot-darkblue {
    width: 90px;
    height: 90px;
    background-color: #ff7e06;
    top: 150px;
    left: 80%;
  }

  .laranja {
    width: 250px;
    height: 250px;
    background-color: #ff8716b7;
    top: 200px;
    left: 60%;
  }
  .bege {
    width: 150px;
    height: 150px;
    background-color: #ffe2c7;
    top: 380px;
    left: 83%;
  }
@keyframes flutuar {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        gap: 20px;
        margin-left: 0px;
      }
    
    .hero-text h1 {
        font-weight: 700;
        font-size: 36px;
        color: #ec6f15; 
    }

    .hero-text {
        margin-top: 0px;
        padding: 40px;
    }
    
    #bg-cartao img {
        height: 330px;
        margin-top: 10px;
    }
    .hero-text {
      order: 0;
    }

    .hero-btn {
        padding: 15px 30px;
        margin-bottom: 30px;
    }
    main {
        margin-top: 120px;
    }
    .laranja {
        width: 200px;
        height: 200px;
        background-color: #ff8716b7;
        top: 520px;
        left: 30%;
      }
      .bege {
        width: 190px;
        height: 190px;
        background-color: #ffe2c7;
        top: 650px;
        left: 40%;
      }
      .dot-lightblue {
        display: none;
      }
      .dot-darkblue {
        width: 105px;
        height: 105px;
        background-color: #ff7e06;
        top: 600px;
        left: 17%;
      }
      .dot-blue {
        display: none;
      }

  }


  
