:root {
  --geoow-text: #373643;
  --maps-text: #51bca7;
  --pin-color: #18cb96;
  --white: #fafafa;
  --font: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background-color: var(--white);
  color: var(--geoow-text);
  line-height: 1.6;
}

header {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid #eee;
  z-index: 10;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.nav-desktop a {
  margin: 0 1rem;
  text-decoration: none;
  color: var(--geoow-text);
  font-weight: 500;
}


.img-logo {
  display: block;
  height: 40px;
  width: auto;
}

nav a {
  text-decoration: none;
  color: var(--geoow-text);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background-color: var(--white);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  transition: right 0.3s ease-in-out;
  z-index: 200;
}

.drawer.open {
  right: 0;
}

.drawer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.drawer nav a {
  padding: 0.8rem 0;
  text-decoration: none;
  font-weight: 500;
}

.drawer nav hr {
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #eee;
}

.drawer nav .btn-primary,
.drawer nav .btn-secondary {
  display: block;
  /* Para ocupar a largura necessária e ficar em bloco */
  width: 100%;
  /* Pode ajustar para 80% se quiser mais estreito */
  text-align: center;
  /* Centraliza o texto dentro do botão */
  margin: 0.5rem 0;
  /* Espaçamento vertical entre os botões */
}

.drawer nav .btn-primary {
  background-color: var(--pin-color);
  color: var(--white);
}

.drawer nav .btn-secondary {
  background-color: #fafafa;
  color: var(--geoow-text);
  border: 1px solid #373643;
}

.close-drawer {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--pin-color);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-secondary {
  background-color: #fafafa;
  color: var(--geoow-text);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border-color: #373643;
  border: 1px solid;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
}

.btn-experimento {
  background-color: var(--geoow-text);
  color: #fafafa;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  border-color: #373643;
  border: 1px solid;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.hero {
  width: 100%;
  padding-top: 85px;
}

.hero-content {
  max-width: 1250px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 4rem 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  max-width: 800px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text h1 span {
  color: var(--maps-text);
}

.hero-text p {
  margin-bottom: 1.5rem;
}

.content-img {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  height: 600px;
}

.img-hero {
  height: 100%;
  border-radius: 10px;
}

.stats-back {
  width: 100%;
  background-color: #18cb96;
}

.stats {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  padding: 2rem 0;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.text-stats {
  color: #fff;
  font-size: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.text-stats-titulo {
  color: #fff;
  font-size: 25px;
}

.funcion {
  background-color: #373643;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
  gap: 2rem;
  margin-top: 20px;
  border-radius: 20px;
}

.funcion-video {
  height: 375px;
}

.funcion.reverse {
  flex-direction: row-reverse;
}

.funcion-content {
  max-width: 480px;
  color: #fafafa;
}

.text-funcion {
  color: #fafafa;
  margin-bottom: 15px;
}

.funcion-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.funcion-content p {
  margin-bottom: 1rem;
}

.funcionalidades {
  width: 100%;
}

.funcion-titulo {
  padding: 3rem;
  text-align: center;
}

.funcionalidades p {
  color: #6b7280;
  margin-bottom: 1rem;
}

.funcionalidades h3 {
  font-size: 2rem;
}

.pricing {
  padding: 4rem 3rem;
  text-align: center;
  background: #f9fafb;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.pricing p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.pricing h3 {
  font-size: 2rem;
}

.price-suffix {
  font-size: 0.9rem;
  color: #666;
  font-weight: normal;
  margin-left: 2px;
}

.billing-toggle {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.toggle-wrapper {
  position: relative;
  background-color: #e5e7eb;
  border-radius: 999px;
  display: flex;
  padding: 0.3rem;
  gap: 0.5rem;
  width: 220px;
  justify-content: space-between;
  align-items: center;
}

.toggle-wrapper input[type="radio"] {
  display: none;
}

.toggle-wrapper label {
  flex: 1;
  text-align: center;
  z-index: 1;
  padding: 0.5rem 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s ease;
}

.toggle-wrapper .toggle-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 48%;
  height: calc(100% - 8px);
  background-color: #18cb96;
  border-radius: 999px;
  transition: transform 0.3s ease;
  z-index: 0;
}

#anual:checked~label[for="anual"],
#mensal:checked~label[for="mensal"] {
  color: #fff;
}

#mensal:checked~.toggle-indicator {
  transform: translateX(100%);
}

#anual:checked~.toggle-indicator {
  transform: translateX(0%);
}

.plans {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.plan {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  width: 375px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  transition: transform 0.3s;
}

.plan.featured {
  border: 2px solid #18cb96;
}

.plan h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.plan .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9rem;
  margin: 0;
}

.plan .price {
  font-size: 1.8rem;
  color: #111;
  margin: 0.3rem 0;
}

.plan .tag {
  font-size: 0.8rem;
  color: #10b981;
  font-weight: bold;
  margin-bottom: 1rem;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  color: #333;
}

.features li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.features li.disabled {
  color: #999;
}

.features li.disabled::before {
  content: "✕";
  color: #ef4444;
}

.content-info-planos {
  max-width: 900px;
  margin: auto;
  margin-top: 15px;
}

.info-planos {
  font-size: 13px;
}

.faq {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.faq h3 {
  font-size: 2rem;
}

.faq p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.faq-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.faq-card {
  background-color: #fff;
  border-radius: 14px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
  text-align: left;
}

.faq-answer.open {
  max-height: 495px;
  opacity: 1;
  padding: 0 2rem 1.5rem;
}

.faq-card.open .faq-icon {
  transform: rotate(180deg);
}

.avaliacaoes {
  width: 100%;
  background-color: #fff;
}

.avaliacoes-content {
  margin: auto;
  background-color: var(--pin-color);
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 3rem;
  gap: 2rem;
  border-radius: 20px;
  color: #fafafa;
  text-align: center;
}

.avaliacaoes p {
  margin-bottom: 2rem;
}

.avaliacaoes h3 {
  font-size: 2rem;
}

.avaliacoes-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.avaliacao-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.avaliacao-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.avaliacao-card h4 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
}

.avaliacao-text {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  line-height: 1.5;
}

.avaliacao-stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 1rem;
}

.star {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
  /* amarelo dourado */
}

.cta {
  padding: 5rem 5rem;
  width: 100%;
  background-color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 1200px;
  margin: auto;
}

.cta p {
  margin-bottom: 2rem;
}

.cta h3 {
  font-size: 2rem;
}

footer {
  padding: 2rem 3rem;
  font-size: 0.8rem;
  text-align: center;
  color: #666;
  background-color: #fff;
}

footer a {
  color: var(--maps-text);
  text-decoration: none;
}


@media (max-width: 1200px) {
  header {
    width: 100%;
    border-radius: 0;
    top: 0;
    left: 0;
    transform: none;
  }

  .nav-desktop,
  .buttons-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    padding: 3rem 2rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .content-img {
    height: 500px;
  }

  .funcion {
    flex-direction: column !important;
    /* Força coluna */
    text-align: center;
    padding: 3rem 2rem;
    width: 90%;
  }

  .funcion.reverse {
    flex-direction: column !important;
    /* Ignora row-reverse */
  }

  .funcion-content {
    max-width: 100%;
    order: -1;
    /* Coloca o texto acima do vídeo */
    margin-bottom: 1.5rem;
  }

  .funcion-video {
    height: 375px;
    /* Para vídeo responsivo */
  }

  .funcion-content h2 {
    font-size: 1.6rem;
  }

  .text-funcion {
    font-size: 0.95rem;
  }

  .stats {
    width: 90%;
  }

}

@media (max-width: 932px) {
  .img-hero {
    height: 100%;
    max-width: 750px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .content-img {
    width: 100%;
    height: auto;
    /* altura automática para manter proporção */
  }

  .img-hero {
    width: 100%;
    height: auto;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .funcion-video {
    width: 100%;
    height: auto;
    /* Para vídeo responsivo */
  }

}

@media (max-width: 425px) {
  .drawer {
    width: 100%;
    right: -100%;
  }

  .drawer.open {
    right: 0;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .content-img {
    height: auto;
  }
}