/* ============================================================
   Método Topo do Google Maps — Stylesheet
   ============================================================ */

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 5px;
  border: 2px solid #020617;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Respect reduced-motion preference (accessibility) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Visible keyboard focus states (accessibility) */
a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 2px solid #22d3ee;
  outline-offset: 2px;
  border-radius: 4px;
}

/* FAQ accordion smooth expand/collapse */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-icon {
  transition: transform 300ms ease;
}

/* Mobile nav drawer */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}
#mobile-menu.open {
  max-height: 480px;
}

/* Prevent horizontal scroll caused by decorative blurred blobs on small screens */
body {
  overflow-x: hidden;
}

/* Range slider thumb styling (cross-browser, keeps design language) */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: #22d3ee;
  cursor: pointer;
  border: 2px solid #020617;
}
input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: #22d3ee;
  cursor: pointer;
  border: 2px solid #020617;
}
