:root {
  --husq: #1F2742;
  --blue: #12406E;
  --purple: #990076;
  --pink: rgb(248, 49, 131);
  --red: #dc3545;
  --orange: #F58201;
  --orange-dark: #f25420;
  --yellow: #FFCC00;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #f4f4f4;
  --gray-dark: #404040;
  --primary: #0095DB;
  --secondary: #9B9B9B;
  --success: #49BD47;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #F9F9F9;
  --dark: #424242;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "HusqvarnaGothic Regular", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

@font-face {
  font-family: "HusqvarnaGothic Regular";
  src: url("../font/HusqvarnaGothic-Regular.ttf");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "HusqvarnaGothic Bold";
  src: url("../font/HusqvarnaGothic-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Thin.ttf");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Light.ttf");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-SemiBold.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-ExtraBold.ttf");
  font-weight: 900;
  font-style: normal;
}

*::before,
*::after {
  box-sizing: border-box;
}

/* ========================== */
/* HTML */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  scroll-behavior: smooth;
  font-size: 17px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
}

body {
  margin: 0;
  font-family: var(--font-family-sans-serif);
  font-weight: normal;
  line-height: 25px;
  color: #505050;
  text-align: left;
  background-color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--husq);
}

a:focus {
  outline: none !important; /* Remove a borda de foco */
  box-shadow: none !important; /* Remove qualquer sombra ao redor do link */
}

.end-0 {
  right: 0 !important;
}

.top-0 {
  top: 0 !important;
}

.z-index {
  z-index: 999;
}

.overflow-hidden {
  overflow: hidden;
}

.badge-husq {
  border-radius: 10px;
  background: #EBEFFF;
  color: #1F2742;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  padding: 10px;
}

.container-fluid {
  padding-right: 80px;
  padding-left: 80px;
}

.card {
  border-radius: 10px;
  background: #FFF;
  border: 0;
  padding: 20px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}

/* Section */
section {
  padding: 120px 0;
}

.text-primaria {
  color: rgba(var(--primaria)) !important;
}

/* Button */
.btn {
  font-weight: 500;
  border-radius: 20px;
  padding: 15px 70px;
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.20);
  transition: all 0.3s;
}

.btn:hover {
  box-shadow: none;
  border-radius: 30px;
  transition: all 0.3s;
}

.btn.btn-sm {
  line-height: 35px;
  padding: 2px 40px;
  font-size: 13px;
}

.btn.btn-lg {
  font-size: 16px;
}

.btn.btn-husq {
  background: var(--husq);
  color: #FFFFFF;
  transition: all 0.3s;
}

.btn.btn-blue {
  background: var(--blue);
  color: #FFFFFF;
  transition: all 0.3s;
}

.btn.btn-orange {
  background: var(--orange);
  color: #FFFFFF;
  transition: all 0.3s;
}

.btn.btn-orange-dark {
  background: var(--orange-dark);
  color: #FFFFFF;
  transition: all 0.3s;
}

/* ========================================== */
/* Menu */
.navbar {
  background-color: transparent;
  animation: none;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  background-color: var(--husq);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 2rem;
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #bfceff;
}

.navbar-expand-lg .navbar-nav .nav-link.active {
  color: #bfceff;
}

header .navbar .navbar-toggler {
  border-color: transparent;
  padding: 15px;
}

button.navbar-toggler:focus {
  outline: none;
}

/* AnimaçÃo menu mobile */
.navbar-toggler-animation {
  width: 27px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}

.navbar-toggler-animation span {
  width: 100%;
  height: 2px;
  background: #FFF;
  display: block;
  position: absolute;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
}

.navbar-toggler-animation span:nth-child(1) {
  top: 10%;
}

.navbar-toggler-animation span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler-animation span:nth-child(3) {
  bottom: 10%;
}

.navbar-toggler-animation.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler-animation.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler-animation.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.navbar-sticky-on {
  position: fixed;
  z-index: 1020;
  top: 0;
  left: 0;
  right: 0;
  animation: fadeInDown 1s;
  animation-fill-mode: both;
  width: 100%;
  padding: 15px 0;
  background-color: rgba(31, 39, 66, 0.8);
  backdrop-filter: blur(20px);
}

/* Footer */
footer {
  background: var(--husq);
  color: #9B9B9B;
  padding: 60px 0;
}

footer p {
  font-size: 18px;
  line-height: 30px;
}

footer ul li .nav-link {
  padding-left: 0;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  color: #9B9B9B;
}

footer ul li .nav-link:hover {
  color: #FFF;
}

footer a.rede-social {
  display: block;
  color: rgba(255, 255, 255, 1);
  width: 55px;
  height: 60px;
  border-radius: 20px;
  border: 2px solid #FFF;
  background: rgba(255, 255, 255, 0.00);
  text-align: center;
  line-height: 70px;
  transition: all 0.3s;
}

footer a.rede-social:hover {
  border-radius: 25px;
  transition: all 0.3s;
}

footer a.rede-social i {
  font-size: 34px;
}

/* Form */
.form-control {
  height: 50px;
  border-radius: 10px;
  padding: 0.375rem 20px;
  font-weight: 300;
}

.form-control-file {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* Form outline */
.form-control.outline {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.form-control.outline::placeholder {
  color: #fff;
}

/* Media MAX */
@media (max-width: 1320px) {
  .navbar .navbar-text a img {
    height: 20px;
    margin-top: 9px !important;
    margin-right: 8px !important;
  }
}

@media (max-width: 1130px) {
  .navbar-brand img {
    height: 55px;
  }
  .navbar .container-fluid {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 991px) {
  header .navbar-top {
    display: none;
  }

  header .topo-logo img {
    height: 35px;
  }

  .container-fluid {
    padding-right: 20px;
    padding-left: 20px;
  }

  section {
    padding: 40px 0;
  }

  .navbar-expand-lg {
    padding: 5px 15px;
  }

  .navbar-nav .nav-link {
    padding: 0;
    line-height: 40px !important;
  }
}

@media (max-width: 450px) {
  .btn {
    font-size: 15px;
  }
  .header .navbar-top {
    display: none !important;
  }
  .navbar-expand-lg {
    padding: 15px;
  }
}

/* Media MIN */
@media (min-width: 1200px) {
  .container {
    max-width: 1300px;
  }
}

@media (min-width: 992px) {
  .d-sm-inline-block {
    display: inline-block !important;
  }
}

.showcase-bg1 {
  background-size: cover;
}