.hero-section .hero-content .scroll-bottom, .feature-section .single-feature .icon, .box-style .icon, .footer .widget-wrapper .footer-widget .socials li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

:root
{
  --bg-alt: #f8fafc;
  
  --yellow: #F97316;
  --red: #DC2626;
  --orange: #F59E0B;
  --blue: #3B82F6;
  --primary: #0ea5e9; 

  --card-width-desktop: 450px;
  --card-height-desktop: 200px;

  
  --cor-laranja-fundo: #FFCC89;
  --cor-laranja-texto: #A65E2E;
  
  
  --cor-risco: #FF7A00; 
  
  --cor-texto-principal: #262d3b;
  --cor-texto-secundario: #6B7280;
  --fonte-principal: 'Outfit', sans-serif;

}


html {
  scroll-behavior: smooth;
}

body {
  font-family: Arimo;
  font-weight: normal;
  font-style: normal;
  color: #5B657E;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:hover {
  color: #5864FF;
}

a {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Arimo;
  font-weight: 700;
  margin: 0px;
  color: #162447;
}

.section-title p {
  font-size: 18px;
  line-height: 28px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 45px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title h2 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title h2 {
    font-size: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .section-title h2 {
    font-size: 32px;
  }
}

.section-title span {
  font-size: 25px;
  color: #162447;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .section-title span {
    font-size: 18px;
  }
}

.section-title span img {
  max-width: 100%;
  margin-right: 20px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin: 0px;
  font-family: "Open Sans", sans-serif;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.error {
  color: orangered;
}

.success {
  color: green;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.main-btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 18px 38px;
  font-size: 18px;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: none;
  background: #5864FF;
  overflow: hidden;
}

.main-btn:hover {
  color: #fff;
}

.main-btn.border-btn {
  border: 2px solid #5864FF;
  background: transparent;
  color: #5864FF;
}

.btn-hover {
  position: relative;
  overflow: hidden;
}

.btn-hover::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  padding: 50%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transform: translate3d(-50%, -50%, 0) scale(0);
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.btn-hover:hover::after {
  -webkit-transform: translate3d(-50%, -50%, 0) scale(1.3);
  transform: translate3d(-50%, -50%, 0) scale(1.3);
}

.scroll-top {
  width: 45px;
  height: 45px;
  background: #0716f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.scroll-top:hover {
  color: #fff;
  background: rgba(13, 27, 236, 0.8);
}


.whatsapp-btn {
  width: 45px; 
  height: 45px; 
  background-color: #25d366; 
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px; 
  color: #fff;
  border-radius: 5px; 
  position: fixed;
  bottom: 95px; 
  right: 30px; 
  z-index: 10; 
  cursor: pointer;
  transition: all 0.3s ease-out 0s; 
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 
}

.whatsapp-btn:hover {
  background: #20b358; 
}


.whatsapp-btn-bottom {
  bottom: 30px; 
}



.scroll-top:hover {
  color: #fff;
  background: rgba(23, 36, 223, 0.8);
}

@keyframes animation1 {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}

@-webkit-keyframes animation1 {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}


.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

.gooey-container {
  position: relative;
  width: 150px;
  height: 150px;
  filter: url('#goo');
}

.dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75px;
  height: 75px;
  margin-top: -37.5px;
  margin-left: -37.5px;
  border-radius: 50%;
  background-color: #5864FF;
  transform: scale(1);
  z-index: 1;
}

.dots {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin-top: -75px;
  margin-left: -75px;
  animation: rotate 2s ease-in-out infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.dots span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50%;
  background-color: #5864FF;
}

.dots span:nth-child(1) {
  transform: translate(60px, 0);
  animation: anim-1 2s ease-in-out infinite;
}

.dots span:nth-child(2) {
  transform: translate(-60px, 0);
  animation: anim-2 2s ease-in-out infinite;
}

.dots span:nth-child(3) {
  transform: translate(0, 60px);
  animation: anim-3 2s ease-in-out infinite;
}

@keyframes anim-1 {
  0% { transform: translate(60px, 0); }
  50% { transform: translate(0, 0) scale(1.5); }
  100% { transform: translate(60px, 0); }
}

@keyframes anim-2 {
  0% { transform: translate(-60px, 0); }
  50% { transform: translate(0, 0) scale(1.5); }
  100% { transform: translate(-60px, 0); }
}

@keyframes anim-3 {
  0% { transform: translate(0, 60px); }
  50% { transform: translate(0, 0) scale(1.5); }
  100% { transform: translate(0, 60px); }
}


@media (max-width: 767px) {
  .gooey-container {
    transform: scale(0.7); 
  }
}



.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 10px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .sticky .navbar {
    padding: 15px 0;
  }
}

.sticky .navbar .navbar-nav .nav-item a {
  color: #162447; 
}

.sticky .navbar .navbar-nav .nav-item a.active {
  color: #1322f3; 
  font-weight: 300; 
}

.sticky .navbar .navbar-nav .nav-item a::before {
  background: #1120f8; 
}
.navbar-nav .nav-item a:hover::before {
  width: 100%; 
}

.navbar-nav .nav-item a.active::before {
  width: 100%; 
}

.sobre-nos-visible .navbar-area:not(.sticky) .navbar-nav .nav-item a.active {
  color: #162447; 
}


.sobre-nos-visible .navbar-area:not(.sticky) .navbar-nav .nav-item a {
  color: #162447; 
}
.sobre-nos-visible .navbar-area:not(.sticky) .navbar-nav .nav-item a.active {
  color: #292929; 
}
.sobre-nos-visible .navbar-area:not(.sticky) .btn-portal {
  background-color: #eef2ff; 
  color: #162447; 
  border-color: transparent;
}


.sobre-nos-visible .navbar-area:not(.sticky) .navbar-brand {
  color: #162447; 
}


.sticky .navbar .navbar-toggler .toggler-icon {
  background-color: #162447; 
}

.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 20px 0;
}

.navbar-brand {
  color: #fff; 
  transition: color 0.3s ease-out 0s;
}

.sticky .navbar-brand {
  color: #162447; 
}


@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar {
    padding: 17px 0;
  }
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  max-width: 180px;
}

.navbar-toggler {
  padding: 0;
  border: none !important; 
}

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

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    margin-left: 0px;
  }
}

.navbar-nav .nav-item a {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

.navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 0;
  border-radius: 16px;
  background: #fdd446;
  bottom: 15px;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a::before {
    top: auto;
    bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0px;
    color: #162447;
  }
}


.hero-section {
  position: relative;
  z-index: 1;
  background-image: url("../img/hero/background-01.png");
  padding: 160px 0 50px;
  background-image: url("../img/hero/background-01.png");
  background-position: top center;
  background-repeat: no-repeat;
}


.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/hero/back.png");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1; 
  z-index: -1;
}

@media (max-width: 767px) {
  .hero-section { padding-top: 130px; }
  .hero-section {
    padding-top: 130px;
  }
}


.hero-section .hero-content {
  margin-bottom: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-section .hero-content {
    margin-bottom: 0px;
  }
}

.hero-section .hero-content h1 {
  font-size: 60px;
  margin-bottom: 35px;
  color: #fff;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-content h1 {
    font-size: 52px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 32px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 42px;
  }
}

.hero-section .hero-content p {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
}

@media only screen and (min-width: 1400px) {
  .hero-section .hero-content p {
    padding-right: 120px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-content p {
    padding-right: 70px;
  }
}

.hero-section .hero-content .main-btn {
  border-color: #fff;
  color: #fff;
}

.hero-section .hero-content .main-btn::after {
  background: rgba(255, 255, 255, 0.15);
}

.hero-section .hero-content .scroll-bottom {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #5864FF;
  color: #5864FF;
  left: 15px;
  bottom: 0;
  z-index: 9;
}

.hero-section .hero-content .scroll-bottom i {
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-section .hero-img {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .hero-section .hero-img img {
    width: 100%;
  }
}

.hero-section .hero-shape .shape {
  position: absolute;
  z-index: -1;
}

.hero-section .hero-shape .shape.shape-1 {
  top: -285px;
  right: -300px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-shape .shape.shape-1 {
    top: -420px;
    right: -550px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-shape .shape.shape-1 {
    top: -400px;
    right: -550px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-shape .shape.shape-1 {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-shape .shape.shape-1 {
    display: none;
  }
}


@media (max-width: 767px) {
  .feature-section.pt-120 {
    padding-top: 80px;
  }
}

.feature-section .single-feature {
  text-align: center;
  padding: 30px 10px;
}

@media only screen and (min-width: 1400px) {
  .feature-section .single-feature {
    padding: 30px 40px;
  }
}

.img-titulo {
  width: 70%; 
  height: auto;
  display: block;
  margin: 0 auto; 
}

.feature-section .single-feature .icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(88, 100, 255, 0.1);
  color: #5864FF;
  margin: auto;
  margin-bottom: 30px;
  font-size: 65px;
  line-height: 1;
}

.feature-section .single-feature .content h3 {
  margin-bottom: 20px;
}

.feature-section .single-feature .content p {
  font-size: 18px;
  line-height: 28px;
}

.box-style {
  border-radius: 39px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 59px rgba(214, 214, 214, 0.35);
  box-shadow: 0px 0px 59px rgba(214, 214, 214, 0.35);
  padding: 50px 30px 30px;
  border-bottom: 5px solid;
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (min-width: 1400px) {
  .box-style {
    padding: 50px 40px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-style {
    padding: 50px 20px 30px;
  }
}

.box-style .icon {
  width: 85px;
  height: 85px;
  margin: auto;
  margin-bottom: 30px;
  font-size: 70px;
}

.box-style .content h3 {
  margin-bottom: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .box-style .content h3 {
    font-size: 22px;
  }
}

.box-style .content p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 26px;
}

.box-style .content a {
  color: #5B657E;
  font-size: 30px;
  font-weight: 700;
}

.box-style .content ul li {
  margin-bottom: 5px;
}

.box-style .content a.main-btn {
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.box-style .content a.main-btn.border-btn {
  color: #5B657E;
}

.box-style .content a.main-btn.border-btn:hover {
  color: #5864FF;
}

.box-style .content a.main-btn.border-btn:hover::after {
  background: rgba(88, 100, 255, 0.2);
}

.box-style.color-1 {
  border-color: #ff92a5;
}

.box-style.color-1 .icon {
  color: #ff92a5;
}

.box-style.color-1 .content a:hover {
  color: #ff92a5;
}

.box-style.color-2 {
  border-color: #5864FF;
}

.box-style.color-2 .icon {
  color: #5864FF;
}

.box-style.color-2 .content a:hover {
  color: #5864FF;
}

.box-style.color-2 .content .main-btn:hover {
  color: #fff;
}

.box-style.color-3 {
  border-color: #b89cfe;
}

.box-style.color-3 .icon {
  color: #b89cfe;
}

.box-style.color-3 .content a:hover {
  color: #b89cfe;
}


.about-section {
  position: relative; 
  z-index: 1;
}

@media (max-width: 767px) {
  .about-section.pt-150 {
    padding-top: 100px;
  }
}

.about-section .about-img {
  position: relative;
  z-index: 1;
  padding: 75px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-section .about-img {
    margin-bottom: 70px;
  }
}

.about-section .about-img .shape {
  position: absolute;
  z-index: -1;
}

.about-section .about-img .shape.shape-1 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section .about-img .shape.shape-1 {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .about-section .about-img .shape.shape-1 {
    width: 70%;
  }
}

.about-section .about-img .shape.shape-2 {
  bottom: 0;
  right: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section .about-img .shape.shape-2 {
    width: 75%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section .about-img .shape.shape-2 {
    right: 120px;
  }
}

@media (max-width: 767px) {
  .about-section .about-img .shape.shape-2 {
    bottom: 30px;
  }
}

.about-section .about-img-2 {
  position: relative;
  z-index: 1;
  padding: 75px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-section .about-img-2 {
    margin-bottom: 70px;
  }
}

.about-section .about-img-2 .shape {
  position: absolute;
  z-index: -1;
}

.about-section .about-img-2 .shape.shape-1 {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -70px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section .about-img-2 .shape.shape-1 {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .about-section .about-img-2 .shape.shape-1 {
    width: 70%;
  }
}

.about-section .about-img-2 .shape.shape-2 {
  bottom: 0;
  left: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-section .about-img-2 .shape.shape-2 {
    width: 75%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section .about-img-2 .shape.shape-2 {
    left: 120px;
  }
}

@media (max-width: 767px) {
  .about-section .about-img-2 .shape.shape-2 {
    bottom: 30px;
  }
}

.about-section .about-content ul li {
  padding-left: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #162447;
  margin-bottom: 25px;
  position: relative;
}

.about-section .about-content ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #5864FF;
  position: absolute;
  left: 0;
  top: 6.5px;
  -webkit-box-shadow: 0px 14px 15px rgba(78, 110, 241, 0.26);
  box-shadow: 0px 14px 15px rgba(78, 110, 241, 0.26);
}


.animate-on-scroll {
  opacity: 0;
}


.feature-extended-section .feature-extended-wrapper {
  padding: 70px 0;
  background: rgba(88, 100, 255, 0.1);
}

.feature-extended-section .single-feature-extended {
  padding: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-extended-section .single-feature-extended {
    padding: 30px 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-extended-section .single-feature-extended {
    padding: 30px 0px;
  }
}

.feature-extended-section .single-feature-extended .icon {
  font-size: 65px;
  line-height: 1;
  margin-bottom: 30px;
  color: #5864FF;
}

.feature-extended-section .single-feature-extended .content h3 {
  margin-bottom: 20px;
}

.feature-extended-section .single-feature-extended .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}


@media (max-width: 767px) {
  .subscribe-section .section-title h2 {
    font-size: 24px;
  }
}


.depoimentos-section {
  padding: 80px 0;
  background-color: var(--bg-alt);
   
  position: relative;
  overflow: hidden;
}

.depoimentos-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.depoimentos-subtitle {
  font-size: clamp(1rem, 3vw, 1.15rem);
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.depoimento-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.depoimento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


.privacy-policy-label {
    font-size: 0.85rem;
    color: #6c757d; 
}

.privacy-policy-label a {
    color: var(--primary); 
    text-decoration: underline;
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.depoimento-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.depoimento-nome {
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.depoimento-relacao {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
}

.depoimento-texto {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  color: #4a5568;
  line-height: 1.6;
  font-size: 1rem;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
}


.depoimentos-carousel-container {
  overflow: hidden;
  padding: 2rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.depoimentos-track {
  display: flex;
  width: fit-content;
  animation: depoimentos-scroll 40s linear infinite;
}

.depoimentos-carousel-container:hover .depoimentos-track {
  animation-play-state: paused;
}

.depoimento-card-wrapper {
  flex-shrink: 0;
  width: 400px; 
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .depoimento-card-wrapper {
    width: 80vw;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .subscribe-section .section-title h2 {
    font-size: 32px;
  }
}

.subscribe-section .subscribe-wrapper {
  background-image: url("../img/subscribe/subscribe-bg.svg");
  padding: 65px 50px 50px;
  border-radius: 30px;
}

@media (max-width: 767px) {
  .subscribe-section .subscribe-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .subscribe-section .subscribe-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.subscribe-section .subscribe-wrapper .subscribe-form {
  position: relative;
  margin-bottom: 15px;
}

.subscribe-section .subscribe-wrapper .subscribe-form input {
  width: 100%;
  padding: 20px 30px;
  padding-right: 142px;
  border-radius: 18px;
  background: #fff;
  color: #5B657E;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.subscribe-section .subscribe-wrapper .subscribe-form input:focus {
  -webkit-box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.35);
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.35);
}

.subscribe-section .subscribe-wrapper .subscribe-form input::-webkit-input-placeholder {
  opacity: 0.7;
  color: #5B657E;
}

.subscribe-section .subscribe-wrapper .subscribe-form input:-ms-input-placeholder {
  opacity: 0.7;
  color: #5B657E;
}

.subscribe-section .subscribe-wrapper .subscribe-form input::-ms-input-placeholder {
  opacity: 0.7;
  color: #5B657E;
}

.subscribe-section .subscribe-wrapper .subscribe-form input::placeholder {
  opacity: 0.7;
  color: #5B657E;
}

.subscribe-section .subscribe-wrapper .subscribe-form button {
  position: absolute;
  top: 2px;
  right: 2px;
  padding: 17.5px 25px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 18px;
}

@media (max-width: 767px) {
  .subscribe-section .subscribe-wrapper .subscribe-form button {
    position: static;
    margin-top: 20px;
    background: #fff;
    color: #5864FF;
    padding: 17.5px 35px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .subscribe-section .subscribe-wrapper .subscribe-form button {
    position: absolute;
    margin-top: 0px;
    color: #fff;
    background: #5864FF;
    padding: 17.5px 25px;
  }
}


@keyframes depoimentos-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); 
  }
}


.footer {
  background-image: url("../img/footer/footer-bg.png");
  background-size: cover;
  background-position: top right;
  padding-top: 260px;
  margin-top: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer {
    padding-top: 250px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 120px;
    background: #0d23e7;
  }
}

.footer .widget-wrapper .footer-widget {
  margin-bottom: 40px;
}

@media only screen and (min-width: 1400px) {
  .footer .widget-wrapper .footer-widget .desc {
    padding-right: 100px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .footer .widget-wrapper .footer-widget .desc {
    padding-right: 50px;
  }
}

.footer .widget-wrapper .footer-widget .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .widget-wrapper .footer-widget .socials li {
  margin-right: 20px;
}

.footer .widget-wrapper .footer-widget .socials li:last-child {
  margin-right: 0;
}

.footer .widget-wrapper .footer-widget .socials li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.footer .widget-wrapper .footer-widget .socials li a:hover {
  color: #5864FF;
  background: #fff;
}

.footer .footer-widget .logo a {
  color: #fff; 
}

.footer .widget-wrapper .footer-widget h3 {
  margin-bottom: 25px;
  color: #fff;
}

.footer .widget-wrapper .footer-widget ul.links li {
  font-size: 18px;
  line-height: 34px;
}

.footer .widget-wrapper .footer-widget ul.links li a {
  color: #fff;
}

.footer .widget-wrapper .footer-widget ul.links li a:hover {
  padding-left: 8px;
}

.m-mt-5 {
  margin-top: 5px;
}

.m-mt-10 {
  margin-top: 10px;
}

.m-mt-15 {
  margin-top: 15px;
}

.m-mt-20 {
  margin-top: 20px;
}

.m-mt-25 {
  margin-top: 25px;
}

.m-mt-30 {
  margin-top: 30px;
}

.m-mt-35 {
  margin-top: 35px;
}

.m-mt-40 {
  margin-top: 40px;
}

.m-mt-45 {
  margin-top: 45px;
}

.m-mt-50 {
  margin-top: 50px;
}

.m-mt-55 {
  margin-top: 55px;
}

.m-mt-60 {
  margin-top: 60px;
}

.m-mt-65 {
  margin-top: 65px;
}

.m-mt-70 {
  margin-top: 70px;
}

.m-mt-75 {
  margin-top: 75px;
}

.m-mt-80 {
  margin-top: 80px;
}

.m-mt-85 {
  margin-top: 85px;
}

.m-mt-90 {
  margin-top: 90px;
}

.m-mt-95 {
  margin-top: 95px;
}

.m-mt-100 {
  margin-top: 100px;
}

.m-mt-105 {
  margin-top: 105px;
}

.m-mt-110 {
  margin-top: 110px;
}

.m-mt-115 {
  margin-top: 115px;
}

.m-mt-120 {
  margin-top: 120px;
}

.m-mt-125 {
  margin-top: 125px;
}

.m-mt-130 {
  margin-top: 130px;
}

.m-mt-135 {
  margin-top: 135px;
}

.m-mt-140 {
  margin-top: 140px;
}

.m-mt-145 {
  margin-top: 145px;
}

.m-mt-150 {
  margin-top: 150px;
}

.m-mt-155 {
  margin-top: 155px;
}

.m-mt-160 {
  margin-top: 160px;
}

.m-mt-165 {
  margin-top: 165px;
}

.m-mt-170 {
  margin-top: 170px;
}

.m-mt-175 {
  margin-top: 175px;
}

.m-mt-180 {
  margin-top: 180px;
}

.m-mt-185 {
  margin-top: 185px;
}

.m-mt-190 {
  margin-top: 190px;
}

.m-mt-195 {
  margin-top: 195px;
}

.m-mt-200 {
  margin-top: 200px;
}

.m-mt-205 {
  margin-top: 205px;
}

.m-mt-210 {
  margin-top: 210px;
}

.m-mt-215 {
  margin-top: 215px;
}

.m-mt-220 {
  margin-top: 220px;
}

.m-mt-225 {
  margin-top: 225px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.pt-5 {
  padding-top: 5px;
}
.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}





.area{
  background: #02a0e9; 
  background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);  
  width: 100%;
  height:100vh;
  background-image: url(../img/hero/back.png);
  background-size: cover;
  background-blend-mode: multiply;
  background-position: center;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 10s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 25s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 1s;
    animation-duration: 20s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}



.titulo {
    font-size: 3rem;
    font-weight: 100;    
    color: #ffffff;
}

.titulo span {
  font-family: "Baloo Paaji 2", sans-serif;
  color: #ffdb25; 
  font-weight: 800;
  font-size: 5rem;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.subtitulo {
    font-family: "Baloo Paaji 2", sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.9;
}


.text-bl1
{
  font-family: "Baloo Paaji 2", sans-serif;
  font-weight: 600;
  font-size: 80px;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

.text-bl2
{
  font-family: "Baloo Paaji 2", sans-serif;
  font-style: italic;
  font-weight: 400;  
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.btn-agend
{
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  
  
  background: linear-gradient(45deg, #ff8c00, #ffc107, #ff8c00);
  background-size: 250% auto;
  background-position: 0% 50%;
  
  
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  
  animation: pulse-shadow 2.5s infinite;
}

.btn-agend:hover {
  background-position: 100% 50%;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255, 140, 0, 0.5);
  color: white;
}


.hero-buttons-container {
  display: flex;
  gap: 1rem; 
  align-items: center;
  flex-wrap: wrap; 
}


.btn-matricula {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-matricula:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-3px);
  color: white;
}


@media (max-width: 767px) {
  .hero-buttons-container {
    flex-direction: column; 
    align-items: stretch; 
    gap: 0.75rem; 
  }

  .btn-agend,
  .btn-matricula {
    width: 100%; 
    justify-content: center; 
  }
}



.btn-matricula-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  
  
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-matricula-nav:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
}

.sticky .btn-matricula-nav {
  background-color: #eef2ff; 
  color: #162447; 
  border-color: transparent; 
}

.sticky .btn-matricula-nav:hover {
  background-image: linear-gradient(to right, #fb923c, #f97316);
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}



.partners-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.partners-track {
  display: flex;
  width: fit-content;
  
}


.partners-carousel-container.scrolling .partners-track {
  animation: scroll-partners 40s linear infinite;
}

.partners-carousel-container:hover .partners-track,
.partners-carousel-container:hover .partners-track {
  animation-play-state: paused;
}

.partners-track .partner-logo {
  height: 60px; 
  margin: 0 2.5rem; 
  object-fit: contain;
  max-width: 180px; 
  
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.partners-track .partner-logo:hover {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 767px) {
  .partners-track .partner-logo {
    height: 40px;
    margin: 0 1.5rem;
  }
}


@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); 
  }
}


.success-section
{
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url("../img/hero/back-sucess.png");
  background-size: contain;
  background-position: center;
  background-blend-mode: multiply;
  background-repeat: no-repeat;
  background-color: #f0f2f5; 
}

.card-custom {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07);
}

.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
}


@keyframes pulse-shadow {
  0% {
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
  }
  50% {
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.6);
  }
  100% {
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
  }
}
.card-custom.border-blue:hover { border-color: #58b4ff; }
.card-custom.border-orange:hover { border-color: #FF8C00; }
.card-custom.border-yellow:hover { border-color: #ffdb25; }

.card-custom .icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.text-blue { color: #58b4ff; }
.text-orange { color: #FF8C00; }
.text-yellow { color: #ffdb25; }

.highlight-orange {
  font-size: 4rem;
  font-weight: 800;
  color: #FF8C00;
  line-height: 1;
}


@media (max-width: 767px) {
  .success-section .row.mt-100 {
    margin-top: 50px !important; 
  }
  .card-custom {
    padding: 25px 20px; 
  }
}
@media (max-width: 480px) {
  .success-section .row.mt-100 {
    margin-top: 30px !important; 
  }
  .card-custom {
    padding: 20px 15px; 
  }
}


@media (max-width: 767px) {
  .highlight-orange {
    font-size: 3rem; 
  }
}

@media (max-width: 480px) {
  .highlight-orange {
    font-size: 2.5rem; 
  }
}




.section-bg {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.bg-alt {
  background-color: var(--bg-alt);
}
.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #2d3748;
  text-shadow: 0 2px 15px rgba(14, 165, 233, 0.1);
}


.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary {
  background-image: linear-gradient(to right, #fb923c, #f97316);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}
.btn-primary:hover {
  color: white;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(251, 146, 60, 0.4);
}


.level-tabs .nav-link {
  border: none;
  background-color: transparent !important;
  box-shadow: none !important;
  color: #6c757d;
  padding: 0.75rem 1.25rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  font-weight: 600;
  z-index: 1;
  border-radius: 50px;
  cursor: pointer;
}
.level-tabs .nav-link.active {
  color: var(--blue);
}


.level-content-pane {
  display: none;
  opacity: 0;
}
.level-content-pane.active {
  display: flex;
  
  animation: fadeIn 0.4s ease-out 0.3s forwards;
}
.level-content-pane.fading-out {
  
  animation: fadeOut 0.3s ease-in forwards;
}


.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}


.administrativo-section {
  position: relative;
  width: 100%;
  padding: 2rem 0 4rem 0;
  overflow: hidden;
  padding-bottom: 8rem; 
  
  scroll-margin-top: 70px;
  background-color: #f5c800; 
}


.administrativo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/hero/back.png');
  opacity: 0.40;
  
}

@keyframes waves {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.administrativo-section::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  filter: blur(80px);
  opacity: .35;
  animation: glow 8s infinite alternate;
}

@keyframes glow {
  0% { transform: translate(0,0); opacity: .25; }
  100% { transform: translate(60px, -40px); opacity: .45; }
}


.section-header {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.section-header h2 {
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 700;
  margin: 0;
}

.section-header p {
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  opacity: 0.9;
  margin-top: .5rem;
}


.administrativo-carousel-container {
  position: relative;
  z-index: 4;
  min-height: 450px; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.administrativo-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  width: 85vw;
  max-width: 280px; 
  position: absolute;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), opacity .5s ease;
  transform-origin: center;
  transform: translate(-50%, -50%) scale(.7);
  opacity: 0;
}

.administrativo-card .card-photo {
  grid-row: 1 / 2;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  transition: transform .5s ease;
}

.administrativo-card:hover .card-photo {
    transform: scale(1.1);
}

.administrativo-card .card-content {
  grid-row: 2 / 3;
  padding: 1.5rem;
  text-align: center;
}

.administrativo-card .card-content h4 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
}

.administrativo-card .card-content p {
  color: #475569;
  font-size: 1rem;
  line-height: 1.5;
} 

.administrativo-card.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
}

.administrativo-card.prev {
  transform: translate(-100%, -50%) scale(.8) rotateY(-15deg);
  opacity: .5;
  z-index: 2;
}
.administrativo-card.next {
  transform: translate(0%, -50%) scale(.8) rotateY(15deg);
  opacity: .5;
  z-index: 2;
}

.administrativo-card.hide-right {
  transform: translate(-50%, -50%) scale(.7);
}



.slider-arrow {
  position: absolute;
  bottom: 0; 
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);

  cursor: pointer;
  transition: .3s ease;
  z-index: 5;
}

.slider-arrow:hover {
  background: rgba(0,0,0,0.45);
  transform: scale(1.1);
}

.slider-arrow svg {
  stroke: white;
  stroke-width: 2.5px;
}

.slider-arrow.prev { left: 50%; transform: translateX(-150%); } 
.slider-arrow.next { right: 50%; transform: translateX(150%); } 


.slider-pagination {
  position: absolute;
  bottom: 0.5rem; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 5;
  max-width: 90vw;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pagination-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,.3);
  cursor: pointer;
  transition: .3s;
}

.pagination-dot.active {
  background: #000;
  transform: scale(1.3);
}


@media (min-width: 768px) {
  .administrativo-card {
    max-width: 280px;
  }
  .administrativo-card.prev {
    transform: translate(-120%, -50%) scale(.85) rotateY(-16deg);
  }

  .administrativo-card.next {
    transform: translate(20%, -50%) scale(.85) rotateY(16deg);
  }

  .slider-arrow {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .slider-arrow.prev { left: 1rem; transform: translateY(-50%) translateX(0); }
  .slider-arrow.next { right: 1rem; transform: translateY(-50%) translateX(0); }

  .slider-pagination {
    bottom: -3rem;
  }
}
 


.sec-tecnologia {
  background: linear-gradient(135deg, #ffffff 0%, #f3f6ff 100%);
   
  padding: 70px 0;
}


.sec-tech-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #007bff;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-tech-subtitle {
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 1rem;
  color: #5f6a7a;
}


.glass-card {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 25px;
  transition: 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%; 
}

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


.tech-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #008cff, #00e0ff);
  border-radius: 12px;
  margin-bottom: 12px;
}

.tech-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1b1f27;
}

.tech-text {
  color: #4f5564;
  font-size: 0.95rem;
  line-height: 1.5;
}


.tech-main-img {
  max-width: 320px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.12));
  transition: 0.3s ease;
}

.tech-main-img:hover {
  transform: scale(1.03);
}


.tech-btn {
  background: linear-gradient(90deg, #009cff, #00d8ff);
  padding: 14px 40px;
  color: #fff;
  border-radius: 40px;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.tech-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(deg, #0084ff, #00c6ff);
}


.tech-footer {
  color: #6b7687;
  font-size: 0.95rem;
}


@media (max-width: 768px) {
  .sec-tech-title {
    font-size: 1.7rem;
  }
  .tech-main-img {
    max-width: 240px;
  }
}



@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}




#secao-contato-mapa {
  scroll-margin-top: 70px;
}



@keyframes contatoMapaFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}


.contato-mapa-info-card { 
    background: linear-gradient(135deg, #ff9300 0%, #ffe100 100%);
    padding: 3rem;
    color: white;
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px; 
    box-shadow: 0 10px 30px rgba(255, 147, 0, 0.3);
    position: relative;
    z-index: 1;
}


.contato-mapa-icone {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: contatoMapaFloat 3s ease-in-out infinite;
    color: #fff;
}


.contato-mapa-titulo {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contato-mapa-descricao {
    color: #5e3a00;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}


.contato-mapa-lista {
    text-align: left;
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    width: 100%;
    max-width: 400px;
}

.contato-mapa-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #3d2500;
    font-weight: 600;
}

.contato-mapa-item:last-child {
    margin-bottom: 0;
}

.contato-mapa-item i {
    font-size: 1.2rem;
    color: #fff;
    background: rgba(0,0,0,0.1);
    padding: 5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.contato-mapa-btn {
    background-color: #ffffff;
    color: #ff9300;
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
}

.contato-mapa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background-color: #fffdf5;
    color: #e68200;
}


.contato-mapa-card-map {
    height: 100%;
    min-height: 400px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contato-mapa-card-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


@media (min-width: 992px) {
    
    .contato-mapa-info-card {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        box-shadow: none; 
    }

    .contato-mapa-card-map {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        box-shadow: none;
    }

    
    .contato-mapa-container {
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        border-radius: 24px;
        overflow: hidden;
    }
}

.full-screen-section {
  min-height: 100vh;
  scroll-margin-top: 80px; 
}


#sobre-nos-section, #ensinos-section, #administrativo-section, #secao-contato-mapa, #depoimentos-section, #tecnologia-section {
  scroll-margin-top: 80px; 
}



.contato-mapa-modal-header {
    background: linear-gradient(90deg, #ff9300 0%, #ffe100 100%);
    color: white;
    border: none;
}


.carousel-img-cover { 
  height: 450px; 
  object-fit: cover; 
  object-position: center; 
}


.carousel-modern-shadow {
  border-radius: 1.5rem !important; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
}





.btn-agend {
  text-decoration: none !important;
}


.hero-main-img {
  max-width: 80vh;
  max-height: 80vh;
}


.partner-logo-sm {
  max-width: 128px;
}

.partner-logo-md {
  max-width: 140px;
}


.level-content-pane .text-color-yellow {
  color: var(--yellow);
}

.level-content-pane .text-color-red {
  color: var(--red);
}

.level-content-pane .text-color-orange {
  color: var(--orange);
}

.level-content-pane .text-color-blue {
  color: var(--blue);
}


.btn-confirm-agendamento {
  background: linear-gradient(90deg, #ff9300 0%, #ffc400 100%);
  border: none;
  justify-content: center;
}


.themewagon-link {
  color: #bfc7d7;
}

.themewagon-link:hover {
  color: #fff;
}
#modalVideo {
  z-index: 999999 !important;
}


#matriculasModal {
  z-index: 999999 !important;
}


#matriculasModal .modal-content {
  background: linear-gradient(145deg, #fdfdff, #f1f4ff);
  border-radius: 20px;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

@media (min-width: 576px) {
    #matriculasModal .modal-dialog {
        max-width: 500px; 
    }
}


#matriculasModal .modal-body {
    padding: 1rem 0 1.5rem; 
}


#matriculasModal .modal-body > p, #matriculasModal .modal-body > .text-center {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
#matriculasModal .modal-header {
  border-bottom: none;
  padding: 1.5rem 1.5rem 0.5rem;
}

#matriculasModal .modal-title {
  font-weight: 700;
  color: #162447;
  font-size: 1.5rem;
}

#matriculasModal .btn-close {
  filter: grayscale(1) brightness(1.5);
}


.btn-matricula-cta {
  background: linear-gradient(45deg, #ff8c00, #ffc107);
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-matricula-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  color: white;
}


.matricula-modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, #fdfdff, #f1f4ff);
}

.matricula-modal-content .modal-header {
  border-bottom: 1px solid #e9ecef;
  text-align: center;
  justify-content: center;
}

.matricula-modal-content .modal-title {
  font-weight: 700;
  color: var(--cor-texto-principal);
}

.matricula-modal-content .modal-body {
    padding: 1.5rem 2rem;
}

.matricula-modal-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: inline-block;
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


.matricula-options-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-matricula-opcao, .btn-rematricula-opcao {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex: 1; 
  position: relative;
  overflow: hidden;
}

.btn-matricula-opcao i, .btn-rematricula-opcao i {
  font-size: 1.8rem;
  background: rgba(255, 255, 255, 0.3);
  padding: 0.5rem;
  border-radius: 8px;
}

.btn-matricula-opcao small, .btn-rematricula-opcao small {
  opacity: 0.8;
}


.btn-matricula-opcao {
  background-color: #e0f2fe; 
  color: #075985; 
  border-color: #bae6fd;
}

.btn-matricula-opcao:hover {
  background-color: #ccecfd;
  color: #0369a1;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.2);
}


.btn-rematricula-opcao {
  background-color: #ffedd5; 
  color: #9a3412; 
  border-color: #fed7aa;
}

.btn-rematricula-opcao:hover {
  background-color: #fde68a;
  color: #7c2d12;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
}


.btn-matricula-opcao::before, .btn-rematricula-opcao::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.btn-matricula-opcao:hover::before, .btn-rematricula-opcao:hover::before {
    transform: translate(-50%, -50%) scale(1);
}


@media (max-width: 575px) {
    .matricula-options-container {
        flex-direction: column;
    }
    .matricula-modal-content .modal-body {
        padding: 1.5rem;
    }
}


.rocket-button-container {
  position: relative;
  display: inline-block; 
}


.rocket-button-container::before,
.rocket-button-container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.7); 
  animation: rocket-spark 3s infinite;
  opacity: 0;
  z-index: -1;
}

.rocket-button-container::before {
  width: 15px;
  height: 15px;
  bottom: -20px;
  left: 20%;
  animation-delay: 0.5s;
}

.rocket-button-container::after {
  width: 10px;
  height: 10px;
  bottom: -15px;
  right: 20%;
  animation-delay: 1s;
}

@keyframes rocket-spark {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-40px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-80px) scale(0.5);
    opacity: 0;
  }
}


.rocket-button-container:hover .btn-matricula-cta {
  animation: shake-rocket 0.5s ease-in-out;
}



.btn-app-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-app-download:hover {
  background-color: #34495e;
  color: #fff;
  transform: translateY(-2px);
}

.btn-app-download i {
  font-size: 2rem;
}

.btn-app-download div {
  text-align: left;
  line-height: 1.2;
}

.btn-app-download small {
  font-size: 0.75rem;
  display: block;
  opacity: 0.8;
}

.btn-app-download strong {
  font-size: 1rem;
  font-weight: 600;
}




.gallery-card {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
    background: #fff;
}

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

.gallery-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.07);
}


.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255,255,255,0.15);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}


.about-card {
  background: linear-gradient(145deg, #f9fafb, #f0f2f5);
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  text-align: center;
}

.about-card .card-title {
  color: #162447;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-card .card-text {
  color: #5B657E;
  font-size: 1.1rem;
  line-height: 1.6;
}

.objective-card {
  background: linear-gradient(145deg, #ffffff, #f7f9fc);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 1.5rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  
  position: relative;
  overflow: hidden;
}


.objective-card-container {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
  
  perspective: 1000px;

}


.objective-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.4), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.objective-card:hover {
  
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15);
  border-color: var(--orange);
  
  transform: rotateY(var(--rotate-y, 0)) rotateX(var(--rotate-x, 0)) translateZ(10px);
}


.objective-card-container:hover .objective-card::before {
  opacity: 1;
}

.objective-icon {
  font-size: 2.5rem;
  color: var(--yellow);
  text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
  margin-bottom: 1rem;
  display: block;
  transition: text-shadow 0.3s ease;
}

.objective-card:hover .objective-icon {
  text-shadow: 0 0 25px rgba(249, 115, 22, 0.7);
}



.gallery-section {
    
    padding: 60px 0;
}

.gallery-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}


.gallery-card {
    position: relative;
    width: 280px;
    height: 380px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    transition: transform .4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.gallery-card:hover {
    transform: translateY(-10px);
}


.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-card:hover img {
    transform: scale(1.07);
}


.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all .45s ease;
}


.gallery-card:hover .gallery-overlay {
    bottom: 0;
    opacity: 1;
}


.gallery-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
}


.gallery-overlay p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: .85;
}


.gallery-overlay .gal-btn {
    background: rgba(255,255,255,0.9);
    color: #000;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    width: fit-content;
    transition: background 0.3s;
}

.gallery-overlay .gal-btn:hover {
    background: #fff;
}



.container-moment {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10vmin;
  overflow: hidden;
  transform: skew(5deg);

  .card-moment  {
    flex: 1;
    transition: all 1s ease-in-out;
    height: 75vmin;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid transparent;

    
    &::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 30%;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      transition: height 0.5s ease-in-out;
      z-index: 1;
    }

    .card__head {
      color: #162447; 
      text-shadow: none; 
      background: rgba(255, 176, 30, 0.993); 
      padding: 0.5em;
      transform: rotate(-90deg);
      transform-origin: 0% 0%;
      transition: all 0.5s ease-in-out;
      min-width: 100%;
      text-align: center;
      position: absolute;
      bottom: 0;
      left: 0;
      font-size: 1.2em;
      white-space: nowrap;
      z-index: 2;
    }

    &:hover {
      flex-grow: 10;
      img {
        filter: grayscale(0);
      }
      
      &::after {
        height: 50%;
      }
      .card__head {
        text-align: center !important;
        top: calc(100% - 2.5em);
        color: white; 
        background: rgba(0, 0, 0, 0.7); 
        text-shadow: 0 1px 5px rgba(0,0,0,0.5); 
        font-size: 2.2em;
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        transform: rotate(0deg) skew(-5deg);
      }
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top; 
      transition: filter 1s ease-in-out, transform 0.8s ease-in-out;
      filter: grayscale(100%);
    }
    &:not(:nth-child(5)) {
      margin-right: -2em; 
    }
  }
}

.gallery-track {
  display: flex;
  width: 100%;
}



@media (max-width: 768px) {
  
  .container-moment {
    transform: skew(0deg); 
    margin: 0;
    padding: 0;
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
  }

  .container-moment::-webkit-scrollbar {
    display: none; 
  }

  .container-moment .card-moment {
    flex: 0 0 80%; 
    max-width: 300px; 
    height: 400px; 
    scroll-snap-align: center; 
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
  }
  
  .gallery-track {
    display: flex;
    gap: 1rem;
    padding: 2rem 1.5rem; 
  }

  .container-moment .card-moment img {
    filter: grayscale(0);
    transition: transform 0.6s ease-out; 
  }

  .container-moment .card-moment .card__head {
    position: absolute;
    transform: none;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2.5rem 1rem 1rem;
    font-size: 1.1rem;
  }
}


img.lazy-load {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img.lazy-loaded {
  opacity: 1;
}


.feature-card-infantil {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #fde68a; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInFade 0.5s ease-out forwards;
}

.feature-card-infantil:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.2); 
}


@keyframes slideInFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-icon-infantil {
  font-size: 1.8rem;
  color: var(--yellow);
}

.feature-title-infantil {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.feature-text-infantil {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.4;
  margin: 0;
}


.feature-card-fundamental {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #fed7aa; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInFade 0.5s ease-out forwards;
}

.feature-card-fundamental:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2); 
}

.feature-icon-fundamental {
  font-size: 1.8rem;
  color: var(--orange);
}

.feature-title-fundamental, .feature-title-medio {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.feature-text-fundamental, .feature-text-medio {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.4;
  margin: 0;
}


.feature-card-medio {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #bfdbfe; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInFade 0.5s ease-out forwards;
}

.feature-card-medio:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2); 
}

.feature-icon-medio {
  font-size: 1.8rem;
  color: var(--blue);
}


.popover {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  background-color: transparent;
}

.popover-body {
  padding: 0;
}


.portal-coming-soon-card {
  padding: 1.5rem;
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
  width: 260px;
}

.portal-card-icon {
  font-size: 2.5rem;
  color: var(--blue);
  margin-bottom: 1rem;
  display: inline-block;
  animation: icon-tada 2s ease-in-out infinite;
}

.portal-card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #162447;
  margin-bottom: 0.25rem;
}

.portal-card-text {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}

@keyframes icon-tada {
  0%, 80%, 100% { transform: scale(1) rotate(0deg); }
  90% { transform: scale(1.1) rotate(-5deg); }
  95% { transform: scale(1.1) rotate(5deg); }
}


.honeypot-field {
  display: none;
  visibility: hidden;
}


@media (max-width: 480px) {
  .partners-track .partner-logo {
    height: 45px; 
    margin: 0 1.5rem; 
  }
}




.marquee-session {
    
    background-color: var(--color-bg);
    color: var(--color-text);
    padding: 4rem 1rem; 
    width: 100%;
    
    
    display: flex;
    flex-direction: column;
    align-items: center; 

    
    opacity: 0;
    transition: opacity 0.5s ease-out;

    overflow: hidden; 
}





.marquee-wrapper {
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    gap: 3.5rem; 
}


.main-title {
    text-align: center;
    font-weight: 800; 
    color: var(--color-primary); 
    padding-bottom: 0.5rem; 
    width: 100%;
    
    
    font-size: 1.875rem; 
}

.subtitle {
    text-align: center;
    color: #6b7280; 
    font-weight: 400;
    margin-bottom: 2rem;
    font-size: 1rem;
}

@media (min-width: 640px) { 
    .main-title {
        font-size: 2.5rem; 
    }
}

@media (min-width: 768px) { 
    .main-title {
        font-size: 3.5rem; 
    }
}



.marquee {
    --duration: 60s;
    --gap: var(--space);

    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    width: 100%;
    font-family: "Corben", system-ui, sans-serif;
    font-size: clamp(1.25rem, 0.5rem + 3vw, 2.5rem);
    line-height: 1.5;
    
    
    transform: skewY(-3deg);
    transition: transform 0.3s ease;
}

@media (max-width: 640px) {
    
    .marquee {
        transform: skewY(0deg); 
        padding: 0.5rem 0; 
    }
}

.marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
    .marquee__group {
        animation-play-state: paused;
    }
}

.marquee__group img {
    max-width: clamp(var(--image-size-base), 1rem + 20vmin, var(--image-size-max));
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); 
    transition: transform 0.3s ease;
    filter: brightness(0.95); 
}

.marquee__group img:hover {
    transform: scale(1.05);
    filter: brightness(1.0); 
}

.marquee__group p {
    
    background-image: linear-gradient(
        75deg,
        #3b82f6 0%,  
        #f97316 50%, 
        #facc15 100% 
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee--borders {
    border-block: 3px solid var(--color-border); 
    padding-block: 0.75rem;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: calc(var(--duration) / -2);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}



.secao-titulo {
    text-align: center;
    max-width: 900px;
    width: 100%;
    margin: 0 auto; 
}


.secao-titulo .badge {
    display: inline-block;
    background-color: var(--cor-laranja-fundo);
    color: var(--cor-laranja-texto);
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 24px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.secao-titulo .badge:hover {
    transform: scale(1.05);
}


.secao-titulo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cor-texto-principal);
    line-height: 1.2;
    margin: 0;
}


@media (min-width: 768px) {
    .secao-titulo h2 {
        font-size: 3.75rem; 
    }
}


.destaque {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.destaque svg {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none;
    overflow: visible;
}


.destaque path {
    
    stroke: var(--cor-risco);
    
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: desenharRisco 1.5s forwards ease-out 0.3s;
}

@keyframes desenharRisco {
    to { stroke-dashoffset: 0; }
}


.offcanvas {
  background-color: #f8f9fa;
  border-right: 1px solid #dee2e6;
  transition: transform 0.3s ease-in-out;
}

.offcanvas-header {
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 1.5rem;
}

.offcanvas-title a {
  color: var(--cor-texto-principal);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.offcanvas-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.offcanvas-body .navbar-nav .nav-item {
  margin-bottom: 0.5rem;
}

.offcanvas-body .navbar-nav .nav-item a {
  color: var(--cor-texto-secundario);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.offcanvas-body .navbar-nav .nav-item a:hover,
.offcanvas-body .navbar-nav .nav-item a.active {
  background-color: #e9ecef;
  color: var(--cor-texto-principal);
}

.offcanvas-footer {
  margin-top: auto; 
  padding-top: 1.5rem;
  text-align: center;
  color: var(--cor-texto-secundario);
}

.offcanvas-footer .socials a {
  font-size: 1.5rem;
  color: var(--cor-texto-secundario);
  margin: 0 0.75rem;
  transition: color 0.2s ease;
}
.offcanvas-footer .socials a:hover {
  color: var(--primary);
}

.secao-titulo p {
    margin-top: 32px;
    color: var(--cor-texto-secundario);
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



.trabalhe-conosco-card-section {
    padding: 60px 0;
    background-color: #f8f9fa; 
}

.trabalhe-conosco-card {
    background: linear-gradient(135deg, #ffffff, #f1f4ff);
    border: none;
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trabalhe-conosco-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.trabalhe-conosco-card .card-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--cor-texto-principal);
    margin-bottom: 1rem;
}

.trabalhe-conosco-card .card-text {
    font-size: 1.1rem;
    color: var(--cor-texto-secundario);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-trabalhe {
    background: linear-gradient(45deg, #3b82f6, #0ea5e9); 
    color: white;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-cta-trabalhe:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    color: white;
}


.trabalhe-conosco-modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.trabalhe-conosco-modal-header {
    background-color: #f8f9fa; 
    color: var(--cor-texto-principal);
    border-bottom: 1px solid #dee2e6; 
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    justify-content: center; 
    align-items: center;
    position: relative; 
}

.trabalhe-conosco-modal-header .btn-close {
    position: absolute;
    right: 1.5rem; 
}


.btn-submit-curriculo {
    background: linear-gradient(45deg, #3b82f6, #0ea5e9); 
    border: none;
    transition: all 0.3s ease;
    justify-content: center; 
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-submit-curriculo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
    color: white;
}



.privacy-last-updated {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 1.5rem;
}

#privacyPolicyContent p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #495057;
}

.privacy-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cor-texto-principal);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.privacy-list, .privacy-sublist {
    font-size: 0.95rem;
    color: #495057;
}

.privacy-sublist {
    padding-left: 1.5rem; 
}
