/* CORES */

:root {

  /* FUNDOS */

  --primary-color: #026c9d;
  --secondary-color: white;
  --tertiary-color: #282828;
  --quartenary-color: #5d101c;

  /* TEXTO */

  --primary-text-color: #282828;
  --secondary-text-color: #FFFFFF;
  --tertiary-text-color: #cecece;
  --quartenary-text-color: #878787;
}

@font-face {
  font-family: 'Poppins';
  src: url(../../fontes/Poppins/Poppins-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: 'Poppins';
  src: url(../../fontes/Poppins/Poppins-SemiBold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: 'Poppins';
  src: url(../../fontes/Poppins/Poppins-ExtraBold.ttf);
  font-weight: 900;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: #f8f9fb;
  color: black;
}


* {
  font-family: 'Poppins';
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  scroll-padding-top: 80px;
}

header {
  height: auto;
  width: 100%;
  z-index: 1050;
  background-color: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
}

.header__topbar {
  padding: 6px 80px;
  background-color: var(--quartenary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__topbar .row {
  align-items: center;
}

.header__topbar .topbar__item {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.header__topbar .topbar__item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 200ms;
}

.header__topbar .topbar__item a:hover {
  color: white;
}

.header__topbar .topbar__item i {
  font-size: 16px;
  margin-right: 6px;
}

.header__navbar {
  padding: 0px 80px;
  display: grid;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  grid-template-columns: 210px 1fr 230px;
  height: 75px;
  width: 100%;
}



nav.menu ul {
  margin: 0;
  padding: 0;
}

nav.menu ul li {
  display: inline;
}

.header__navbar .logo img {
  width: 60px;
}

nav.menu li>a {
  margin: auto 5px;
  padding: 5px;
  color: rgb(41, 41, 41);
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  transition: none;
  font-weight: 700;
}

nav.menu li>a:hover {
  color: var(--primary-color);
}

nav.menu li>a::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 40px;
  height: 1px;
  background-color: var(--primary-color);
  transition: 1s;
  clip-path: circle(0 at 50%);
}

nav.menu li>a:hover::before {
  clip-path: circle(100%);
  display: none;
}

nav.menu li {
  position: relative;
}

nav.menu li>a:hover~.nav__submenu {
  display: block;
}

nav.menu li>a:active~.nav__submenu {
  display: block;
}

nav.menu li .nav__submenu {
  background-color: white;
  position: absolute;
  left: 50%;
  width: max-content;
  margin-top: 8px;
  transform: translateX(-50%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  display: none;
  overflow-y: auto;
  max-height: 400px;
  padding: 8px;
}
nav.menu li .nav__submenu:hover {
  display: block;
}

nav.menu li .nav__submenu::-webkit-scrollbar {
  background-color: silver;
  width: 5px;
}

nav.menu li .nav__submenu::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

nav.menu li .nav__submenu a {
  display: block;
  padding: 9px 16px;
  text-align: left;
  color: var(--primary-text-color);
  font-size: 13px;
  text-decoration: none;
  border-radius: 6px;
}

nav.menu li .nav__submenu a:hover {
  background-color: var(--primary-color);
  color: white;
}

.txt-underline {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #ff4161;
}

.actions-menu a {
  padding: 13px 30px;
  width: 100%;
  display: block;
  border-radius: 5px;
  border-radius: 100px;
  text-transform: uppercase;
  cursor: pointer;
  margin: auto 0;
  text-align: center;
  text-decoration: none
}

.actions-menu a i {
  font-size: 18px
}

.actions-menu a:hover {
  color: white
}

.btn-call {
  color: white;
  background-color: var(--primary-color);
  transition: 400ms
}

.header__actions a {
  border-radius: 10px;
  padding: 10px 15px;
  width: 100%;
  border: none !important;
  text-transform: uppercase;

}

.btn-call:hover {
  background-color: #292828;
}

.txt-center {
  text-align: center;
}

.txt-blue {
  color: var(--primary-color);
}

.txt-castanho {
  color: var(--quartenary-color);
}

.paragraph {
  margin-bottom: 25px;
  color: var(--primary-text-color);
}

.hide {
  display: none;
}


.btn-menu-toggle {
  background: transparent;
  font-size: 2.5em;
  border: none;
  color: var(--primary-color);
  display: none;
}

/*
BANNERS
*/

.hero,
.hero-color {
  width: 100vw;
  position: relative;
}

.hero__slide {
  width: 100vw;
  height: 90dvh;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.hero-color {
  background: var(--primary-color);
}

.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, rgba(1, 63, 92, 0.75) 0%, rgba(2, 108, 157, 0.55) 100%);
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero__slide.hero__slide--overlay::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, rgba(1, 63, 92, 0.75) 0%, rgba(2, 108, 157, 0.55) 100%);
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero .hero__content {
  z-index: 10;
  position: relative;
  padding: 140px 0px 170px 0px;

}

.hero-color .hero__content {
  padding: 210px 0px 160px 0px;
  z-index: 10;
  position: relative
}

.hero__slide .hero__content {
  z-index: 10;
  width: 100%;
  position: absolute;
  padding: 0 80px 0 80px;
  top: 50%;
  color: #fff;
  transform: translateY(-50%);
}

.hero__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.hero .hero__title,
.hero-color .hero__title,
.hero__slide .hero__title,
.hero__title {
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 900;
  line-height: 56px;
  color: white;
}

.hero .hero__description,
.hero-color .hero__description,
.hero__slide .hero__description {
  font-size: 18px;
  color: rgb(241, 241, 241);
  margin-top: 10px;
}

.hero {
  position: relative;
  overflow-x: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 56px;
  background: #f8f9fb;
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 20;
}

.hero>img {
  animation: hero-hide 800ms;
  animation-fill-mode: forwards;
}

.hero>img.hero__image--active {
  animation: hero 800ms;
  animation-fill-mode: forwards;
}

@keyframes hero {
  from {
    right: -100%;
    position: absolute;
  }

  to {
    right: 0;
    display: block;
    position: absolute;
  }
}

@keyframes hero-hide {
  from {
    left: 0%;
    position: absolute;
  }

  to {
    left: -100%;
    position: absolute;
  }
}

.page-section {
  padding: 80px 0;
}


.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: white;
  padding: 14px 32px;
  width: max-content;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 36px;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(2, 108, 157, 0.45);
  transition: background-color 200ms, box-shadow 200ms, transform 200ms;
}

.hero__cta:hover {
  background-color: #015a84;
  box-shadow: 0 6px 28px rgba(2, 108, 157, 0.55);
  transform: translateY(-2px);
  color: white;
}

.hero__slide .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero img.hero__image {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-hero {
  height: 90dvh;
  overflow: hidden;
}

.home-hero .splide {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  padding: 0;
}

img.imgcover {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.about-section__image {
  display: block;
  margin: auto;
  width: 100%;
  border-radius: 40px;
}

.about-section .row {
  align-items: center !important;
}

.section__title {
  font-size: 2.7em;
  text-transform: uppercase;
  color: var(--primary-text-color);
  margin-bottom: 20px;
  line-height: 50px;
  font-weight: 700;
}

.values-section {
  padding: 0px 0;
  text-align: center;
}

.value-card {
  background-color: white;
  border-radius: 24px;
  padding: 48px 32px 36px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow 300ms, transform 300ms;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--quartenary-color));
}

.value-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.11);
  transform: translateY(-6px);
}

.value-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(2, 108, 157, 0.09), rgba(93, 16, 28, 0.07));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card__icon img {
  width: 42px;
}

.value-card__title {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 16px;
  position: relative;
}

.value-card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: var(--quartenary-color);
}

.value-card__body p {
  text-align: center;
  overflow-wrap: break-word;
  color: var(--quartenary-text-color);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.diferencial-card {
  background-color: white;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 4px solid var(--primary-color);
  transition: box-shadow 200ms, transform 200ms;
}

.diferencial-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.11);
  transform: translateY(-3px);
}

.diferencial-card__icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.diferencial-card__title {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-text-color);
  margin-bottom: 8px;
}

.diferencial-card__body {
  font-size: 13px;
  color: var(--quartenary-text-color);
  line-height: 1.7;
  margin: 0;
}

footer {
  background-color: #0d1b2a;
  color: rgba(255, 255, 255, 0.75);
}

.footer__body {
  padding: 60px 0 40px;
  position: relative;
  background-image: url('/images/site/IMG-20230710-WA0034.jpg');
  background-size: cover;
  background-position: center;
}

.footer__body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(13, 27, 42, 0.88);
  pointer-events: none;
}

.footer__body .container {
  position: relative;
  z-index: 1;
}

.footer__body .social-links {
  justify-content: flex-start;
}

.footer__body .footer__site-name {
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 4px;
}

.footer__body .footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.footer__body .footer__logo {
  width: 70px;
  margin-bottom: 20px;
}

.footer__body .footer__col-heading {
  font-size: 13px;
  color: white;
  margin-bottom: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__body .footer__nav ul {
  margin: 0;
  padding: 0;
}

.footer__body .footer__nav ul a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  padding: 5px 0;
  transition: color 200ms;
}

.footer__body .footer__nav ul a:hover {
  color: white;
}

footer .btn-scroll-top {
  display: block;
  top: 0;
  bottom: 0;
  padding: 0px 18px;
  position: absolute;
  right: 20px;
  margin: 10px 0;
  font-size: 1.2em;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: white;
  border: none;
  transition: background-color 200ms;
}

footer .btn-scroll-top:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer__contact {
  list-style: none;
  display: block;
  margin: 0;
  padding: 0;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__contact i {
  margin-top: 2px;
  flex-shrink: 0;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms;
}

.footer__contact a:hover {
  color: white;
}

footer .footer__bottom {
  padding: 14px 0 0;
  background-color: var(--quartenary-color);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

input.input-error,
textarea.input-error,
select.input-error {
  border-color: #e03131 !important;
  background-color: #fff5f5 !important;
}

.input-group {
  margin: 0 0 18px;
}

.input-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-text-color);
  letter-spacing: 0.02em;
}

.no-negrit label {
  font-weight: normal !important;
}

.inp-d-flex {
  display: flex;
  justify-content: left;
}

form input,
form textarea,
form select {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-text-color);
  background-color: #f9fafb;
  border: 1.5px solid #dde1e7;
  border-radius: 8px;
  resize: none;
  transition: border-color 180ms, background-color 180ms, box-shadow 180ms;
  -webkit-appearance: none;
  appearance: none;
}

form input::placeholder,
form textarea::placeholder {
  color: #aab0ba;
}

form input[type=checkbox] {
  width: auto;
  display: inline;
  margin: 10px 5px 10px 10px;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

form input[type=radio] {
  width: auto;
  display: inline-block;
  margin-left: 10px;
  -webkit-appearance: radio;
  appearance: radio;
}

form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23878787' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--primary-color);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(2, 108, 157, 0.12);
  outline: 0;
}

form textarea {
  min-height: 130px;
}

/* OPTION TABS (shared: radio/checkbox tab-style selectors) */

.option-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.option-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1.5px solid #dde1e7;
  background: #f9fafb;
  font-size: 13px;
  font-weight: 600;
  color: var(--quartenary-text-color);
  cursor: pointer;
  transition: border-color 160ms, background-color 160ms, color 160ms;
  -webkit-user-select: none;
  user-select: none;
}

.option-tab i {
  font-size: 16px;
}

.option-tab:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: #f0f8fd;
}

.option-tab.is-active {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: white;
}

.option-tab input[type="radio"],
.option-tab input[type="checkbox"] {
  display: none;
}

.field-error {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 12.5px;
  font-weight: 500;
  color: #e03131;
  line-height: 1.4;
}

.errorsform {
  display: none;
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 12.5px;
  font-weight: 500;
  color: #e03131;
  line-height: 1.4;
}

.section__eyebrow {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

/* PAGE BANNER (inner pages) */

.page-banner {
  background: linear-gradient(135deg, #013f5c 0%, var(--primary-color) 100%);
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}

/* decorative circle for gradient-only variant */
.page-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 56px;
  background: #f8f9fb;
  clip-path: ellipse(60% 100% at 50% 100%);
}

/* image variant — set background-image via inline style */
.page-banner--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner--image::before {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(1, 63, 92, 0.75) 0%, rgba(2, 108, 157, 0.55) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner .page-banner__eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.page-banner .page-banner__title {
  font-size: 2.6em;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.page-banner .page-banner__description {
  margin-top: 12px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}
.services-section{
  padding-top: 0px !important;
}
.splide-services .splide__pagination {
  bottom: -40px !important;
}

.splide-services .splide__pagination__page.is-active {
  background: var(--primary-color);
}

.splide-services .splide__arrow {
  font-size: 1.5em;
  background: var(--primary-color);
}

.splide-services .splide__arrow svg {
  fill: #fff
}

.splide-services .splide__arrow--next {
  right: -30px;
}

.splide-services .splide__arrow--prev {
  left: -30px;
}

.service-card {
  border: 1px solid rgb(235, 235, 235);
  border-radius: 10px;
  position: relative;
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 350px;
  transition: box-shadow 200ms, transform 200ms;
}

.service-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

.service-card__cover {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.service-card__cover img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 300ms;
}

.service-card:hover .service-card__cover img {
  transform: scale(1.04);
}

.service-card__logo {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: -35px;
}

.service-card__logo img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  display: inline-block;
  object-fit: contain;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.service-card__body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}

.service-card__title {
  font-size: 0.95em;
  text-align: center;
  color: var(--primary-text-color);
  font-weight: 700;
  flex: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-card__description {
  padding: 0;
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  color: var(--quartenary-text-color);
  flex: 1;
}

.service-card__actions {
  padding: 0;
}

.service-card__body a {
  min-width: 220px;
  margin: 0 auto;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background-color 200ms, color 200ms;
}

.service-card__body a.btn:hover {
  background: var(--primary-color) !important;
  color: white !important;
}

.service-card__body a .mdi {
  font-size: 18px;
  transition: transform 200ms;
}

.service-card__body a:hover .mdi {
  transform: translateX(3px);
}

.service-card__overlay {
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.service-card__overlay .service-card__description {
  color: black;
}

.protect-section {
  background-color: #080827;
  background-image: url(../../images/site/IMG-20230710-WA0034.jpg);
  background-attachment: fixed;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.protect-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 27, 61, 0.8);
  z-index: 0;
}

.protect-section div {
  z-index: 100
}

.protect-section .section__title,
.protect-section p {
  color: white;
}

.row.center {
  align-items: center;
}

.section__media {
  display: block;
  margin: auto;
  width: 100%;
  object-fit: cover;
  border: 5px solid white;
  border-radius: 30px;
}

/*
WHATSAPP FLOAT
*/
.whatsapp-float {
  position: fixed;
  bottom: 55px;
  right: 25px;
  background-color: transparent;
  border: none;
  outline: none;
  display: block;
  cursor: pointer;
  background-color: #2ad864;
  color: white;
  border-radius: 100px;
  line-height: 60px;
  width: 60px;
  height: 60px;
  animation-name: shadow-pulse;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  text-align: center;
  z-index: 999
}

.whatsapp-float i {
  font-size: 2em;
}

.whatsapp-float:hover {
  color: white;
}

.btn-see-more {
  padding: 10px 15px;
  display: block;
  color: white;
  background-color: var(--primary-color);
  margin: 10px;
  border-radius: 5px;
}

.btn-see-more:hover {
  background-color: white;
  color: var(--primary-color);
}

.btn-see-more.disabled {
  background-color: rgb(217, 217, 217);
  color: rgb(80, 80, 80);
  cursor: default;
}

.newsletter-section {
  padding: 50px 0;
  background-color: #fff;
}

.newsletter-section h2 {
  color: white;
  font-weight: 700;
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
}

.newsletter-section__row {
  color: white;
  background-color: var(--primary-color);
  padding: 60px;
  border-radius: 40px;
  display: flex;
  align-items: center;
}

.newsletter-field {
  margin-bottom: 12px;
}

.newsletter-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.newsletter-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 15px;
  outline: none;
  transition: border-color 200ms, background-color 200ms;
}

.newsletter-field input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-field input:focus {
  border-color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.22);
}

.lf-newsleeter {
  margin: 10px;
}

.lf-newsleeter label {
  display: none;
}

/*REDES SOCIAIS*/

header .social-links {
  justify-content: flex-end;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.social-links a {
  display: block;
  width: 30px;
  height: 30px;
  color: white;
  border-radius: 100px;
  margin: auto 3px;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
}

.social-links a:hover {
  color: rgb(235, 235, 235);
}

.social-facebook {
  background-color: #395693;
}

.social-twitter {
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-youtube-play {
  background-color: #ff0000;
}

.social-envelope {
  background-color: #FF4500;
}

.social-tiktok {
  background-color: #131313;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-whatsapp {
  background-color: #25D366;
}

.social-linkedin {
  background-color: #0073AF;
}

/* BOTÕES */

/* BUTTONS */

.btn {
  display: inline-block;
  width: max-content;
  text-align: center;
  margin: 15px 0;
  padding: 12px 32px;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 200ms, color 200ms, border-color 200ms, filter 200ms;
}

.btn.center {
  margin: auto;
}

.btn:hover {
  filter: brightness(0.88);
}

.btn-rounded {
  border-radius: 100px;
}

/* BTN BORDER (outline base) */

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

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

/* BTN MONO */

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

.btn-border-mono {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-border-mono:hover {
  background-color: #fff;
  color: var(--primary-color);
  filter: none;
}

/* BTN GREEN */

.btn-green {
  background-color: #27ae60;
}

.btn-border-green {
  background-color: transparent;
  border-color: #27ae60;
  color: #27ae60;
}

.btn-border-green:hover {
  background-color: #27ae60;
  color: #fff;
  filter: none;
}

/* BTN RED */

.btn-red {
  background-color: #c0392b;
}

.btn-border-red {
  background-color: transparent;
  border-color: #c0392b;
  color: #c0392b;
}

.btn-border-red:hover {
  background-color: #c0392b;
  color: #fff;
  filter: none;
}

/* BTN BLUE */

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

.btn-blue:hover {
  background-color: rgb(21, 140, 195);
  color: #fff;
  filter: none;
}

.btn-border-blue {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-border-blue:hover {
  background-color: var(--primary-color);
  color: #fff;
  filter: none;
}

/* BTN PURPLE */

.btn-purple {
  background-color: #8e44ad;
}

.btn-border-purple {
  background-color: transparent;
  border-color: #8e44ad;
  color: #8e44ad;
}

.btn-border-purple:hover {
  background-color: #8e44ad;
  color: #fff;
  filter: none;
}

/* BTN YELLOW */

.btn-yellow {
  background-color: #edbd00;
  color: #000;
}

.btn-border-yellow {
  background-color: transparent;
  border-color: #edbd00;
  color: #edbd00;
}

.btn-border-yellow:hover {
  background-color: #edbd00;
  color: #000;
  filter: none;
}

.aniright {
  padding-left: 7px;
  position: absolute;
  transition: 400ms;
}

button:hover .aniright {
  padding-left: 16px;
}

.btn-shine {
  cursor: pointer;
  position: relative;
  transition: 400ms;
  width: 260px;
  overflow: hidden;
}

.btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -270px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, .4), transparent);
  background: -webkit-linear-gradient(to left, rgba(255, 255, 255, .4), transparent);
  background: -o-linear-gradient(to left, rgba(255, 255, 255, .4), transparent);
  background: -moz-linear-gradient(to left, rgba(255, 255, 255, .4), transparent);
  transform: skew(-20deg);
}

.btn-shine:hover:before {
  animation: effect 400ms ease-in-out;
}

.cookies-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 9999999;
  max-width: 680px;
  width: calc(100% - 32px);
  animation: slideFromBottom 400ms ease-out;
}

.cookies-banner__icon {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.cookies-banner__text {
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
}

.cookies-banner__text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.cookies-banner__btn {
  flex-shrink: 0;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 200ms;
  white-space: nowrap;
}

.cookies-banner__btn:hover {
  background-color: #015a84;
}

.alert-form {
  position: fixed;
  top: 150px;
  right: 40px;
  padding: 15px;
  width: max-content;
  border-radius: 3px;
  z-index: 99999 !important;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  display: none;
  cursor: pointer;
}

.alert-form * {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.alert-form i {
  margin-right: 8px;
}

.alert-form.success-form-alert {
  background-color: #27ae60;
  color: white;
}

.alert-form.error-form-alert {
  background-color: #e22929;
  color: white;
}

.alert-form::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  background-color: rgba(255, 152, 152, 0.877);
  width: 100%;
  animation: border-width 3.5s linear;
}

.alert-form.success-form-alert::before {
  background-color: rgba(152, 255, 166, 0.877);
}

.alert-form.error-form-alert::before {
  background-color: rgba(255, 152, 152, 0.877);
}

.btn-menu-close {
  font-size: 2em;
  color: var(--primary-color);
  background-color: white;
  padding: 20px;
  position: absolute;
  top: -10px;
  right: 0px;
  display: none;
}


.page-loader {
  display: flex;
  display: -ms-flex;
  position: fixed;
  width: 100vw;
  height: 100dvh;
  top: 0px;
  left: 0px;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
  transition-duration: .8s;
  background-color: var(--primary-color);
}

.page-loader.hide {
  transform-origin: bottom;
  transition-delay: 0s, 10ms, .8s;
  transition-property: transform, opacity, z-index;
  transform: translateY(100dvh);
  opacity: 0;
  z-index: -9999;
}

.page-loader .loader {
  width: 100px;
  height: 100px;
  border: 4px solid white;
  border-radius: 100px;
  animation: loader 1s linear infinite;
  border-left-color: transparent;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .page-banner {
    padding: 50px 0 100px;
  }

  .page-banner .page-banner__title {
    font-size: 1.5em;
  }

  .page-banner .page-banner__description {
    font-size: 14px;
  }
.footer__contact li{
  justify-content: center;
}
.services-section{
  padding-bottom: 80px !important;
}
}

@media (max-width: 460px) {
  .page-banner .page-banner__title {
    font-size: 1.3em;
  }
}

@keyframes slideFromBottom {
  from {
    bottom: -100px;
  }

  to {
    bottom: 0;
  }
}

@keyframes effect {
  100% {
    left: 178px;
  }
}

@keyframes loader {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes border-width {
  from {
    width: 100%;
  }

  to {
    width: 0;
  }
}

@keyframes shadow-pulse {
  from {
    box-shadow: 0px 0px 0px 0px rgba(44, 166, 57, .8);
  }

  to {
    box-shadow: 0px 0px 0px 16px rgba(44, 166, 57, 0);
  }
}

@media (max-width:1200px) {
  .header__topbar {
    display: none;
  }

  .header__actions a {
    display: none;
  }

  .btn-menu-toggle {
    display: block;
  }

  .btn-menu-close {
    display: initial;
  }

  .header__navbar {
    padding: 5px 80px;
    display: flex;
    justify-content: space-between;
  }

  .header__navbar nav.menu {
    overflow-y: auto;
    margin-top: 60px;
    height: 350px;
    padding-bottom: 40px;
  }

  .header__navbar .header__drawer {
    position: fixed;
    right: -105%;
    width: 300px;
    top: 0;
    background-color: #ffffff;
    height: 100%;
    transition: right 300ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99999999;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  }

.header__navbar .header__drawer.active {
    right: 0;
  }

  .btn-menu-close {
    align-self: flex-end;
    font-size: 1.6em;
    color: var(--primary-text-color);
    padding: 16px 16px 8px;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    margin-top: 20px;
  }

  .header__navbar nav.menu {
    flex: 1;
    overflow-y: auto;
    margin-top: 60px;
    height: auto;
    padding-bottom: 0;
  }

  nav.menu ul li {
    display: block;
  }

  nav.menu li>a::before {
    display: none;
  }

  nav.menu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 14px;
    text-align: left;
    color: var(--primary-text-color);
    border-bottom: 1px solid #f0f0f0;
  }

  nav.menu li a:hover,
  nav.menu li a:active {
    background-color: #f0f8fd;
    color: var(--primary-color);
  }

  .nav__chevron {
    font-size: 18px;
    transition: transform 250ms;
    flex-shrink: 0;
  }

  nav.menu li.has-submenu.open > a .nav__chevron {
    transform: rotate(180deg);
  }

  nav.menu li .nav__submenu {
    background-color: #f8f9fb;
    position: relative;
    left: 0;
    width: auto;
    margin-top: 0;
    transform: none;
    display: none;
    border-top: 1px solid #eef0f3;
    box-shadow: none;
    border-radius: 0;
    padding: 4px 0;
  }

  nav.menu li.has-submenu:not(.open):hover > .nav__submenu{
    display: none;
  }

  nav.menu li.has-submenu.open .nav__submenu {
    display: block;
  }

  nav.menu li .nav__submenu a {
    padding: 11px 20px 11px 32px;
    font-size: 13px;
    border-radius: 0;
    color: var(--quartenary-text-color);
    border-bottom: 1px solid #f0f0f0;
  }

  nav.menu li .nav__submenu a:last-child {
    border-bottom: none;
  }

  nav.menu li .nav__submenu a:hover {
    background-color: #e6f3fb;
    color: var(--primary-color);
  }

  .hero .hero__content,
  .hero-color .hero__content {
    padding: 80px 0px 100px 0px;
  }

}

@media (max-width:992px) {
  .page-section .desc {
    text-align: left;
  }

  .about-section .btn {
    margin: auto;
  }

  .about-section .section__eyebrow {
    text-align: left;
  }

  .section__title {
    font-size: 2.3em;
  }
  .section__title:not(.txt-center) {
    text-align: left;
  }

  .about-section__image {
    border-radius: 10px;
    margin-bottom: 40px;
  }

  .about-section .paragraph {
    text-align: left;
  }

  .protect-section .section__title {
    margin-top: 40px;
  }

  .protect-section p.paragraph {
    text-align: left;
  }

  .protect-section .btn {
    margin: auto;
  }

  footer .btn {
    margin: auto;
  }
}

@media (max-width:767px) {
  .header__navbar {
    padding: 5px 20px;
  }

  .page-section {
    padding: 52px 0;
  }

  .hero .hero__title,
  .hero-color .hero__title,
  .hero__slide .hero__title {
    font-size: 1.5em;
    line-height: 1.25;
  }

  .hero .hero__description,
  .hero-color .hero__description,
  .hero__slide .hero__description {
    font-size: 15px;
  }

  .hero__slide .hero__content {
    padding: 0 20px;
  }

  .hero__cta {
    font-size: 14px;
    padding: 12px 24px;
    margin-top: 24px;
  }

  .hero .hero__description-responsive-center,
  .hero-color .hero__description-responsive-center {
    text-align: center;
  }

  .section__title {
    font-size: 1.7em;
    line-height: 1.3;
  }
  .section__title:not(.txt-center) {
    text-align: left;
  }

  .hero .row,
  .hero-color .row {
    margin-right: 0 !important;
  }

  section .btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  footer .footer__col {
    margin-top: 40px;
    text-align: center;
  }

  footer .social-links {
    justify-content: center !important;
  }

  footer .footer__col .footer__col-heading {
    font-size: 18px;
  }

  footer .footer__bottom {
    font-size: 12px;
  }

  .newsletter-section {
    padding: 24px 16px;
  }

  .newsletter-section__row {
    padding: 32px 24px;
    border-radius: 20px;
    text-align: left;
  }

  .newsletter-section h2 {
    font-size: 1.4em;
    margin-bottom: 6px;
  }

  .newsletter-section p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .inp-d-flex {
    display: block;
  }

  .page-loader .loader {
    width: 70px;
    height: 70px;
  }

}

@media (max-width:567px) {
  .page-loader .loader {
    width: 50px;
    height: 50px;
  }

  .hero .container,
  .hero-color .container {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .newsletter-section__row {
    padding: 28px 20px;
  }
}

@media (max-width:460px) {

  .hero .hero__title,
  .hero-color .hero__title,
  .hero__slide .hero__title,
  .hero__title {
    font-size: 1.4em;
    line-height: 1.25;
  }

  .hero__description {
    font-size: 15px !important;
  }

  .hero__slide .hero__content {
    padding: 0 16px;
  }

  .section__title {
    font-size: 1.3em;
    line-height: 1.3;
  }
  .section__title:not(.txt-center) {
    text-align: left;
  }
  .section__eyebrow {
    font-size: 14px;
  }


}

@keyframes loading {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}
