:root {
  --radius-card: 16px;
  --radius-img: 12px;
  --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.45);
  --shadow-container: 0 24px 80px rgba(0, 0, 0, 0.5);
  --gap-default: 32px;
  --gap-sm: 10px;
  --gap-md: 16px;
  --gap-lg: 32px;
  --padding-sm: 8px;
  --padding-md: 16px;
  --padding-lg: 32px;
  --icon-size-sm: 24px;
  --padding-card: 30px;
  --padding-mobile: 20px;
  --font-title: 18px;
  --font-subtitle: 16px;
  --font-body: 14px;
  --font-small: 13px;
  --font-lg: 24px;
  --blur-sm: blur(8px);
  --blur-md: blur(10px);
  --blur-lg: blur(14px);
  --blur-xl: blur(16px);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-hover: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  --modal-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}


/* ====================== RESET & BASE ====================== */

/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth !important;
}

/* HTML & Body */
html, body {
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior-y: none; /* impede scroll elástico no iOS */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}


html, body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}



body {
  background-color: #111;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  color: white;
  height: 100vh;
  width: 100vw;
}

/* Desativa seleção de texto */
body, body * {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* Container centralizado */
.container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 769px) {
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    display: block;
    padding: 0 16px;
  }
}


/* =================== UTILITÁRIOS =================== */

.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

/* Suporte a acessibilidade se usar aria-hidden */
.hidden[aria-hidden="true"] {
  display: none;
}


.hidden {
  display: none !important;
}
