:root {
  --bs-primary: #144a97 !important;
  --bs-secondary: #dee2e6 !important;
  --bs-tertiary: #d9d9d91a !important;
  --bs-black-rgb: 25, 25, 25;
  --bs-primary-rgb: 20, 74, 151;
  --bs-secondary-rgb: 222, 226, 230;
  --swiper-theme-color: var(--bs-primary);
  --swiper-navigation-size: 35px;
  --bs-gradient: linear-gradient(180deg, rgba(20, 74, 151, 1) 0%, rgb(12, 47, 97) 100%);
}

.inter-<uniquifier > {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.btn-primary {
  --bs-btn-active-bg: #144a97 !important;
  --bs-btn-active-border-color: #144a97 !important;
}

.btn-outline-primary {
  --bs-btn-color: #144a97;
  --bs-btn-border-color: #144a97;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #144a97;
  --bs-btn-hover-border-color: #144a97;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #144a97;
  --bs-btn-active-border-color: #144a97;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #144a97;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #144a97;
  --bs-gradient: none;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}

.fs-1,
.fs-2,
.fs-3,
.fs-4,
.fs-5,
.fs-6 {
  font-weight: 600;
}

/*Fonts*/

body {
  color: #1b1e28;
  background-color: #fafcfe;
  overflow-x: clip;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.nav-link {
  color: #fff;
  position: relative;
  overflow: hidden;
  font-weight: 500;
}
footer .nav-item a,
nav .nav-link span {
  position: relative;
}

footer .nav-item a:after,
nav .nav-link span:after {
  content: "";
  width: 0;
  background: #fff;
  height: 1px;
  position: absolute;
  bottom: -4px;
  left: 0;
  transition: all 0.3s ease-in-out;
}

footer .nav-item a:hover:after,
nav .nav-link:hover span:after {
  width: 100%;
}

.nav-link:focus,
.nav-link:hover {
  color: #fff;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
}

a.btn,
.hover-primary {
  transition: all 0.3s ease-in-out;
}

.hover-primary:hover {
  color: var(--bs-primary) !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 3rem !important;
  }
  .fs-2 {
    font-size: 2.725rem !important;
  }
  .fs-3 {
    font-size: 2.235rem !important;
  }
  .fs-4 {
    font-size: 2rem !important;
  }
  .fs-5 {
    font-size: 1.5rem !important;
  }
  .fs-6 {
    font-size: 1.125rem !important;
  }
}

.py-mid {
  padding-top: 10%;
  padding-bottom: 10%;
}
.py-small {
  padding-top: 5%;
  padding-bottom: 5%;
}
.px-small {
  padding-left: 5%;
  padding-right: 5%;
}

.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
}

.bg-gradient-2 {
  background: linear-gradient(180deg, rgb(12, 47, 97) 0%, rgba(20, 74, 151, 1) 100%);
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.bg-alt {
  background-color: #e6ecf2;
}
.bg-alt-2 {
  background-color: #f2f2f2;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-secondary {
  color: var(--bs-secondary) !important;
}

.text-tertiary {
  color: #1a1a1a !important;
}

.text-alt {
  color: #e6e6e6;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
}

.bg-tertiary {
  background-color: var(--bs-tertiary);
}

.btn {
  font-weight: 400;
  --bs-btn-padding-x: 1.25rem;
  border-radius: var(--bs-border-radius-xxl);
  font-size: 16px;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: #103c7a;
  border-color: #103c7a;
  color: #fff;
}

.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: var(--bs-primary);
}

.btn-secondary:hover {
  background-color: transparent;
  border-color: var(--bs-primary);
  color: var(--bs-secondary);
}

.btn-outline-dark:hover {
  background: #000;
  color: #fff;
}

.btn-dark {
  --bs-btn-bg: #000;
  --bs-btn-border-color: #000;
}

nav {
  z-index: 9;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.no-wrap {
  white-space: nowrap;
}

/*Navbar*/

.center-nav {
  backdrop-filter: blur(10px);
}

#navbar,
#navbarInner {
  transition: all 0.3s ease;
}

#navbar {
  background-color: transparent;
  box-shadow: none;
}

#navbarLogo {
  max-width: 175px;
}

/*Footer*/
.footer-logo {
  max-height: 35px;
  filter: brightness(0) invert(1);
}
.drible-foot {
  max-width: 60px;
}
footer a,
footer p {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
footer a:hover {
  color: var(--bs-secondary);
}
footer svg:hover circle {
  fill: #fff;
}
footer svg:hover g path {
  fill: #191919;
}
footer svg * {
  transition: all 0.3s ease-in-out;
}
.footer-premios img {
  height: 100px;
  width: auto;
}

/*Video Hero*/
.video-background-holder {
  position: relative;
  background-color: black;
  height: 100dvh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.video-background-holder video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.3;
  z-index: 1;
}
.hero-content {
  max-width: 815px;
}
.hero-title {
  font-size: 4em;
}
.contain {
  max-width: 768px;
}
.contain-lg {
  max-width: 1000px;
}
.contain-sm {
  max-width: 550px;
}

/*Counter Section*/
.reps img {
  max-height: 40px;
}

/*Empresa Section*/
#sobre {
  margin-top: -10%;
}
.sobre-img {
  aspect-ratio: 7/8;
  object-fit: cover;
}

/*Produtos*/
.prodThumbs .swiper-slide {
  opacity: 0.4;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.prodThumbs .swiper-slide-thumb-active {
  opacity: 1;
}

/*Form section*/
textarea.form-control {
  min-height: 150px;
}
.wf-group:has(:required) .wf-label:after {
  content: "*";
  color: red;
  margin-left: 0.25rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

.form-control:focus {
  border-color: var(--bs-primary);
}

/*Contact Section*/
#contactos .container > div {
  background: linear-gradient(90deg, var(--bs-primary) 40%, #ffffff00 100%);
}

#contactos iframe {
  width: 55%;
  height: 100%;
  right: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}

#navbar.bg-alt {
  background-color: #191919;
}

@media only screen and (max-width: 1024px) {
  #navbarLogo {
    max-width: 185px;
  }
}

/*Mobile*/
@media only screen and (max-width: 765px) {
  .py-small {
    padding-top: 10%;
    padding-bottom: 10%;
  }
  #navbarLogo {
    max-width: 185px;
  }
  .hero-title {
    font-size: 2.25em;
  }
  #sobre {
    margin-top: 10%;
  }
  .fs-3 {
    font-size: calc(1.65rem + 0.6vw) !important;
  }
}
