@charset "UTF-8";
/*======================================================================================
  >> TABLE OF CONTENTS <<
========================================================================================
01. Mixins & Variables
02. Base
03. Components
04. Layouts
05. Sections
======================================================================================*/
/*---------------------------------------
01. Mixins & Variables
---------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&amp;display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #3b82f6;
  --theme3: #05a4bf;
  --theme4: #f72;
  --header: #0f172a;
  --header3: #1f2937;
  --text: #3d4857;
  --border: #fcfcfc;
  --bg: #f2f5f7;
  --bg2: #0f172a;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Public Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text);
  background-color: var(--body);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  body {
    font-size: 14px;
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h6 {
  font-family: "Inter", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -2px;
}
@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 60px;
    line-height: 130% !important;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 44px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 133.333%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 22px;
  }
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  background-color: var(--theme);
  padding: 5.5px;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  text-transform: capitalize;
}
.theme-btn .btn_inner {
  position: relative;
  z-index: 1;
  padding: 15px 30px 15px 60px;
  width: 100%;
  text-align: center;
}
.theme-btn .btn_inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  inset-inline-start: 0;
  width: 45px;
  height: 100%;
  background-color: var(--header);
  border-radius: 50px;
  transition: all 0.3s ease-in-out 0s;
}
.theme-btn .btn_inner .btn_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  min-width: 45px;
  height: 100%;
  z-index: 2;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
}
.theme-btn .btn_inner .btn_icon > span {
  overflow: hidden;
  position: relative;
  display: inline-flex;
}
.theme-btn .btn_inner .btn_icon > span i:first-child,
.theme-btn .btn_inner .btn_icon > span i:last-child {
  transition: transform 0.4s ease-in-out 0s;
}
.theme-btn .btn_inner .btn_icon > span i:last-child {
  position: absolute;
  transform: translateX(-150%);
}
.theme-btn .btn_inner .btn_icon > span img:first-child,
.theme-btn .btn_inner .btn_icon > span img:last-child {
  transition: transform 0.4s ease-in-out 0s;
}
.theme-btn .btn_inner .btn_icon > span img:last-child {
  position: absolute;
  transform: translateX(-150%);
}
.theme-btn .btn_inner .btn_text {
  display: inline-flex;
  overflow: hidden;
  color: var(--white);
  text-shadow: 0 23px 0 currentColor;
  white-space: nowrap;
}
.theme-btn .btn_inner .btn_text > span {
  display: flex;
  align-items: center;
  backface-visibility: hidden;
  transform: translateY(0);
  transition: 0.5s;
}
.theme-btn:hover .btn_inner::before {
  width: 100%;
}
.theme-btn:hover .btn_inner .btn_icon i:first-child {
  transform: translateX(150%);
}
.theme-btn:hover .btn_inner .btn_icon i:last-child {
  transform: translateX(0);
}
.theme-btn:hover .btn_inner .btn_icon img:first-child {
  transform: translateX(150%);
}
.theme-btn:hover .btn_inner .btn_icon img:last-child {
  transform: translateX(0);
}
.theme-btn:hover .btn_inner .btn_text {
  color: var(--white);
}
.theme-btn:hover .btn_inner .btn_text > span {
  transform: translateY(-24px);
}

.link-btn {
  display: inline-block;
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}
.link-btn i {
  margin-right: 5px;
}
.link-btn:hover {
  color: var(--theme);
}

.logo img {
  width: 160px;
  height: auto;
  max-width: 100%;
}

/*---------------------------------------
03. Components
---------------------------------------*/

/* Botão "Voltar ao topo" - estado padrão (escondido) */
#back-top.back-to-top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 999;

  width: 50px;
  height: 50px;
  line-height: 50px;

  border-radius: 50% !important;
  background-color: var(--theme);
  color: var(--white);
  font-size: 18px;
  text-align: center;
  cursor: pointer;

  display: inline-block;
  transition: all 0.4s ease-in-out;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* Hover */
#back-top.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}

/* Estado visível (classe adicionada via JS) */
#back-top.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cursor-outer {
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  transition: all 0.4s ease-out 0s;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.cursor-inner {
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  transition: all 0.24s ease-out 0s;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font:
    500 5em "Inter",
    sans-serif,
    "Public Sans",
    sans-serif;
  text-align: center;
  user-select: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader
  .animation-preloader
  .txt-loading
  .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Inter", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
/*img-animation**********************/

/*---------------------------------------
04. Layouts
---------------------------------------*/

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  font-family: "Inter", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 20px;
  padding-bottom: 20px;
  background: transparent;
  transition:
    background-color 0.3s ease,
    padding 0.3s ease;
}

.header-1.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-1 .container {
  max-width: 1800px;
}
.header-1 .mean__menu-wrapper {
  border-radius: 70px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 35px;
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 1199px) {
  .header-1 .mean__menu-wrapper {
    padding: 0;
    background-color: transparent;
    border: none;
  }
}
.header-1 .mean__menu-wrapper .main-menu li a {
  padding: 14px 0;
}
.header-1 .mean__menu-wrapper .main-menu ul li a {
  color: rgba(255, 255, 255, 0.75);
}
.header-1 .mean__menu-wrapper .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-1 .mean__menu-wrapper .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-1 .mean__menu-wrapper .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-1 .sidebar__toggle {
  color: var(--white);
}
.header-1 .sidebar__toggle:hover {
  color: var(--theme);
}
.header-1 .header-right .sidebar__toggle {
  width: 55px;
  height: 55px;
  line-height: 55px;
  border-radius: 50%;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  background-color: rgba(255, 255, 255, 0.08);
}
@media (max-width: 575px) {
  .header-1 .header-right .sidebar__toggle {
    width: 42px;
    height: 42px;
    line-height: 42px;
  }
}

.footer-area {
  background-color: var(--bg2);
  margin: 0 30px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
@media (max-width: 1399px) {
  .footer-area {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.footer-section {
  padding-bottom: 30px;
}

.footer-widget-wrapper {
  padding: 70px 0 100px;
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper .footer-widget-items {
  margin-top: 30px;
}
.footer-widget-wrapper .footer-widget-items .widget-head {
  margin-bottom: 30px;
}
.footer-widget-wrapper .footer-widget-items .widget-head h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}
.footer-widget-wrapper .footer-widget-items .footer-content {
  max-width: 310px;
}
.footer-widget-wrapper .footer-widget-items .footer-content p {
  color: var(--white);
  font-size: 20px;
  text-align: center;
  line-height: 120%;
}
.footer-widget-wrapper .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .footer-widget-items .gt-list-area li a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-widget-wrapper .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper .footer-widget-items .contact-list li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  font-family: "Inter", sans-serif;
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper .footer-widget-items .contact-list li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .footer-widget-items .contact-list li:hover {
  color: var(--theme);
}
.footer-widget-wrapper .footer-widget-items .contact-list li a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-widget-wrapper .footer-widget-items .contact-list li a:hover {
  color: var(--theme);
}

.footer-bottom {
  border-top: 1px solid rgba(61, 72, 87, 0.6);
  padding: 25px 0;
}
.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
}
.footer-bottom .footer-bottom-wrapper p {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.footer-bottom .footer-bottom-wrapper p b {
  color: var(--theme);
}
.footer-bottom .footer-bottom-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-bottom .footer-bottom-wrapper .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  background: rgba(61, 72, 87, 0.5);
  color: var(--white);
  font-size: 26px;
}
.footer-bottom .footer-bottom-wrapper .social-icon a:hover {
  background-color: var(--theme);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
  .section-title br {
    display: none;
  }
}
.section-title .sub-title {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.section-title .sub-title img {
  line-height: 1;
  margin-right: 5px;
  margin-top: -3px;
}
.section-title h2 {
  color: var(--header);
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
  .section-title-area br {
    display: none;
  }
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

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

.section-bg-2 {
  background-color: var(--bg2);
}

.section-padding {
  padding: 50px 50px 100px;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
}

/*---------------------------------------
05. Sections
---------------------------------------*/
/* ========== HERO INICIO ========== */
.hero-1 {
  position: relative;
  z-index: 9;
  padding: 140px 0 0; /* respiro base em desktop */
  border-radius: 0 0 20px 20px;
}

/* altura/respiro estruturais (desktop) */
.hero-section.hero-1 {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 100vh;
}

.hero-section.hero-1 .row.g-4.align-items-center {
  min-height: 400px;
}

.hero-section.hero-1 .hero-content {
  max-width: 560px;
}

/* colunas em desktop */
@media (min-width: 992px) {
  .hero-section.hero-1 .col-lg-6:first-child {
    padding-right: 20px;
  }
  .hero-section.hero-1 .col-lg-6:last-child {
    padding-left: 20px;
  }
}

/* ========== ELEMENTOS DECORATIVOS ========== */
.hero-1 .logo-text {
  position: absolute;
  right: 0;
  top: 20%;
  opacity: 0.2;
}

/* ========== CONTEÚDO TEXTO ========== */
.hero-1 .hero-content h6 {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.hero-1 .hero-content h6 span {
  background-color: var(--theme);
  color: var(--white);
  border-radius: 20px;
  height: 23px;
  display: inline-block;
  line-height: 23px;
  padding: 0 10px;
  margin-right: 10px;
}

.hero-1 .hero-content h1 {
  color: var(--white);
  margin-top: 25px;
  line-height: 110%;
}

.hero-1 .hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-top: 25px;
}

.hero-1 .hero-content .theme-btn {
  margin-top: 30px;
}

/* bloco info +700M */
.hero-1 .hero-content .hero-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 120px;
}

.hero-1 .hero-content .hero-info .info-content h3 {
  color: var(--white);
  font-size: 38px;
  font-weight: 500;
}

.hero-1 .hero-content .hero-info .info-content p {
  margin-top: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.75;
}

/* ========== IMAGEM HERO ========== */
.hero-1 .hero-image {
  position: relative;
}

.hero-1 .hero-image .box-1 {
  position: absolute;
  min-height: 80vh;
  top: 0%;
  left: 0%;
}

/* ========== IMAGEM SLIDES ========== */
.hero-section.hero-1 .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-left: 75px;
  padding-right: 75px;
  padding-bottom: 100px;
  min-height: 90vh;
}

/* Slide 1 */
.hero-section.hero-1 .hero-slide-1 {
  background-image: url("../img/inicio/hero/hero-bg-1.jpg");
}

/* Slide 2 */
.hero-section.hero-1 .hero-slide-2 {
  background-image: url("../img/inicio/hero/hero-bg-2.png");
}

/* ========== ANIMAÇOES HERO ========== */
.lottie {
  width: 100%;
  max-width: 650px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* ========== BREAKPOINTS ========== */

/* até 1399px */
@media (max-width: 1399px) {
  .hero-1 {
    padding-top: 170px;
  }
}

/* até 1199px */
@media (max-width: 1199px) {
  .hero-1 .logo-text {
    display: none;
  }

  .header-1 .logo {
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .header-1.scrolled .logo {
    opacity: 1;
    visibility: visible;
  }

  .header__hamburger .sidebar__toggle {
    border: 0;
    background: transparent;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff; /* ajuste conforme o fundo do header */
    font-size: 22px;
  }

  .hero-1 .hero-content p {
    line-height: 150%;
  }

  .hero-1 .hero-image {
    margin-left: -130px;
  }

  .hero-1 .hero-image .box-1 {
    display: none;
  }
}

/* até 991px */
@media (max-width: 991.98px) {
  /* zera padding da section para não somar com o do slide */
  .hero-section.hero-1 {
    padding-top: 0;
    padding-bottom: 0;
    min-height: auto;
  }

  .hero-section.hero-1 .row.g-4.align-items-center {
    min-height: auto;
  }

  /* controla o espaçamento só pelo slide */
  .hero-section.hero-1 .carousel-item {
    padding-top: 80px; /* menor que no desktop */
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 70px;
    min-height: 100vh;
  }

  .hero-section.hero-1 .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-section.hero-1 .hero-info {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-1 .hero-image {
    margin-left: 0;
    margin-top: 20px;
  }

  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

/* até 767px */
@media (max-width: 767px) {
  .hero-1 {
    padding-top: 210px;
  }

  .hero-1 .hero-content .hero-info {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

/* até 575px */
@media (max-width: 575px) {
  .hero-1 .hero-content p {
    font-size: 16px;
  }
}
/* ========== HERO FIM ========== */

.about-section {
  margin: 0 30px;
  border-radius: 16px;
}
@media (max-width: 1399px) {
  .about-section {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.about-wrapper .about-image {
  border-radius: 16px;
  max-width: 730px;
  overflow: hidden;
  background-color: #e2edf5;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image {
    max-width: initial;
  }
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.about-wrapper .about-image:hover img {
  transform: scale(1.1) rotate(2deg);
}
@media (max-width: 1199px) {
  .about-wrapper .about-content {
    padding-bottom: 40px;
    margin-top: 10px;
  }
}
@media (max-width: 1600px) {
  .about-wrapper .about-content h2 {
    font-size: 38px;
  }
}
@media (max-width: 1399px) {
  .about-wrapper .about-content h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1350px) {
  .about-wrapper .about-content h2 {
    font-size: 29px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .about-content h2 {
    font-size: 33px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .about-wrapper .about-content h2 {
    font-size: 27px;
  }
}
.about-wrapper .about-content .theme-btn {
  margin-top: 30px;
  background-color: var(--header);
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .theme-btn {
    margin-top: 22px;
  }
}
.about-wrapper .about-content .theme-btn .btn_inner::before {
  background-color: var(--theme);
}
.about-wrapper .about-content .about-conter-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .about-conter-items {
    margin-top: 30px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-conter-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-conter-items {
    display: block;
  }
}
.about-wrapper .about-content .about-conter-items .counter-box {
  max-width: 300px;
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .about-conter-items .counter-box {
    padding: 25px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-conter-items .counter-box {
    margin-bottom: 25px;
    max-width: initial;
  }
}
.about-wrapper .about-content .about-conter-items .counter-box h6 {
  font-size: 16px;
  font-weight: 600;
}
.about-wrapper .about-content .about-conter-items .counter-box h2 {
  font-size: 72px;
  font-weight: 500;
  color: var(--theme);
  margin-top: 50px;
  line-height: 1;
}
@media (max-width: 1399px) {
  .about-wrapper .about-content .about-conter-items .counter-box h2 {
    font-size: 60px;
    margin-top: 25px;
  }
}
.about-wrapper .about-content .about-conter-items .counter-box p {
  font-size: 18px;
  color: #1f2937;
  margin-top: 15px;
}
.about-wrapper .about-content .about-conter-items .about-vide-bg {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-conter-items .about-vide-bg {
    flex-basis: 100%;
    width: 100%;
    height: 450px;
  }
}
@media (max-width: 575px) {
  .about-wrapper .about-content .about-conter-items .about-vide-bg {
    height: 400px;
  }
}
.about-wrapper .about-content .about-conter-items .about-vide-bg img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.about-wrapper .about-content .about-conter-items .about-vide-bg .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.about-wrapper
  .about-content
  .about-conter-items
  .about-vide-bg
  .video-btn:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.about-wrapper .about-content .about-conter-items .about-vide-bg:hover img {
  transform: scale(1.1) rotate(2deg);
}

.feature-box-items {
  margin-top: 30px;
  background-color: var(--bg);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 9;
}

/* SLIDE SERVICOS  */
#servicos {
  overflow: hidden;
}

#servicos .feature-wrapper {
  position: relative;
}

#servicos .feature-box-slider {
  overflow: visible;
  max-width: 800px;
  margin: 0 auto;
}

#servicos .feature-box-slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 480px !important;
}

#servicos .feature-box-items {
  position: relative;
  border-radius: 12px;
  box-shadow: -1px 5px 15px rgba(0, 0, 0, 0.12);
  background: var(--bg);
  padding: 30px 32px;
  height: 100%;
  width: 100%;
  max-width: none;
}

.feature-box-items::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: scale(1, 0.3);
  transform: scale(1, 0.3);
  background-color: var(--theme);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 10px;
}
.feature-box-items h6 {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 25px;
}
.feature-box-items h3 {
  margin-bottom: 20px;
}
.feature-box-items:hover h6,
.feature-box-items:hover h3,
.feature-box-items:hover p {
  color: var(--white);
}
.feature-box-items:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.feature-wrapper {
  padding: 20px 0px 20px 0px;
}
@media (max-width: 1600px) {
  .feature-wrapper {
    margin-right: -35%;
  }
}
@media (max-width: 1399px) {
  .feature-wrapper {
    margin-right: -55%;
  }
}
@media (max-width: 575px) {
  .feature-wrapper {
    margin-right: 0;
  }
}

.service-card-item {
  height: 95%;
  width: auto;
  margin-top: 30px;
  background-color: var(--bg);
  padding: 40px 30px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 9;
  box-shadow: var(--box-shadow);
}
.service-card-item::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: scale(1, 0.3);
  transform: scale(1, 0.3);
  background-color: var(--theme);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 8px;
  transform: scale(1, 0.3);
}

.service-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.service-card-item:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.service-card-item .icon {
  width: 80px;
  height: 72px;
  line-height: 72px;
  border-radius: 6px;
  background-color: var(--white);
  text-align: center;
}

.service-card-item .content {
  margin-top: 30px;
}
.service-card-item .content h3 {
  margin-bottom: 15px;
}

.service-card-item:hover .content h3,
.service-card-item:hover .content p {
  color: #ffffff;
}

@media (max-width: 1399px) {
  .service-card-item .content h3 {
    font-size: 22px;
  }
}

.project-section {
  margin: 0 30px;
  border-radius: 16px;
}
@media (max-width: 1399px) {
  .project-section {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.marquee {
  position: relative;
  --duration: 30s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
  margin-top: -7px;
  margin-bottom: 80px;
}
.marquee.style-2 {
  background-color: var(--theme);
  padding: 30px 0;
}
.marquee.style-2 .text {
  color: var(--white);
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -6.255px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1199px) {
  .marquee.style-2 .text {
    gap: 30px;
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .marquee.style-2 .text {
    gap: 20px;
    font-size: 50px;
  }
}
.marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}
.marquee .text {
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -6.255px;
  color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .marquee .text {
    letter-spacing: initial;
  }
}
@media (max-width: 1199px) {
  .marquee .text {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .marquee .text {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .marquee .text {
    font-size: 50px;
  }
}
.marquee .text span {
  margin-top: -10px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.marquee .text:hover {
  color: var(--white);
}
.marquee .text:hover span {
  color: var(--theme);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.project-box-items {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .project-box-items {
    display: block;
  }
}
.project-box-items .content {
  padding: 80px 75px;
  position: relative;
}
@media (max-width: 1199px) {
  .project-box-items .content {
    padding: 45px;
  }
}
@media (max-width: 767px) {
  .project-box-items .content {
    padding: 30px;
  }
}
.project-box-items .content .number {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.1);
  font-family: "Inter", sans-serif;
  font-size: 166.588px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -10.412px;
  color: transparent;
  position: absolute;
  bottom: -50px;
  left: 75px;
}
@media (max-width: 1199px) {
  .project-box-items .content .number {
    display: none;
  }
}
.project-box-items .content span {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
}
@media (max-width: 575px) {
  .project-box-items .content span {
    margin-bottom: 5px;
    display: inline-block;
  }
}
.project-box-items .content h3 {
  color: var(--white);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -3px;
}
@media (max-width: 767px) {
  .project-box-items .content h3 {
    font-size: 36px;
    letter-spacing: initial;
    text-transform: capitalize;
  }
}
@media (max-width: 575px) {
  .project-box-items .content h3 {
    font-size: 28px;
  }
}
.project-box-items .content h3 a {
  color: var(--white);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.project-box-items .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
@media (max-width: 1199px) {
  .project-box-items .thumb img {
    width: 100%;
    height: 100%;
    border-top-right-radius: 0;
  }
}
.project-box-items .thumb img {
  border-radius: 0 12px 12px 0;
}

.project-box-area {
  margin-bottom: 240px;
}
@media (max-width: 1199px) {
  .project-box-area {
    margin-bottom: 0;
  }
}

.news-box-items {
  margin-top: 30px;
  border-radius: 0 0 10px 10px;
  background-color: var(--bg);
}
.news-box-items .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
}
.news-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-box-items .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
.news-box-items .content {
  padding: 25px;
}
.news-box-items .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.news-box-items .content ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--header);
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  border-radius: 18px;
}
.news-box-items .content ul li a:hover {
  background-color: var(--theme);
}
.news-box-items .content .news-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-box-items .content .news-bottom .link-btn {
  display: inline-block;
  position: relative;
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.news-box-items .content .news-bottom .link-btn .content-wrap {
  display: block;
  position: relative;
  line-height: 1.2;
}
.news-box-items .content .news-bottom .link-btn .default-content,
.news-box-items .content .news-bottom .link-btn .hover-content {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  white-space: nowrap;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.news-box-items .content .news-bottom .link-btn .hover-content {
  transform: translateY(100%);
  opacity: 0;
}
.news-box-items .content .news-bottom .link-btn:hover {
  color: var(--theme);
}
.news-box-items .content .news-bottom .link-btn:hover .default-content {
  transform: translateY(-100%);
  opacity: 0;
}
.news-box-items .content .news-bottom .link-btn:hover .hover-content {
  transform: translateY(0);
  opacity: 1;
}
.news-box-items .content .news-bottom .link-btn i {
  margin-right: 5px;
}
.news-box-items:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
.news-box-items:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.brand-section {
  margin: 30px;
  margin-bottom: 0;
}

.brand-box-1 {
  height: 200px;
  line-height: 250px;
  border: 3px solid var(--text);
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.brand-box-1 .brand-img-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-box-1 .brand-img-1 img {
  opacity: 0.4;
  filter: grayscale(100%); /* Preto e branco por padrão */
  transition: all 0.6s ease;
  transform: translateY(0) scale(1); /* Estado inicial sem zoom */
}

.brand-box-1 .brand-img-1:last-child img {
  transform: translateY(-350%) scale(1);
  opacity: 0;
}

.brand-box-1:hover .brand-img-1:first-child img {
  transform: translateY(100%) scale(1);
  opacity: 0;
}

.brand-box-1:hover .brand-img-1 img {
  /* Volta a cor e dá zoom em TODAS as imagens ao hover */
  filter: grayscale(0%);
  transform: translateY(0) scale(1.1); /* Zoom de 10% */
  opacity: 1;
}

.brand-box-1:hover .brand-img-1:last-child img {
  transform: translateY(0) scale(1.1);
  opacity: 1;
}

.cta-newsletter-section {
  position: relative;
  border-radius: 16px 16px 0 0;
  margin: 0 30px;
  padding: 80px 0;
}
@media (max-width: 1399px) {
  .cta-newsletter-section {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.cta-newsletter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .cta-newsletter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    justify-content: center;
  }
}
.cta-newsletter-wrapper h2 {
  color: var(--white);
  font-size: 69.677px;
  font-weight: 500;
  letter-spacing: -2.98px;
}
@media (max-width: 1199px) {
  .cta-newsletter-wrapper h2 {
    letter-spacing: initial;
  }
}
@media (max-width: 991px) {
  .cta-newsletter-wrapper h2 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .cta-newsletter-wrapper h2 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .cta-newsletter-wrapper h2 {
    font-size: 35px;
  }
}
.cta-newsletter-wrapper .newsletter-form {
  width: 100%;
  max-width: 430px;
}
@media (max-width: 767px) {
  .cta-newsletter-wrapper .newsletter-form {
    max-width: initial;
  }
}
.cta-newsletter-wrapper .newsletter-form form {
  position: relative;
  margin-top: 25px;
}
.cta-newsletter-wrapper .newsletter-form form input {
  width: 100%;
  border: none;
  background-color: var(--white);
  padding: 22px 30px;
  border-radius: 48px;
  line-height: 1;
  color: var(--text);
}
.cta-newsletter-wrapper .newsletter-form form .email-btn {
  background: var(--header);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
}
.cta-newsletter-wrapper .newsletter-form form .email-btn:hover {
  background-color: var(--theme);
}

/* CONTATO FORM START */
.cta-contato-section {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin: 0 30px;
  padding: 180px 0;
  background-image: url("../img/inicio/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-contato-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.cta-contato-section > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 1399px) {
  .cta-contato-section {
    margin: 0 15px;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

.cta-contato-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* título */
.cta-contato-wrapper h2 {
  color: var(--white);
  font-size: 69.677px;
  font-weight: 500;
  letter-spacing: -2.98px;
}

@media (max-width: 1199px) {
  .cta-contato-wrapper h2 {
    letter-spacing: initial;
  }
}

@media (max-width: 991px) {
  .cta-contato-wrapper h2 {
    font-size: 48px;
  }
}

@media (max-width: 767px) {
  .cta-contato-wrapper h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .cta-contato-wrapper h2 {
    font-size: 35px;
  }
}

/* FORM */
.cta-contato-wrapper .contato-form {
  width: 100%;
  max-width: 430px;
}

@media (max-width: 767px) {
  .cta-contato-wrapper .contato-form {
    max-width: 100%;
  }
}

.cta-contato-wrapper .contato-form form {
  position: relative;
  margin-top: 25px;
}

.cta-contato-wrapper .contato-form form input {
  width: 100%;
  border: none;
  background-color: var(--white);
  padding: 22px 30px;
  border-radius: 48px;
  line-height: 1;
  color: var(--text);
}

.cta-contato-wrapper .contato-form form .email-btn {
  background: var(--header);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  transition: 0.4s;
  position: absolute;
  top: 6px;
  right: 6px;
}

.cta-contato-wrapper .contato-form form .email-btn:hover {
  background-color: var(--theme);
}

/* CONTATO FORM END */

/* CONTATO INFO BOX START*/
.contact-info-box {
  margin-top: 30px;
  background-color: var(--bg);
  padding: 40px 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 9;
  box-shadow: var(--box-shadow);
}
.contact-info-box .icon {
  max-width: 80px;
  width: 100%;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  font-size: 25px;
  transition: all 0.4s ease-in-out;
}
.contact-info-box .content h4 {
  font-size: 20px;
  color: var(--header);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.contact-info-box .content p {
  line-height: 162.5%;
}
.contact-info-box .content p a {
  color: var(--text);
}
.contact-info-box::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: scale(1, 0.3);
  transform: scale(1, 0.3);
  background-color: var(--theme);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 8px;
}
.contact-info-box.active::before {
  opacity: 1;
  transform: scale(1, 1);
}
.contact-info-box.active .icon {
  background-color: var(--header);
}
.contact-info-box.active .icon i {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}
.contact-info-box.active .content h4,
.contact-info-box.active .content p {
  color: var(--white);
}
.contact-info-box.active .content p a {
  color: var(--white);
}

/* CONTATO INFO BOX END*/
.array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
}
.array-button .array-prev,
.array-button .array-next {
  border-radius: 100px;
  border: 1px solid #e6e8eb;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.array-button .array-prev:hover,
.array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.swiper-dot {
  position: relative;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.fix {
  overflow: hidden;
}

/* BREADCRUMB */

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  border-radius: 0 0 20px 20px;
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 200px 0 120px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 72px;
  position: relative;
  text-transform: capitalize;
  z-index: 9;
  font-weight: 500;
  letter-spacing: -2px;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 9px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
  opacity: 1;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 5px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

/* FAQ */

.faq-items-2 .accordion-box {
  position: relative;
  margin-top: 50px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 30px;
}
@media (max-width: 767px) {
  .faq-items-2 .accordion-box {
    margin-top: 30px;
  }
}
.faq-items-2 .accordion-box .block {
  position: relative;
  background-color: transparent;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  margin-bottom: 30px;
  line-height: 1;
  padding-bottom: 32px;
}
@media (max-width: 767px) {
  .faq-items-2 .accordion-box .block {
    padding-left: 40px;
    line-height: 1.3;
  }
}
.faq-items-2 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: var(--header3);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 1199px) {
  .faq-items-2 .accordion-box .block .acc-btn {
    padding-right: 40px;
  }
}
@media (max-width: 470px) {
  .faq-items-2 .accordion-box .block .acc-btn {
    font-size: 20px;
  }
}
.faq-items-2 .accordion-box .block .acc-btn .number {
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -3px;
  margin-left: -50px;
  margin-right: 15px;
}
.faq-items-2 .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 35px;
  font-size: 16px;
  line-height: 18px;
  color: var(--white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--header3);
}
.faq-items-2 .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 22px;
}
@media (max-width: 470px) {
  .faq-items-2 .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}
.faq-items-2 .accordion-box .block .acc-content .content {
  position: relative;
}
.faq-items-2 .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 18px;
  font-weight: 400;
  color: var(--header3);
  opacity: 0.8;
  max-width: 675px;
}
@media (max-width: 1199px) {
  .faq-items-2 .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .faq-items-2 .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}
.faq-items-2 .accordion-box li {
  position: relative;
}
.faq-items-2 .accordion-box li .number {
  color: var(--header3);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -1.5px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
@media (max-width: 991px) {
  .faq-items-2 .accordion-box li .number {
    display: none;
  }
}
.faq-items-2 .accordion-box .block .acc-content.current {
  display: block;
}
.faq-items-2 .accordion-box .block .acc-btn.active .icon:before {
  content: "\f00d";
}
.faq-items-2 .accordion-box .block .acc-btn.active .icon {
  background-color: var(--theme3);
}
.faq-items-2 .accordion-box .block .acc-btn.active {
  color: var(--theme3);
}
.faq-items-2 .accordion-box .block:last-child {
  margin-bottom: 0;
}
.faq-items-2.style-faq-2 .accordion-box {
  position: relative;
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
.faq-items-2.style-faq-2 .accordion-box .block {
  position: relative;
  background-color: #f2f5f7;
  margin-bottom: 10px;
  border-bottom: none;
  margin-bottom: 30px;
  border-radius: 8px;
  line-height: 1;
  padding: 30px 30px;
}
@media (max-width: 767px) {
  .faq-items-2.style-faq-2 .accordion-box .block {
    padding-left: 30px;
    line-height: 1.3;
  }
}
.faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: var(--header);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (max-width: 1199px) {
  .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
    font-size: 20px;
    padding-right: 60px !important;
  }
}
@media (max-width: 575px) {
  .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
    font-size: 18px;
    padding-right: 60px !important;
  }
}
.faq-items-2.style-faq-2 .accordion-box .block .acc-btn.active {
  color: var(--theme);
}
.faq-items-2.style-faq-2 .accordion-box .block .acc-btn.active .icon {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 1199px) {
  .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
    padding-right: 0;
  }
}
@media (max-width: 470px) {
  .faq-items-2.style-faq-2 .accordion-box .block .acc-btn {
    font-size: 20px;
  }
}
.faq-items-2.style-faq-2 .accordion-box .block .acc-btn .icon {
  color: var(--white);
  background-color: var(--header);
}
.faq-items-2.style-faq-2 .accordion-box .block .acc-content {
  margin-top: 22px;
}
@media (max-width: 470px) {
  .faq-items-2.style-faq-2 .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}

.faq-about {
  border-top: 1px solid #e6e8eb;
}

/* BLOG NAVEGACAO PAGINAS */

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: var(--header);
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Inter", sans-serif;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

/* PARCEIROS */
.card-beneficio {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--box-shadow);
  height: 100%;
  border: 1px solid #e5e7eb;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card-beneficio:hover {
  transform: translateY(-5px);
  background-color: var(--theme);
  color: #fff;
}

/* SECTION CUSTOM */
.section-custom {
  padding: 100px 0px;
}

/* Hover no card */
.card-hover {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ================================
   Offcanvas Sidebar
=============================== */

.offcanvas__info {
  position: fixed;
  top: 0;
  right: -260px; /* começa fora da tela */
  width: 260px;
  max-width: 100%;
  height: 100vh;
  background: #111827; /* fundo escuro */
  color: #f9fafb; /* texto claro */
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.3s ease;
  padding: 16px 20px;
}

.offcanvas__info.info-open {
  right: 0;
}

/* Overlay atrás do sidebar */
.offcanvas__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.offcanvas__overlay.overlay-open {
  opacity: 1;
  visibility: visible;
}

/* Topo: logo + botão fechar */
.offcanvas__top {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas__logo img {
  max-height: 32px;
}

/* Botão fechar dentro do sidebar */
.offcanvas__close {
  border: 0;
  background: transparent;
  color: #f9fafb;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

/* Lista de páginas */
.offcanvas__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.offcanvas__menu li + li {
  border-top: 1px solid rgba(248, 250, 252, 0.06);
}

.offcanvas__menu a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #e5e7eb;
  font-size: 15px;
}

.offcanvas__menu a:hover {
  color: #38bdf8; /* azul de destaque */
}

/* ================================
   Botão Hamburguer (abrir menu)
=============================== */

/* Wrapper do botão, já com z-index correto */
.sidebar-sticky-item {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
}

/* Botão circular destacado */
.sidebar__toggle {
  pointer-events: auto;
  border: 0;
  background: rgba(
    15,
    23,
    42,
    0.75
  ); /* azul-marinho bem escuro semitransparente */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; /* tamanho do círculo */
  height: 52px;
  border-radius: 999px; /* círculo */
  backdrop-filter: blur(6px); /* efeito glass, opcional */
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
  transition:
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

/* Ícone dentro do botão (Font Awesome) */
.sidebar__toggle i {
  font-size: 22px;
  color: #f9fafb; /* ícone claro */
}

/* Hover / foco: destaque maior */
.sidebar__toggle:hover,
.sidebar__toggle:focus-visible {
  background: rgba(56, 189, 248, 0.9); /* azul destaque */
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

/* Quando o header estiver com fundo escuro (classe scrolled), mantemos contraste */
.header-1.scrolled ~ .sidebar-sticky-item .sidebar__toggle {
  background: rgba(15, 23, 42, 0.85);
}

/* Esconde o hambúrguer em desktop se quiser */
@media (min-width: 1200px) {
  .sidebar-sticky-item {
    display: none;
  }
}

/* ================================
   Banner eBook
=============================== */
.img-ebook {
  max-width: 400px;
}
