 /* Reset básico */
  body, html {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  img {
    pointer-events: none;
  }
    :root {
      --verde-cana: #32cd32;
      --verde-cana-claro: #76ff7a;
      --preto-fundo: #0a0a0a;
      --preto-card: #111;
      --branco: #ffffff;
      --cinza-card: #1a1a1a;
      --texto-principal: #e0e0e0;
      --texto-secundario: #b0b0b0;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background-color: var(--preto-fundo);
      color: var(--texto-principal);
      line-height: 1.6;
      font-size: 16px;
    }

    /* Header */
    header {
      background: #000;
      padding: 4rem 1rem 2rem;
      text-align: center;
      position: relative;
      border-bottom: 1px solid var(--verde-cana);
    }

    .logo-container {
      margin: 0 auto;
      max-width: 300px;
    }

    .logo-container img {
      width: 100%;
      height: auto;
      max-height: 80px;
      object-fit: contain;

    }

    header h1 {
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
      color: var(--verde-cana);
      font-weight: 700;
    }

    header p {
      font-size: 1rem;
      color: var(--texto-secundario);
      max-width: 100%;
      margin: 0 auto;
    }

    /* Seções Slider */
    .slider-area {
      padding: 2rem 1rem;
      background: linear-gradient(to bottom, #0f0f0f, #0a0a0a);
    }

    .slider-container {
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .slider-text {
      flex: 1;
    }

    .slider-text h2 {
      font-size: 1.5rem;
      color: var(--verde-cana);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .slider-text ul {
      list-style-type: none;
      margin: 1.2rem 0;
    }

    .slider-text li {
      margin-bottom: 0.8rem;
      position: relative;
      padding-left: 1.5rem;
      color: var(--texto-secundario);
      font-size: 0.95rem;
    }

    .slider-text li:before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--verde-cana);
    }

    .slider-btn {
      margin-top: 1.5rem;
    }

    .slider-btn a {
      display: inline-block;
      background: var(--verde-cana);
      color: #000;
      padding: 0.8rem 1.8rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .slider-img, .slider-img1 {
      text-align: center;
    }

    .slider-img img, .slider-img1 img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(50, 205, 50, 0.2);
      margin: 0 auto;
      background: radial-gradient(circle at center, rgba(50, 205, 50, 0.15), transparent 70%);
  animation: pulsateGlow 5s infinite ease-in-out;
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(50, 205, 50, 0.6);
  
    }

    /* Seção Features */
    .features-section {
      padding: 2rem 1rem;
      background: #0d0d0d;
    }

    .section-title {
      text-align: center;
      font-size: 1.8rem;
      color: var(--verde-cana);
      margin-bottom: 2rem;
      font-weight: 700;
    }

    .features {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .card {
  background: var(--cinza-card);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(50, 205, 50, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(50, 205, 50, 0.1);
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(50, 205, 50, 0.15), transparent 70%);
  transform: rotate(0deg);
  animation: rotateGlow 6s linear infinite;
  z-index: 0;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(50, 205, 50, 0.5);
  border: 1px solid rgba(50, 205, 50, 0.4);
}

.card h3 {
  font-size: 1.4rem;
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

    /* Seção Video */
    .video-section {
      padding: 2rem 1rem;
      text-align: center;
    }

    .video-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .video-container iframe {
      width: 100%;
      height: 300px;
      border-radius: 10px;
      border: none;
    }

    /* Seção Revenda */
    .revenda-section {
      padding: 2rem 1rem;
      background: #0d0d0d;
    }

    .revenda {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    /* Seção CTA */
    .cta-section {
      padding: 2rem 1rem;
      text-align: center;
    }

    .cta-button {
      display: inline-block;
      background: var(--verde-cana);
      color: #000;
      padding: 1rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    /* Footer */
    footer {
      background: #000;
      padding: 2rem 1rem;
      text-align: center;
      font-size: 0.9rem;
      color: var(--texto-secundario);
    }

    /* Botão WhatsApp */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50%;
      text-align: center;
      font-size: 30px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.6);
      background-color: #128C7E;
    }

    .whatsapp-float img {
      width: 35px;
      height: 35px;
      filter: brightness(0) invert(1);
    }

    /* Media Queries para Tablet e Desktop */
    @media (min-width: 768px) {
      header {
        padding: 5rem 1rem 3rem;
      }

      .logo-container img {
        height: 50px;
      }

      header h1 {
        font-size: 2.2rem;
      }

      header p {
        font-size: 1.1rem;
      }

      .slider-container {
        flex-direction: row;
        align-items: center;
        max-width: 1200px;
        gap: 3rem;
      }

      .slider-text {
        flex: 1;
      }

      .slider-img, .slider-img1 {
        flex: 1;
      }

      .slider-text h2 {
        font-size: 1.8rem;
      }

      .slider-text li {
        font-size: 1rem;
      }

      .slider-btn a {
        padding: 0.9rem 2rem;
        font-size: 1rem;
      }

      .features, .revenda {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-title {
        font-size: 2.2rem;
      }

      .video-container iframe {
        height: 450px;
      }

      .whatsapp-float {
        width: 70px;
        height: 70px;
        bottom: 30px;
        right: 30px;
      }

      .whatsapp-float img {
        width: 40px;
        height: 40px;
      }
    }

    @media (min-width: 992px) {
      .features, .revenda {
        grid-template-columns: repeat(4, 1fr);
      }
    }
    :root {
      --verde-cana: #32cd32;
      --preto-fundo: #0a0a0a;
      --branco: #ffffff;
      --cinza-card: #1a1a1a;
      --texto-principal: #d4ffd4;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background-color: var(--preto-fundo);
      color: var(--texto-principal);
      line-height: 1.6;
    }

    header {
      background: radial-gradient(circle, #0f0f0f, #000000);
      padding: 4rem 1rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    header::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: repeating-radial-gradient(circle, rgba(50, 205, 50, 0.1) 0, rgba(50, 205, 50, 0.1) 1px, transparent 1px, transparent 5px);
      animation: pulseRays 6s linear infinite;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes pulseRays {
      0% {
        transform: rotate(0deg) scale(1);
      }
      100% {
        transform: rotate(360deg) scale(1.2);
      }
    }

    .logo-container {
      margin: 0 auto 1rem;
      max-width: 220px;
      z-index: 1;
      position: relative;
    }

    .logo-container img {
      width: 100%;
      height: auto;
      max-height: 120px;
      object-fit: contain;
      animation: glowLogo 2s ease-in-out infinite alternate;
    }

    @keyframes glowLogo {
      from {
        filter: drop-shadow(0 0 2px #32cd32);
      }
      to {
        filter: drop-shadow(0 0 15px #32cd32);
      }
    }

    header h1 {
      font-size: 2.5rem;
      color: var(--verde-cana);
      position: relative;
      z-index: 1;
    }

    header p {
      margin-top: 0.5rem;
      color: #ccc;
      position: relative;
      z-index: 1;
    }

    .slider-area {
      padding: 4rem 1rem;
      background: #111;
    }

    .slider-container {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
    }

    @media(min-width: 768px) {
      .slider-container {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    .slider-text {
      flex: 1;
      max-width: 600px;
    }

    .slider-text h2, .slider-text h3 {
      color: var(--verde-cana);
      margin-bottom: 1rem;
    }

    .slider-text p, .slider-text li {
      color: #aaa;
      margin-bottom: 0.5rem;
    }

    .slider-text ul {
      padding-left: 1.2rem;
    }

    .slider-btn a {
      display: inline-block;
      margin-top: 1rem;
      background: var(--verde-cana);
      color: var(--preto-fundo);
      padding: 0.8rem 1.5rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 0 15px rgba(50, 205, 50, 0.3);
    }

    .slider-img img, .slider-img1 img {
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(50, 205, 50, 0.2);
    }

    .section-title {
      text-align: center;
      font-size: 2rem;
      color: var(--verde-cana);
      margin: 3rem 0 1rem;
    }

    .features, .revenda {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      padding: 2rem 1rem;
    }

    .card {
      background: var(--cinza-card);
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      color: var(--verde-cana);
      margin-bottom: 0.5rem;
    }

    .card p {
      color: #ccc;
    }

    .video-section {
      text-align: center;
      margin: 4rem 0;
    }

    .video-section iframe {
      width: 100%;
      max-width: 800px;
      height: 450px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(50, 205, 50, 0.3);
    }

    .cta {
      text-align: center;
      margin: 2rem 0;
    }

    .cta a {
      background: var(--verde-cana);
      color: var(--preto-fundo);
      padding: 1rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: bold;
      box-shadow: 0 0 15px rgba(50, 205, 50, 0.5);
    }

    footer {
      background: #0d0d0d;
      color: #777;
      text-align: center;
      padding: 2rem 1rem;
      font-size: 0.9rem;
    }

    .float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      right: 20px;
      z-index: 999;
    }

    .float img {
      width: 100%;
      height: auto;
    }
    @media (min-width: 768px) {
  .slider-container {
    flex-direction: row; /* Já existe, só para reforçar */
  }

  .slider-text {
    order: 1; /* Text à esquerda */
  }

  .slider-img1 {
    order: 2; /* Imagem à direita */
    display: flex;
    justify-content: flex-end;
  }
}

.highlighted-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  background: radial-gradient(circle at center, rgba(50, 205, 50, 0.15), transparent 70%);
  animation: pulsateGlow 5s infinite ease-in-out;
}

.highlighted-img-container img {
  max-width: 90%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 0 30px rgba(50, 205, 50, 0.4);
  z-index: 2;
}

.highlighted-img-container img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(50, 205, 50, 0.6);
}

@keyframes pulsateGlow {
  0% {
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(50, 205, 50, 0.6);
  }
  100% {
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
  }
}

.highlighted-img-container iframe {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 16px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 0 30px rgba(50, 205, 50, 0.4);
  z-index: 2;
}

.highlighted-img-container iframe:hover {
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(50, 205, 50, 0.6);
}


:root {
      --verde-cana: #00ff99;
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    header {
      background-color: #111;
      color: white;
      padding: 1rem;
      text-align: center;
    }

    header img {
      height: 60px;
    }

    /* Novo menu */
    nav.menu {
      background-color: #000;
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 1rem;
      flex-wrap: wrap;
      border-bottom: 1px solid var(--verde-cana);
    }

    nav.menu a {
      color: var(--verde-cana);
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
      padding: 0.5rem 1rem;
      transition: all 0.3s ease;
    }

    nav.menu a:hover {
      background-color: var(--verde-cana);
      color: #000;
      border-radius: 5px;
    }

    .menu-btn {
      background: gold;
      color: #000;
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      nav.menu {
        flex-direction: column;
        align-items: center;
      }

      nav.menu a, .menu-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
      }
    }
:root {
      --verde-cana: #00ff99;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #111;
      color: white;
    }

    header {
      background-color: #111;
      color: white;
      padding: 2rem 1rem;
      text-align: center;
    }

    header img {
      height: 60px;
      margin-bottom: 1rem;
    }

    nav.menu {
      background-color: #000;
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 1rem;
      flex-wrap: wrap;
      border-bottom: 1px solid var(--verde-cana);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    nav.menu a {
      color: var(--verde-cana);
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
      padding: 0.5rem 1rem;
      transition: all 0.3s ease;
    }

    nav.menu a:hover {
      background-color: var(--verde-cana);
      color: #000;
      border-radius: 5px;
    }

    .menu-btn {
      background: gold;
      color: #000;
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      nav.menu {
        flex-direction: column;
        align-items: center;
      }

      nav.menu a, .menu-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
      }
    }

    section {
      padding: 3rem 1.5rem;
      text-align: center;
    }

    section h2 {
      color: var(--verde-cana);
      margin-bottom: 1rem;
    }

    .card {
      background: #1a1a1a;
      border: 1px solid var(--verde-cana);
      border-radius: 10px;
      padding: 1.5rem;
      margin: 1rem auto;
      max-width: 700px;
      box-shadow: 0 0 15px rgba(0, 255, 153, 0.3);
    }

    .faq {
      max-width: 700px;
      margin: 0 auto;
      text-align: left;
    }

    .faq details {
      background: #222;
      border: 1px solid #444;
      border-radius: 5px;
      margin-bottom: 1rem;
      padding: 1rem;
    }

    .faq summary {
      font-weight: bold;
      color: var(--verde-cana);
      cursor: pointer;
    }
    
    :root {
  --verde-cana: #00ff99;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

header {
  background-color: #111;
  color: white;
  padding: 1rem;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.logo-container img {
  height: 60px;
}

.header-desc {
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  padding: 0 1rem;
}

/* Menu padrão */
nav.menu {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

nav.menu a {
  color: var(--verde-cana);
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

nav.menu a:hover {
  background-color: var(--verde-cana);
  color: #000;
  border-radius: 5px;
}

.menu-btn {
  background: gold;
  color: #000;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

/* Botão hamburguer (oculto no desktop) */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--verde-cana);
  cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  nav.menu {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  nav.menu.active {
    display: flex;
  }

  nav.menu a,
  .menu-btn {
    width: 100%;
    text-align: center;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-container img {
    margin-bottom: 0.5rem;
  }
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #0d0d0d;
      color: #f0f0f0;
      padding-top: 70px; /* Espaço para o menu fixo */
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #000;
      border-bottom: 2px solid #0f0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      z-index: 999;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 600;
      color: #0f0;
      text-transform: uppercase;
    }



    main {
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        background-color: #111;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        display: none;
      }

      nav ul.active {
        display: flex;
        align-items: center;
      }

      .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.5rem;
      }
    }

    .menu-toggle {
      display: none;
    }
    
    .slider-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}