/* Reset Mínimo */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  background-color: var(--bg-light);
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

[data-off-canvas-main-canvas] {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 100vh;
}

/* Layout Containers */
.layout-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-light);
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Full Bleed Sections */
.full-bleed {
  width: 100%;
  background-color: var(--bg-light);
}
