@charset "utf-8";
/* Reset básico */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* HTML: ajustes de leitura e zoom */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* BODY: suavização e layout */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';

  margin: 0 auto;
  overflow-x: hidden;
  min-height: 100vh;
  background-color: white;
}

/* Links globais */
a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  color: white;
}

/* Barra de rolagem (WebKit) */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
body::-webkit-scrollbar-thumb {
  background-color: #8D090B;
  border-radius: 5px;
  height: 20px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #E30D10;
}
@media only screen and (max-width: 768px) {
  body::-webkit-scrollbar {
    display: none;
  }
}

/* GENERAL */
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}
#whatsapp-button img {
  width: 40px;
  height: 40px;
}

/* Link “disfarçado” de botão sem alterar cor */
a.button {
  cursor: default;           
  color: inherit;            
  text-decoration: none;     
}
a.button:hover,
a.button:visited,
a.button:active {
  color: inherit;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  #whatsapp-button {
    bottom: 10px;
    right: 10px;
  }
  #whatsapp-button img {
    width: 35px;
    height: 35px;
  }
}

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

/* TEXTs */
h1, h2, h3, h4 {
  text-decoration: none;
  font-weight: 100;
}
.text-center { text-align: center; }
.microtxt {
  font-size: 9px;
  line-height: 140%;
}
.underline { text-decoration: underline; }

/* FONTS */
@font-face {
  font-family: 'noto';
  src: url("../fonts/NotoSerifOriya-Medium.ttf") format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'gotham';
  src: url("../fonts/GOTHAMBOOK.TTF") format('truetype');
  font-display: swap;
}
.fontitle { font-family: 'noto', sans-serif; }
.fontext { font-family: 'gotham', sans-serif; }

/* COLORS */
.bg-black { background-color: black; }
.bg-white { background-color: white; }
.bg-dark-gray { background-color: #333; }
.bg-light-gray { background-color: #F9F9F9; }

.pix-black { color: black; }
.pix-white { color: white; }
.pix-gray { color: #2B3241; }
.pix-light-gray { color: #dadada; }

/* Acessibilidade: foco visível apenas para teclado */
:focus-visible {
  outline: 2px solid #8D090B;
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* Acessibilidade: desativar animações para quem prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
