/* style.css - estilos customizados */

/* Reset básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}
\Img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Container adicional (caso precise) */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Placeholder imagem */
.no-image {
  width: 100%;
  height: 200px;
  background-color: #e2e8f0; /* slate-200 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8; /* slate-400 */
  font-size: 1rem;
}

/* Estilos específicos para formulários e botões override, se necessários */
input, button, select, textarea {
  font-family: inherit;
}
