/* Reset CSS - Remove estilos padrão de todos os navegadores */

/* Define a caixa de modelo para border-box */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Remove estilos padrão de listas */
  ul, ol {
    list-style: none;
  }
  
  /* Remove decoração de links */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Remove estilos padrão de botões */
  button, input, textarea, select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
  }
  
  /* Remove estilos padrão de tabelas */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /* Zera estilos de cabeçalhos e parágrafos */
  h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    font-weight: normal;
  }
  
  /* Define um tamanho de fonte base */
  html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
  }
  
  /* Garante que o body ocupe toda a tela */
  body {
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Remove highlight padrão do iOS */
  input, textarea, button, select, a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }
  
  /* Desativa zoom automático do iOS */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea {
    font-size: 16px;
  }
  
  /* Ajustes para imagens responsivas */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  