/* ==========================================================================
   RESET CSS - Base limpa para começar
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Remover estilos padrão de listas */
ul, ol {
  list-style: none;
}

/* Remover underline de links */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Melhorar tipografia */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0;
}

/* Imagens responsivas por padrão */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Botões sem estilo padrão */
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  transition: all 0.3s ease;
}

button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #FF8C42;
  outline-offset: 2px;
}

/* Formulários */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
}

/* Remover aparência padrão de inputs number */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Scroll suave no iOS */
html {
  -webkit-overflow-scrolling: touch;
}

/* Selecionar texto com cor da marca */
::selection {
  background-color: #FF8C42;
  color: #FFFFFF;
}