*,
*::before,
*::after {  box-sizing: border-box; }

* { margin: 0; padding: 0;  }
html {   scroll-behavior: smooth;  -webkit-text-size-adjust: 100%; }
body { min-height: 100vh;  font-size: 1rem;  line-height: 1.6;  text-rendering: optimizeSpeed;  -webkit-font-smoothing: antialiased;  -moz-osx-font-smoothing: grayscale;font-family: "Urbanist", sans-serif; }
h1, h2, h4, h5, h6 {  font-weight: inherit; font-size: inherit; line-height: 1.2; color: #2C3E50; font-family: 'Poppins', sans-serif; font-weight: 700;overflow-wrap: break-word;;}
h3, p {    color: #2C3E50; font-family: 'Urbanist', sans-serif;}
a {text-decoration: none; color: inherit; font-family: "Urbanist", sans-serif;}
a:focus-visible { outline: 2px solid currentColor;  outline-offset: 2px; font-family: "Urbanist", sans-serif;}
ul, ol {  list-style: none; font-family: "Urbanist", sans-serif;}
img, picture, video, canvas,svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button {  cursor: pointer;  border: none;  background: none; }
input, textarea {  border: none;  outline: none;font-family: "Urbanist", sans-serif; }

/* Remove aparência padrão de inputs em alguns navegadores */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/* Tabelas */
table {  border-collapse: collapse;  border-spacing: 0; }

/* Remove estilos padrão de fieldset */
fieldset { border: none; }

/* Melhor renderização de elementos iframe */
iframe { border: 0; }

/* Remove delay de clique em dispositivos mobile */
a, button, input, select, textarea {  touch-action: manipulation; }

/* Melhora legibilidade de textos selecionados */
::selection { background-color: rgba(0, 0, 0, 0.2); }

/* Respeita preferências de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   RESET E VARIÁVEIS
   ============================================ */
   :root {
    --primary-blue: #0077BE;
    --whatsapp-green: #25D366;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-gray: #E0E0E0;
    --bg-light: #F8F9FA;
    
    /* Progress Bar Colors */
    --progress-0: #E0E0E0;
    --progress-33: #FFD700;
    --progress-66: #FF8C00;
    --progress-100: #25D366;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}





/* Evita overflow em elementos root */
#root,
#__next {
  isolation: isolate;
}