* {
  font-family: Arial, Helvetica, sans-serif;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  left: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white) !important;
}

.btn.btn-primary:hover {
  background: #0f1d4d;
  box-shadow: 0px 0px 10px 0px #0abab5;
  border: none;
}

.btn.btn-secondary {
  color: var(--bs-white);
}

.btn.btn-secondary:hover {
  background: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}
/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-white);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark);
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid;
    border-left: 0;
    border-style: solid;
    z-index: 999;
    color: #fcca281f;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
    border: none;
  }

  .navbar-light .navbar-nav .nav-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .sticky-top.navbar-light .navbar-nav .nav-item::before {
    bottom: 0;
  }

  .navbar-light .navbar-nav .nav-item::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: transparent transparent var(--bs-primary) transparent;
    opacity: 0;
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-item:hover::after,
  .navbar-light .navbar-nav .nav-item.active::after {
    bottom: 1px;
    opacity: 1;
  }

  .navbar-light .navbar-nav .nav-item:hover::before,
  .navbar-light .navbar-nav .nav-item.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}
/*** Carousel Hero Header Start ***/
.carousel-header {
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.carousel-indicators {
  display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  padding: 25px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
  left: 0;
  border-left: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
}

.carousel .carousel-control-next .carousel-control-next-icon {
  right: 0;
  border-right: 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
  background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
  position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: end;
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); */
  background-size: cover;
}

.carousel-caption-1-content {
  text-align: center;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
  display: flex;
  justify-content: center;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 100px;
  display: flex;
  align-items: center;
  text-align: center;
  /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); */
  background-size: cover;
}

.carousel-caption-2-content {
  text-align: start;
  padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
  display: flex;
  justify-content: start;
}

@media (max-width: 992px) {
  .carousel .carousel-inner .carousel-item {
    height: 700px;
    margin-top: -100px;
  }

  .carousel .carousel-inner .carousel-item img {
    height: 700px;
    object-fit: cover;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption-1 {
    max-width: 100% !important;
    justify-content: center;
  }

  .carousel-caption-1-content {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .carousel-caption-1-content .carousel-caption-1-content-btn {
    justify-content: center;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption-2 {
    max-width: 100% !important;
    justify-content: center;
  }

  .carousel-caption-2-content {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .carousel-caption-2-content .carousel-caption-2-content-btn {
    justify-content: center;
  }

  .carousel .carousel-control-prev .carousel-control-prev-icon,
  .carousel .carousel-control-next .carousel-control-next-icon {
    display: none;
  }
}

.modal .modal-header {
  height: 100px;
}

#searchModal .modal-content {
  background: rgba(255, 255, 255, 0.6);
}

/* .modal-content {
  background: #0e204e!important;
} */
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)),
    url(../img/breadcrumb.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding: 60px 0 60px 0;
  }
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* background: linear-gradient(135deg, #ffffff 0%, #e9e9e9 100%); */
  background-color: #0f1d4d;
  border-radius: 10px;
  border: 1px solid #fbd149;
  transition: 0.5s;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  max-height: 100%;
  p {
    color: white;
    font-weight: bold;
  }
}
/* #0f1d4d #0ABAB5 */

.feature .feature-item:hover {
  /* background: rgba(255, 196, 0, 0.507); */
  /* background: #fbd149; */
  /* border: 1px solid #0abab5; */
  border: 1px solid #fbd149;
  box-shadow: 0 0 25px 0 #0f1d4d;
  box-shadow: 0 0 10px 0 black;
  transform: scale(1.05);
  color: #ffffff;
  font-weight: bold;
  /* p {
    background-color: #0abab5;
    padding: 10px;
    border-radius: 10px;
    z-index: 999;
  } */
  h3 {
    color: #0abab5;
  }
  img {
    opacity: 1 !important;
  }
  /* p{
    color: #0abab5;
  } */
}

.feature .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
}
.feature .feature-item:hover .feature-icon {
  /* background-color: var(--bs-secondary) !important; */
}

.feature .feature-item .feature-icon i {
  transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
  transform: rotate(360deg);
  color: var(--bs-white) !important;
}

.feature .feature-item a.btn {
  transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
  color: var(--bs-secondary) !important;
}
/*** Features End ***/

/*** About Start ***/
.about .about-img {
  position: relative;
  padding-bottom: 30px;
  margin-top: 30px;
  margin-left: 30px;
}

.about .about-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  top: -30px;
  right: 0;
  border-radius: 10px;
  /* background: var(--bs-secondary); */
  background: #fbd149;
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  left: -30px;
  bottom: 30px;
  border-radius: 10px;
  /* background: var(--bs-secondary); */
  background: #fbd149;
}

.about .about-img .about-exp {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
  font-size: 30px;
  font-weight: bold;
  /* background: var(--bs-secondary); */
  background: #fbd149;
  /* color: #252525; */
  color: white;
  /* border: 1px solid var(--bs-secondary); */
  border: 1px solid #fbd149;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
  position: relative;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  border: 1px solid #00d1f9;
  font-weight: bold;
}

.service-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  /* background: #fbd149; */
  /* border: 2px solid #fbd149; */
  transition: 0.5s;
  z-index: 1;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.service-item:hover::after {
  width: 100%;
  height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
  position: relative;
  z-index: 2;
  h3 {
    text-shadow: #000 1px 1px 1px;
    color: #00d1f9 !important;
  }
  h6{
    text-shadow: #000 1px 1px 1px;
    color: #00d1f9 !important;
  }
  p {
    font-weight: bold;
  }
  /* p{
    color: #00d1f9!important;
  } */
}
.service-item {
  background-color: var(--bs-secondary);
  p {
    color: white;
  }
}
.service-item .service-content a,
.service-item .service-content p {
  transition: 0.5s;
}

.service-item:hover .service-content h3 {
  color: white;
}

.service-item:hover .service-content p {
  color: var(--bs-white);
}

.service-item .service-btn {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  transition: 0.5s;
}

.service-item .service-btn i {
  transition: 0.5s;
}

.service-item:hover .service-btn {
  /* background: var(--bs-white); */
}

.service-item:hover .service-btn i {
  transform: rotate(360deg);
  /* color: #00d1f9 !important; */
}
/*** Service End ***/

/*** Counter Start ***/
.counter {
  position: relative;
  overflow: hidden;
  background: url(../img/banner-01-footer.jpg);
  /* #0f1d4d #00d1f9*/
  background-position: center;
  background-size: cover;
}

.counter .counter-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.counter .counter-item .counter-item-icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.counter-item-icon:hover {
  transform: scale(1.1);
  background: #fbd149 !important;
}
/*** Counter End ***/

/*** Products Start ***/
.product .product-item {
  border: 1px solid rgba(196, 211, 211, 0.9);
  border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
  background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 10px;
  background: var(--bs-primary);
  color: var(--bs-white);
  z-index: 2;
}

.blog .blog-item .blog-content a {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
  color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid var(--bs-primary);
  border-radius: 10px;
}
.team .team-item:hover {
  border: 1px solid #fbd149;
}

.team .team-item .team-inner {
  transition: 0.5s;
}
.team .team-item:hover .team-inner {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
  position: relative;
  z-index: 2;
}

.team .team-item .team-inner .team-img::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(247, 220, 69, 0.2);
  transition: 0.5s;
  z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
  height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
  position: absolute;
  left: 10px;
  bottom: 10px;
  transition: 0.5s;
  z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
  opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
  position: absolute;
  bottom: 0;
  left: -100%;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  display: inline-flex;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon {
  left: -25px;
}
.team-info {
  background-color: white;
  p {
    color: #00d1f9;
  }
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 88px;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-left: 20px;
  margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-right: 15px;
  border: 1px solid var(--bs-primary);
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid var(--bs-secondary);
  background: var(--bs-primary) !important;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
}

@media (max-width: 992px) {
  .owl-carousel.testimonial-carousel {
    padding-top: 30px;
  }

  .testimonial .owl-nav .owl-prev,
  .testimonial .owl-nav .owl-next {
    top: -30px;
  }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark);
}
/*** copyright end ***/

.text-justify {
  text-align: justify;
  hyphens: auto;
}

/* Estilos gerais do formulário */
.php-email-form {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  margin: 0 auto;
}

/* Estilos para os inputs e textarea */
.form-control {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #929292;
  box-shadow: 0 0 8px rgba(155, 155, 155, 0.25);
  outline: none;
}

.form-control::placeholder {
  color: var(b-secundary);
}
.bg-gray {
  background: rgb(248, 248, 248);
}
.icons {
  color: #0abab5 !important;
  font-size: 28px;
}
.icons:hover {
  transform: scale(1.1) !important;
  color: white !important;
}
.icon-face:hover {
  color: #1877f2 !important;
}
.icon-tiktok:hover {
  color: #252525 !important;
}
.icon-insta:hover {
  /* color: linear-gradient(45deg, #405de6, #833ab4, #c13584, #e1306c, #fd1d1d); */
  color: #c13584 !important;
}
.icon-whats:hover {
  color: #25d366 !important;
}
.text-black {
  color: #252525 !important;
}
.accordion-button {
  font-weight: bold;
  color: #0f1d4d;
  color: #252525 !important;
  background-color: transparent;
  border: none; /* Removida a borda */
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: transparent;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background-color: transparent;
  border: none; /* Removida a borda */
  border-radius: 0 0 8px 8px;
  padding: 20px;
}

.accordion-item {
  margin-bottom: 10px;
}
.link-footer:hover {
  color: #0abab5 !important;
}
svg {
  width: 2.25em;
  transform-origin: center;
  animation: rotate4 2s linear infinite;
}

#circle {
  fill: none;
  stroke: hsl(0, 0%, 100%);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}
#circle-modal {
  fill: none;
  stroke: hsl(0, 0%, 100%);
  stroke-width: 2;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
  100% {
    /* transform: rotate(360deg); */
  }
}

@keyframes dash4 {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dashoffset: -125px;
  }
}
:root {
  --tiktok-pink: #fe2c55;
  --tiktok-teal: #25f4ee;
  --tiktok-black: #000000;
}

body {
  background-color: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.tiktok-section {
  padding: 3rem 0;
  /* background: linear-gradient(135deg, #ffffff 0%, #e9e9e9 100%); */
  background: #fbd149;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  background: linear-gradient(45deg, #0abab5, #fbd149);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
}

.tiktok-logo {
  font-size: 2rem;
  margin-right: 10px;
  /* background: linear-gradient(45deg, #0abab5, #fbd149); */
  background: #0abab5;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.video-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid var(--bs-primary);
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #fbd149;
}

.video-container {
  position: relative;
  padding-bottom: 125%; /* Proporção 4:5 comum no TikTok */
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container blockquote {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1rem;
}

.video-author {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--tiktok-black);
  margin: 0;
}

.video-caption {
  color: #495057;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-stats {
  display: flex;
  gap: 15px;
}

.stat {
  display: flex;
  align-items: center;
  color: #6c757d;
  font-size: 0.8rem;
}

.stat i {
  margin-right: 5px;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-btn {
  border: none;
  background: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(45deg, #0abab5, #fbd149);
  color: white;
}

.load-more {
  display: block;
  margin: 2rem auto 0;
  padding: 0.8rem 2rem;
  /* background: linear-gradient(45deg, #0abab5, #fbd149); */
  background-color: #0abab5;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.load-more:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
  .carousel .carousel-inner .carousel-item {
    height: 100vh !important;
    margin-bottom: 0;
    p {
      display: none;
    }
    .carousel-caption-2-content-btn {
      display: flex;
      flex-direction: column;
      a {
        margin-bottom: 10px;
      }
    }
  }
  .carousel .carousel-inner .carousel-item img {
    width: 200px !important;
    height: auto;
  }
}
.feature-item > *:not(img) {
  position: relative;
  z-index: 1;
}

.service-content > *:not(img) {
  z-index: 1;
}
/* .card-body{
  background: #FBD149;
} */
:root {
  --primary-color: #0abab5;
  --secondary-color:  #FBD149;
  --accent-color: #4e9f3d;
  --light-color: #f8f9fa;
}

.via-neuro-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 25%;
  border-radius: 2px;
}

.founder-card {
  background: #0f1d4d;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.founder-img {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  border-radius: 100px!important;
}

.founder-card:hover .founder-img img {
  transform: scale(1.05);
}

.founder-info {
  padding: 2rem;
  text-align: center;
}

.founder-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.founder-info p.position {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-content {
  background: #0f1d4d;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.about-content:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(142, 36, 36, 0.05);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: -1;
}

.about-content:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(78, 159, 61, 0.05);
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
  z-index: -1;
}

.mission-box {
  background: var(--primary-color);
  background: var(--secondary-color);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.mission-box:before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.mission-box h3 {
  position: relative;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #00d1f9;
  text-shadow: #000 1px 1px 1px
}

.mission-box h3:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: white;
  bottom: -10px;
  left: 0;
}

@media (max-width: 768px) {
  .via-neuro-section {
    padding: 3rem 0;
  }

  .founder-img {
    height: 250px;
  }

  .about-content {
    padding: 2rem;
  }
    .display-2{
      font-size: 38px!important;
    }
    .h4{
      font-size: 20px!important;
      hyphens: auto;
    }
    .mobile {
      margin-bottom: 20px;
    }
    .professional-profile h5 {
      margin-top: 20px!important;
    }
    .about-exp {
      display: none;
    }
    .carousel-header{
      height: 100%;
      padding-bottom: 20px;
    }
}
.teamSwiper {
    padding: 30px 10px 60px;
  }
  
  .swiper-button-next, .swiper-button-prev {
    color: #0e204e;
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }
  
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem;
  }
  
  .swiper-pagination-bullet {
    background: #0e204e;
    opacity: 0.5;
  }
  
  .swiper-pagination-bullet-active {
    background: #0e204e;
    opacity: 1;
  }
  
  .team-item {
    transition: transform 0.3s ease;
  }
  
  .team-item:hover {
    transform: translateY(-5px);
  }
  .professional-profile p{
    text-align: justify;
  }

.bg-main {
  background: #0f1d4d;
}
.font-main{
  font-size: 15px;
}