/* Estilos base comuns para todas as páginas */

:root {
  --button-border-color: rgb(187, 137, 124);
  --primary-content-color: rgb(74, 74, 74);
}

/* Reset CSS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: rgb(74, 74, 74);
  line-height: 1.5;
  min-width: 300px;
  overflow-x: hidden;
  background-color: #fff;
}

/* Container principal */
.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

/* Background fixo */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://order.sprinkles.com/assets/images/background.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

/* Utilitários */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Impressão */
@media print {
  .background {
    display: none;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}

