/* ==========================================================================
   Reset — Grou Conecta Design System V2
   Minimal reset scoped under .app-layout to avoid affecting existing pages.
   ========================================================================== */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

.app-layout *,
.app-layout *::before,
.app-layout *::after {
  box-sizing: border-box;
}

.app-layout h1,
.app-layout h2,
.app-layout h3,
.app-layout h4,
.app-layout h5,
.app-layout h6,
.app-layout p {
  margin: 0;
}

.app-layout ul,
.app-layout ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-layout img,
.app-layout svg {
  display: block;
  max-width: 100%;
}

.app-layout button,
.app-layout input,
.app-layout select,
.app-layout textarea {
  font: inherit;
  color: inherit;
}

.app-layout a {
  text-decoration: none;
  color: inherit;
}

/* Selection color — amber tint for brand consistency */
::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

::-moz-selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

/* Reduced motion: smooth scrolling off */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
