html {
  scroll-behavior: smooth;
}

body.copy-protect-enabled {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body.copy-protect-enabled input,
body.copy-protect-enabled textarea,
body.copy-protect-enabled select,
body.copy-protect-enabled option,
body.copy-protect-enabled [contenteditable="true"],
body.copy-protect-enabled .allow-copy {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.global-page-banner {
  background: rgba(6, 12, 34, 0.98);
  padding: 60px 20px;
  text-align: center;
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.global-page-banner-logo-frame {
  display: none;
  padding: 0;
  position: absolute;
  top: 50%;
  right: -8px;
  left: auto;
  transform: translateY(-30%);
  z-index: 1;
  margin-left: 0;
}

.global-page-banner-logo {
  width: clamp(150px, 36vw, 520px);
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0;
  opacity: 0.28;
  filter: brightness(0) saturate(100%) invert(74%) sepia(62%) saturate(560%) hue-rotate(2deg) brightness(94%) contrast(89%);
}

/* >=1601px: mantem a configuracao atual (um logo a direita). */
@media (min-width: 1601px) {
  .global-page-banner-logo-right {
    display: inline-flex;
    right: -8px;
    transform: translateY(-30%);
  }

  .global-page-banner-logo-left {
    display: none;
  }

  .global-page-banner-logo {
    width: clamp(150px, 36vw, 520px);
    opacity: 0.28;
  }
}

/* <1601px: dois logos dourados com borda vermelha arredondada (um de cada lado). */
@media (max-width: 1600px) {
  .global-page-banner {
    gap: 24px;
  }

  .global-page-banner-logo-frame {
    display: inline-flex;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    padding: 8px;
    border: 2px solid rgba(179, 0, 0, 0.55);
    border-radius: 14px;
    box-sizing: border-box;
    z-index: 1;
  }

  .global-page-banner-logo {
    width: 92px;
    opacity: 0.72;
  }
}

@media (max-width: 1400px) {
  .global-page-banner-logo {
    width: 82px;
  }
}

@media (max-width: 1200px) {
  .global-page-banner-logo {
    width: 74px;
  }
}

@media (max-width: 992px) {
  .global-page-banner-logo {
    width: 62px;
  }
}

@media (max-width: 768px) {
  .global-page-banner {
    gap: 14px;
  }

  .global-page-banner-logo-frame {
    padding: 6px;
    border-radius: 12px;
  }

  .global-page-banner-logo {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .global-page-banner {
    gap: 10px;
  }

  .global-page-banner-logo-frame {
    padding: 5px;
    border-radius: 10px;
  }

  .global-page-banner-logo {
    width: 42px;
  }
}

.global-page-banner h1 {
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: 1px;
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .global-page-banner h1 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .global-page-banner h1 {
    font-size: 24px;
    letter-spacing: 0.5px;
  }
}

body {
  /* background: url('../img/background/hero-bg.png') no-repeat center center fixed; */
  background-size: cover;
  /* color: #000000; */
  background-color: #021131;
  font-family: "Open Sans", sans-serif;
}

::-webkit-scrollbar{
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #184f8f;
}

a {
  color: #4bb1ec;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #2157a6;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

.landing-typography p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #64666d;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #0e1b4d;
}

.main-page {
  margin-top: 70px;
}

.wow {
  visibility: hidden;
}

/* Prelaoder */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #021131;
  transition: all 0.6s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  box-sizing: border-box;
}

#preloader .preloader-content {
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader .preloader-logo {
  width: 350px;
  height: 350px;
  max-width: 100%;
  max-height: 100%;
  display: block;
  animation: preloader-pulse 1.6s ease-in-out infinite;
}

@keyframes preloader-pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  #preloader .preloader-logo {
    animation: none;
  }
}

@media (max-width: 767px) {
  #preloader .preloader-content,
  #preloader .preloader-logo {
    width: 260px;
    height: 260px;
  }
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #1a4a93;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s ease-in-out;
}

.back-to-top i {
  font-size: 24px;
  padding-top: 6px;
}

.back-to-top:focus {
  background: #2157a6;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #2157a6;
  color: #fff;
}

/* Sections Header
--------------------------------*/

.section-header {
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}

.section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #4bb1ec;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

.section-color1-bg {
  background-color: #f6f7fd;
}

.section-color2-bg {
  background-color: #fff;
}

/* Bootstrap 5 form/button alignment */
:root {
  --bs-primary: #4bb1ec;
  --bs-primary-rgb: 75, 177, 236;
  --bs-success: #4bb1ec;
  --bs-success-rgb: 75, 177, 236;
  --bs-border-radius: 0.5rem;
  --bs-btn-border-radius: 0.5rem;
}

.btn {
  --bs-btn-border-radius: 0.5rem;
}
