@import url("https://fonts.googleapis.com/css2?family=Anton&family=Lexend+Giga:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Shrikhand&display=swap");

:root {
  --primary-color: #12472d;
  --secondary-color: #a3cc1e;
  --aux-color: rgb(3, 3, 3);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}
* {
  font-family: "Poppins", sans-serif;
}

.hero-bg {
background-image: url('/img/hero.png');
  background-size: cover;
  background-position: center;
}


  .btn-primary {
    @apply bg-[#12472d] hover:bg-[#0f3d25] transition duration-300;
  }



.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card {
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0d3a22;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--secondary-color);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cite-start::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  line-height: 0;
  vertical-align: middle;
}

.active {
  display: block !important;
}

/* Media Queries para Tablets */
@media (min-width: 640px) and (max-width: 768px) {
  /* Ajustes no hero section */
  .hero-bg {
    background-position: 60% center;
  }

  /* Ajustes no tamanho de fonte para tablets */
  #hero h1 {
    font-size: 3.5rem;
  }

  .cite-start p {
    font-size: 1.3rem;
  }

  /* Grid de features 2 colunas em tablets */
  .feature-grid-tablet {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Espaçamento reduzido em seções */
  .section-py-tablet {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  /* Ajuste no padding dos cards */
  .p-card-tablet {
    padding: 1.5rem;
  }
}

::-webkit-scrollbar {
  display: none;
}

/* Esconde no Firefox */
html {
  scrollbar-width: none; /* remove o espaço do scroll */
}

/* Esconde no IE e Edge Legacy */
body {
  -ms-overflow-style: none;
}

/* Garante que o conteúdo ocupe 100% */
html, body {
  height: 100%;
  overflow-y: scroll; /* mantém a rolagem mesmo sem mostrar o scroll */
}
