/* reset.css — Reset personalizado para o HTML fornecido, sem frameworks */

/* Box‑sizing global */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* Zera margin/padding e borda de todos os elementos */
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
  }
  
  /* HTML5 display-role reset */
  article, aside, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section {
    display: block;
  }
  
  /* Remove listas padrão */
  ul, ol {
    list-style: none;
  }
  
  /* Links sem estilo nativo */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Imagens e SVG responsivos */
  img, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  /* Texto e headings sem espaçamento */
  h1, h2, h3, h4, h5, h6, p, span {
    overflow-wrap: break-word;
    line-height: 1.4;
  }
  
  /* Formulários e botões neutros */
  input, button, textarea, select {
    font: inherit;
    background: none;
    border: none;
    outline: none;
  }
  button {
    cursor: pointer;
  }
  
  /* Sections, nav, header, main, footer isolamento */
  nav, header, main, section, footer {
    width: 100%;
  }
  
  /* Remove bullets de listas no menu */
  nav ul {
    list-style: none;
  }
  
  /* Remove estilos de listagem em FAQ */
  .faq-section ul, .questions-container {
    list-style: none;
  }
  
  /* Ajusta containers genéricos */
  .logo-menu, .menu-options, .headline-container,
  .benefits-container, .about-container,
  .points-container, .steps-container,
  .faq-container, .contact-container {
    margin: 0;
    padding: 0;
  }
  
  /* Tabelas sem borda */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /* Remove outline padrão e define foco acessível */
  :focus {
    outline: 2px solid #005fcc;
    outline-offset: 2px;
  }
  