@charset "utf-8";

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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;
}

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: #444;
  border-radius: 5px;
  height: 20px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #725500;
}
@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;
}

a.button {
  cursor: default;           
  color: inherit;            
  text-decoration: none;     
}
a.button:hover,
a.button:visited,
a.button:active {
  color: inherit;
  text-decoration: none;
}

.bt-traced-black {
  min-width: 100%;
  background: none;
  border: 2px solid black;
  border-radius: 7px;
  color: black;
  padding: 10px 20px;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  letter-spacing: 3px;
}
.bt-traced-black:hover {
  background: black;
  color: white;
  transition: all 0.3s ease;
}
.bt-traced-yellow {
  min-width: 100%;
  background: none;
  border: 2px solid #fdbd10;
  border-radius: 7px;
  color: #fdbd10;
  padding: 10px 20px;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  letter-spacing: 3px;
}
.bt-traced-yellow:hover {
  background: #fdbd10;
  color: black;
  transition: all 0.3s ease;
}
.bt-yellow {
  border: none;
  border-radius: 7px;
  min-width: 100%;
  background: #fdbd10;
  color: black;
  padding: 10px 20px;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  letter-spacing: 3px;
}
.bt-yellow:hover {
  background: black;
  color: #fdbd10;
  transition: all 0.3s ease;
}
.bt-black {
  border: none;
  border-radius: 7px;
  min-width: 100%;
  background: black;
  color: white;
  padding: 10px 20px;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  letter-spacing: 3px;
}
.bt-black:hover {
  background: #fdbd10;
  color: black;
  transition: all 0.3s ease;
}
.bt-card {
  border: none;
  border-radius: 7px;
  min-width: 100%;
  background: white;
  color: black;
  padding: 10px 20px;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  letter-spacing: 3px;
}
.bt-card:hover {
  background: #fdbd10;
  color: black;
  transition: all 0.3s ease;
}
.bt-home {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: #fff;
  font-size: 22px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.bt-home:hover {
  background-color: #777;
}

.bt-case-01 {
  min-width: 100%;
  background: none;
  border: 2px solid #e0ff59;
  border-radius: 7px;
  color: #e0ff59;
  padding: 10px 20px;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  letter-spacing: 3px;
}
.bt-case-01:hover {
  background: #e0ff59;
  color: black;
  transition: all 0.3s ease;
}
.bt-case-02 {
  min-width: 100%;
  background: none;
  border: 2px solid #02cab4;
  border-radius: 7px;
  color: #02cab4;
  padding: 10px 20px;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  letter-spacing: 3px;
}
.bt-case-02:hover {
  background: #02cab4;
  color: black;
  transition: all 0.3s ease;
}
.bt-case-03 {
  min-width: 100%;
  background: none;
  border: 2px solid #ffac0e;
  border-radius: 7px;
  color: #ffac0e;
  padding: 10px 20px;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  letter-spacing: 3px;
}
.bt-case-03:hover {
  background: #ffac0e;
  color: black;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 768px) {
	.bt-traced-yellow, .bt-traced-black, .bt-yellow, .bt-case-01, .bt-case-02, .bt-case-03 {
	  font-size: 16px;
	}
}


@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;
}

h1, h2, h3, h4, h5 {
  text-decoration: none;
}

.text-center { text-align: center; }
.microtxt {
  font-size: 9px;
  line-height: 140%;
}
.underline { text-decoration: underline; }

@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; }

.fw100{font-weight: 100;}
.fw300{font-weight: 300;}
.fw500{font-weight: 500;}
.fw700{font-weight: 700;}
.fw900{font-weight: 900;}

.bg-black { background-color: black; }
.bg-white { background-color: white; }
.bg-dark-gray { background-color: #333; }
.bg-light-gray { background-color: #F9F9F9; }
.bg-yellow { background-color: #fdbd10; }

.pix-black { color: black; }
.pix-white { color: white; }
.pix-dark-gray { color: #333; }
.pix-light-gray { color: #F9F9F9; }
.pix-yellow { color: #fdbd10; }

:focus-visible {
  outline: 2px solid #8D090B;
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

@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;
  }
}