    /* Customização de estilos */
    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
    }

    .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../img/bg.jpg') no-repeat center center;
      background-size: cover;
      color: white;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      animation: fadeInDown 2s ease;
    }

    .hero p {
      font-size: 1.5rem;
      margin-top: 20px;
      animation: fadeInUp 2s ease;
    }

    .btn-primary {
      background-color: #f0781f;
      border: none;
      padding: 10px 20px;
      font-size: 1rem;
      transition: background-color 0.3s ease;
      min-width: 350px;
    }

    .btn-primary:hover {
      background-color: #e64a19;
    }

    /* Estilo para o botão "Já sou cliente" */
    .btn-secondary {
    background-color: #ffffff;
    border: 2px solid #ffffff;
      color: #ff5722;
      padding: 8px 16px;
      font-size: 1rem;
      margin-top: 10px;
      transition: background-color 0.3s ease, color 0.3s ease;
      min-width: 350px;
    }

    .btn-secondary:hover {
      background-color: #ffffff;
      color: #ff5722;
    }

    .features-icon {
      font-size: 3rem;
      color: #ff5722;
      margin-bottom: 20px;
    }

    .pricing {
      background-color: #f8f9fa;
      padding: 100px 0;
    }

    .pricing h2 {
      font-weight: 700;
    }

    .pricing-card {
      box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .pricing-card:hover {
      transform: scale(1.05);
    }

    .testimonials {
      background-color: #f1f1f1;
      padding: 60px 0;
    }

    .footer {
      background-color: #212529;
      color: white;
      padding: 20px 0;
      text-align: center;
    }

    /* Keyframes para animação */
    @keyframes fadeInDown {
      0% { opacity: 0; transform: translateY(-20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    #logoimg {
      width: 100%; /* A imagem ocupará a largura total do container até que a media query seja aplicada */
      max-width: 700px; /* A largura máxima da imagem será 700px em telas grandes */
    }

    @media (max-width: 700px) {
      #logoimg {
        max-width: 350px; /* Define a largura máxima de 350px para telas menores que 700px */
      }
    }