 :root {
      --green: #66ff00;
      --green-soft: #99ff33;
      --bg: #000;
      --bg-soft: #0a0a0a;
      --text: #fff;
      --muted: #aaa;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ---------------- NAV ---------------- */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      height: 80px;
      padding: 0 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(102,255,0,0.2);
      z-index: 1000;
    }

    .logo {
      font-size: 2.4rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--green), var(--green-soft));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    nav ul {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 600;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--green);
      transition: .3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    /* ---------------- HERO ---------------- */
    .hero {
      min-height: 100vh;
      padding: 140px 6% 80px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      align-items: center;
      gap: 4rem;
      background: radial-gradient(ellipse at bottom, #1a1a1a 0%, #000 70%);
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(102,255,0,0.15), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(102,255,0,0.12), transparent 45%);
      animation: pulse 6s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes pulse {
      0%,100% { opacity: 1; }
      50% { opacity: .7; }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      animation: fadeUp 1s ease forwards;
    }

    .badge {
      display: inline-block;
      padding: .7rem 1.8rem;
      border-radius: 50px;
      background: rgba(102,255,0,.1);
      border: 1px solid rgba(102,255,0,.3);
      color: var(--green);
      font-weight: 600;
      margin-bottom: 2rem;
    }

    h1 {
      font-size: clamp(3rem, 6vw, 5.5rem);
      line-height: 1.05;
      margin-bottom: 1.5rem;
      font-weight: 900;
      background: linear-gradient(135deg, #fff, var(--green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.25rem;
      max-width: 520px;
      margin-bottom: 2.5rem;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .btn {
      padding: 1.2rem 2.8rem;
      border-radius: 50px;
      font-size: 1.05rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: .35s cubic-bezier(.17,.67,.3,1.3);
    }

    .btn.primary {
      background: linear-gradient(135deg, var(--green), var(--green-soft));
      color: #000;
      box-shadow: 0 20px 60px rgba(102,255,0,.4);
    }

    .btn.secondary {
      background: transparent;
      border: 2px solid var(--green);
      color: var(--green);
    }

    .btn:hover {
      transform: translateY(-6px) scale(1.03);
    }

    /* Mockup */
    .mockup {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: center;
        animation: float 4s ease-in-out infinite;
        }

    .mockup img {
    width: 520px;            /* aumenta o impacto */
    max-width: 100%;
    border-radius: 0;        /* REMOVE moldura arredondada */
    box-shadow: none;        /* REMOVE sombra/container */
    border: none;            /* REMOVE borda verde */
    }


    @keyframes float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-18px); }
    }

    /* ---------------- SECTIONS ---------------- */
    section {
      padding: 9rem 6%;
    }

    .section-title {
      text-align: center;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      margin-bottom: 5rem;
      background: linear-gradient(135deg, #fff, var(--green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Cards */
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .card {
      background: rgba(102,255,0,.04);
      border: 1px solid rgba(102,255,0,.15);
      padding: 3rem;
      border-radius: 28px;
      transition: .4s ease;
      opacity: 0;
      transform: translateY(40px);
    }

    .card.show {
      opacity: 1;
      transform: translateY(0);
    }

    .card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 30px 80px rgba(102,255,0,.3);
    }

    .card h3 {
      color: var(--green);
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }

    .card p {
      color: var(--muted);
      line-height: 1.8;
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, var(--green), var(--green-soft));
      text-align: center;
      color: #000;
    }

    .card-icon {
  font-size: 64px;
  color: #00ff7f;
  margin-bottom: 18px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.15);
}


    .cta h2 {
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 900;
      margin-bottom: 2rem;
    }

    .cta p {
      font-size: 1.5rem;
      margin-bottom: 3rem;
    }

    .cta .btn {
      background: #000;
      color: var(--green);
    }

    /* Footer */
    footer {
      padding: 4rem 6%;
      text-align: center;
      border-top: 1px solid rgba(102,255,0,.2);
    }

    footer p {
      color: #666;
      margin-bottom: .6rem;
    }

    a{
        text-decoration: none;
    }

    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav ul { display: none; }
      .hero { text-align: center; }
      .hero p { margin-left: auto; margin-right: auto; }
      .hero-buttons { justify-content: center; }
    }

    .btn-motorista {
    background-color: #000;
    color: #fff;
    border: none;
    }

    .btn-motorista:hover {
    background-color: #111; 
    color: #fff;
    }

    .cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #000 0%, #0f0f0f 100%);
  color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 32px;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #eaeaea;
}

.benefit i {
  color: #00ff7f;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary {
  background: #00ff7f;
  color: #000;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 255, 127, 0.4);
}

.btn-secondary {
  background: #000;
  color: #fff;
  border: 1px solid #333;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #111;
  transform: translateY(-3px);
}

.cta-note {
  color: #888;
  font-size: 14px;
}
.logo img {
    height: 100px; /* ajuste conforme o layout */
    width: auto;
    display: block;
}

/* ---------------- PRIVACY ---------------- */
.privacy {
  background: #000;
  padding: 8rem 6%;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  color: #ccc;
  line-height: 1.8;
  font-size: 1.05rem;
}

.privacy-content h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 1.4rem;
}

.privacy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-content ul li {
  margin-bottom: 0.6rem;
}

.privacy-updated {
  color: #888;
  margin-bottom: 2rem;
}

.privacy-content a {
  color: var(--green);
  text-decoration: underline;
}

.privacy-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(102,255,0,0.2);
  text-align: center;
  color: #777;
}
