    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }

    header, section {
      padding: 60px 20px;
      text-align: center;
    }

    header {
      background: linear-gradient(180deg, #ff9800, #ff9822);
      color: white;
    }

    header h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }
    
    header p {
      font-size: 1.2rem;
      margin-bottom: 25px;
    }

    .btn {
      display: inline-block;
      padding: 15px 30px;
      background: #ff9800;
      color: white;
      font-weight: bold;
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.3s;
    }

    .btnhead {
      display: inline-block;
      padding: 15px 30px;
      background: #389200;
      color: white;
      font-weight: bold;
      text-decoration: none;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      border-radius: 8px;
      transition: background 0.3s;
    }

    .btn:hover {
      background: #e68900;
    }

    #como-funciona {
      background: #fff;
    }

    #como-funciona h2,
    #precos h2,
    #beneficios h2,
    #cta h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .logo {
      font-size: 2.5rem;
      margin-bottom: 15px;
        color: #ffffff;
        font-weight: bold;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        letter-spacing: 1px;
        margin-left: 30px;
        
    }

    .steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .steps div {
      background: #f0f0f0;
      padding: 20px;
      border-radius: 10px;
      flex: 1 1 250px;
      max-width: 300px;
      font-weight: bold;
    }

    /* tabela de preços */
    .pricing-table {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .plan {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      flex: 1 1 250px;
      max-width: 300px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s;
    }

    .plan:hover {
      transform: translateY(-5px);
    }

    .plan h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #0077ff;
    }

    .plan p.price {
      font-size: 1.8rem;
      font-weight: bold;
      margin: 15px 0;
      color: #333;
    }

    .plan ul {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      text-align: left;
    }

    .plan ul li {
      margin: 10px 0;
      font-size: 0.95rem;
    }

    .plan .btn {
      margin-top: 15px;
      display: block;
    }

    #beneficios ul {
      list-style: none;
      padding: 0;
    }

    #beneficios ul li {
      margin: 12px 0;
      font-size: 1.1rem;
    }

    #cta {
      background: #0077ff;
      color: white;
    }

    #cta .btn {
      background: #ff9800;
    }