@import url("https://fonts.googleapis.com/css2?family=Meow+Script&display=swap"); /********** Template CSS **********/

:root {
  --primary: #06bbcc;
  --light: #f0fbfc;
  --dark: #181d38;
}

.fw-medium {
  font-weight: 600 !important;
}
.text-default {
  font-size: 48px;
  font-family: "Meow Script", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
}
.fw-semi-bold {
  font-weight: 700 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** 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;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
  background: #bf9656;
  border: none !important;
  transition: 0.5s;
  border-radius: 10px;
}
.text-secondary {
  color: #bf9656 !important;
}
.btn.btn-primary:hover {
  transform: scale(1.05);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 0px;
}

/*** Navbar ***/
.navbar {
  background: #73746f;
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff !important;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #bf9656 !important;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-light .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
  border: none;
}

.navbar-light .navbar-nav .nav-link {
  color: #ffff;
  font-weight: 500;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .dropdown-menu.fade-down {
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.owl-carousel-item {
  height: 90vh !important;
}

/*** Header carousel ***/
@media (max-width: 768px) {
  .header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
  }

  .header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  margin: 7px 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid #ffffff;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  background: #c6b85f;
  border-color: #c6b85f;
}

.page-header {
  background: linear-gradient(rgba(34, 18, 0, 0.582), rgba(37, 20, 0, 0.493)),
    url("../img/cursos.jpg") !important;
  background-size: cover !important;
  background-position: bottom !important;
  /*   background-position: bottom;
  background-repeat: no-repeat; */
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: #bf9656;
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: #bf9656;
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/*** Service ***/
.service-item {
  background: #bf975621;
  transition: 0.5s;
  height: 100%;
}

.service-item:hover {
  margin-top: -10px;
  background: #bf9656;
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: #fff !important;
}
.color_icon {
  color: #bf9656;
}

/*** Categories & Courses ***/
.category img,
.course-item img {
  transition: 0.5s;
}

.category a:hover img,
.course-item:hover img {
  transform: scale(1.1);
}

/*** Team ***/
.team-item img {
  transition: 0.5s;
  max-height: 450px;
}

.team-item:hover img {
  /* transform: scale(1.05); */
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: #bf9656 !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-dots {
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  background: #bf9656;
  border-color: #bf9656;
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: normal;
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.owl-carousel-item h5 {
  color: #d0c56c;
}

.button_nav {
  background: #d0c56c;
}
.button_nav:hover {
  background: #e4dda8;
}
.title_about {
  color: #bf9656;
}

/*** Footer ***/

.section-footer {
  padding-top: 40px;
  background: rgb(255, 255, 255);
  background: linear-gradient(#ffffff, #c09a8083, #8a370083, #8a370083),
    url("../img/footer.jpg") left no-repeat;
  background-size: cover !important;
}
.footer-icon-color {
  color: #56564c;
}
.section-footer ul {
  line-height: 2;
}

.section-footer .item-list-a i {
  font-size: 18px;
  padding-right: 4px;
  color: #071b27;
}

.section-footer .widget-a .w-title-a {
  margin-bottom: 1rem;
}

footer {
  /* background: linear-gradient(to right bottom ,#4bb7ff, #fff); */
  text-align: center;
  padding: 10px 0;
}

footer .copyright-footer {
  border-top: 1px solid #383835;
  padding-top: 20px;
}

footer .credits {
  font-size: 14px;
}
.itens-footer {
  color: #56564c;
}
.itens-footer2:hover i {
  color: #ffff !important;
  transition: 1s;
}
.footer_link {
  transition: 0.5s;
  font-size: 11px;
  text-transform: uppercase;
}
.footer_link:hover a {
  color: #ffff !important;
  transition: 0.5s;
}
.footer_link:hover i {
  color: #ffff !important;
  transition: 0.5s;
}
.section-title1 {
  color: #56564c;
}
.section-sub-title1 {
  color: #56564c;
}
.itens-footer_cli {
  color: #56564c;
}

#section-counter {
  position: relative;
  z-index: 0;
  background-attachment: fixed;
}
#section-counter .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  opacity: 0.8;
  background: #000000;
  background: #ce4be8;
  background: -moz-linear-gradient(-45deg, black 0%, #867548c7 100%);
  background: -webkit-gradient(
    left top,
    right bottom,
    color-stop(0%, black),
    color-stop(100%, #867548c7)
  );
  background: -webkit-linear-gradient(-45deg, black 0%, #867548ab 100%);
  background: -o-linear-gradient(-45deg, black 0%, #867548c7 100%);
  background: -ms-linear-gradient(-45deg, black 0%, #867548c7 100%);
  background: -webkit-linear-gradient(315deg, 0%, #867548c7 100%);
  background: -o-linear-gradient(315deg, black 0%, #867548c7 100%);
  background: linear-gradient(135deg, black 0%, #867548c7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3d3d3dda', endColorstr='#867548c7', GradientType=1 );
}

@media (max-width: 1199.98px) {
  .ftco-counter {
    background-position: center center !important;
  }
}

.ftco-counter .img {
  display: block;
  width: 100%;
}
@media (max-width: 767.98px) {
  .ftco-counter .img {
    height: 400px;
    background-position: top center !important;
  }
}

.ftco-counter .text strong.number {
  font-weight: 700;
  font-size: 32px;
  color: #fff;
}

.ftco-counter .text span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
}

.ftco-counter .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.ftco-counter .icon span {
  color: #fff;
  font-size: 48px;
}

@media (max-width: 767.98px) {
  .ftco-counter .counter-wrap {
    margin-bottom: 20px;
  }
}

/* Start Event Area css
============================================================================================ */
.events_area {
  padding: 130px 0 100px;
  background: #494949;
}
@media (max-width: 991px) {
  .events_area {
    padding: 70px 0;
  }
}
.events_area .event-link {
  color: #fdc632;
  font-size: 13px;
  text-transform: uppercase;
}
.events_area .event-link img {
  margin-left: 5px;
  display: inline-block;
}

.single_event {
  margin-bottom: 30px;
}
.single_event .event_thumb {
  overflow: hidden;
}
.single_event .event_thumb img {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single_event .event_details {
  background: #311f00c0;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 275px;
  padding: 30px 25px;
  color: #ffffff;
}
.single_event .event_details .date {
  color: #ffffff;
  padding-right: 15px;
  border-right: 2px solid #fff;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
}
.single_event .event_details .date span {
  display: block;
  color: #fdc632;
  font-size: 28px;
  font-weight: 500;
}
.single_event .event_details .time-location {
  padding-left: 15px;
  font-size: 14px;
}
.single_event .event_details .time-location p {
  margin-bottom: 0px;
}
.single_event .event_details .time-location p span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}
.single_event:hover img {
  transform: scale(1.1);
}
.single_event:hover h4 a {
  color: #fdc632;
}

/* End Event Area css
============================================================================================ */

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #caaf6d;
  border-bottom: 3px solid #caaf6d;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #caaf6d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #caaf6d;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #787773;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #caaf6d;
  border-bottom: 3px solid #caaf6d;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #575653;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #caaf6d;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

.bg-- {
  background: linear-gradient(#ffffff62, #ffffff62, #ffffff62, #ffffff62),
    url("../img/services-left-dec.png");
}
.bg-light {
  background: #ececec !important;
}
.bg-lightt {
  background: #ececec !important;
  height: 100%;
}

.bg_prof {
  margin-left: 50vh !important;
}

.text_room {
  text-align: justify;
}

.text_basic {
  margin-top: -5vh;
}

.text_basicc {
  margin-top: -17vh;
}

.text_basiccc {
  margin-top: -35vh;
}

.text_basicccc {
  margin-top: -5vh;
}

.text_basiccccc {
  margin-top: -85vh;
}
/*Botão Pulsa*/
.box-pulse {
  width: 100%;
}
.iconw {
  padding-right: 10px;
}

.box-pulse a {
  text-decoration: none;
  display: inline-block;
  font-size: 1.1em;
  font-family: Verdana, Geneva, sans-serif;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.botao-pulse {
  padding: 20px 40px;
  color: #fff;
  background-color: #1b5c0b;
  border-radius: 3px;
  -webkit-animation: pulse 1s ease infinite;
  -moz-animation: pulse 1s ease infinite;
  -ms-animation: pulse 1s ease infinite;
  -o-animation: pulse 1s ease infinite;
  animation: pulse 1s ease infinite;
}

.botao-pulse:hover {
  color: #fff;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }

  25% {
    -webkit-transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }

  25% {
    -moz-transform: scale(1.1);
  }

  50% {
    -moz-transform: scale(1);
  }

  100% {
    -moz-transform: scale(1);
  }
}

@-ms-keyframes pulse {
  0% {
    -ms-transform: scale(1);
  }

  25% {
    -ms-transform: scale(1.1);
  }

  50% {
    -ms-transform: scale(1);
  }

  100% {
    -ms-transform: scale(1);
  }
}

@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }
  25% {
    -o-transform: scale(1.1);
  }
  50% {
    -o-transform: scale(1);
  }
  100% {
    -o-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/*Botão Pulsa*/

.box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed;
  background: rgb(119, 120, 115);
  background: linear-gradient(
    90deg,
    rgba(119, 120, 115, 1) 0%,
    rgba(218, 204, 115, 1) 43%,
    rgba(218, 204, 115, 1) 67%,
    rgba(119, 120, 115, 1) 100%
  );
  width: 98%;
  z-index: 999998;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 20px;
}

.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
  text-align: center;
  padding: 5px;
  color: #000;
  font-size: 18px;
  margin-bottom: 20px;
}

.msg-cookies {
  margin-left: 20px;
  margin-top: 20px;
}

.box-cookies .btn-cookies {
  background: #fff;
  border: 0;
  padding: 5px;
  color: #70716b;
  transition: 0.4s;
  border-radius: 4px;
  margin-right: 20px;
}

.box-cookies .btn-cookies:hover {
  background: #e7e7e7;
  border: 0;
  padding: 5px;
  color: #70716b !important;
  transition: 0.4s;
  border-radius: 4px;
  margin-right: 20px;
  /* padding: 20px; */
}

.box-cookies-size {
  justify-content: center;
  display: flex;
}

.color-cookies {
  color: #896f41;
}

.color-cookies:hover {
  color: #614d2c;
}

@media screen and (max-width: 600px) {
  .box-cookies {
    flex-direction: column;
  }
}
/* .bg-cookies{
  background: linear-gradient(#ffffffa2, #ffffff46, #ffffff41, #ffffff6c, #fffffff3),
  url("../images/13268.jpg") left no-repeat;
} */

.title_cookies {
  color: #bf9656;
}
.subtitle {
  text-align: justify;
}

.centered-video {
  max-width: 900px;
  max-height: 500px;
  width: 100%;
  height: 100%;
}

.text_about {
  text-align: justify;
}

.span_curso {
  font-weight: 500;
}

/*** Facts & Quote ***/
.facts,
.quote {
  background: #42110494;
}

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;
}

@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;
  }
}

.text_slidee {
  color: #d0b56c !important;
}

/* .text_slideee{
  color: #000;
 } */

.bg-light_ {
  background: #ececec !important;
  height: 55vh !important;
}

.card {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
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;
}

@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;
  }
}
.whats {
  transition: 0.5s;
}
.whats:hover {
  transform: scale(1.1);
}
ul {
  list-style-type: none;
}
.text-gray {
  color: #73746f;
}
.bg-privacidade {
  background-image: url(../img/privacidade.jpg) !important;
  background-position: bottom !important;
  background-size: auto !important;
}
.bg-cookies-banner {
  background-image: url(../img/cookies.jpg) !important;
  background-position: center !important;
  background-size: auto !important;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Modal Styling */
.modal-content img {
  width: 100%;
  height: auto;
}
/* Estilos modernos */
.text-gradient-primary {
  background: linear-gradient(45deg, #bf9656, #1e1e1e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px;
}

.dropdown-item {
  border-radius: 8px;
  transition: all 0.2s ease;
  padding: 10px 15px;
  margin: 4px 0;
}

.dropdown-item:hover {
  background-color: #bf9656;
  color: white;
  .dropdown-icon {
    color: white !important;
  }
}

.dropdown-icon {
  width: 24px;
  text-align: center;
  margin-right: 10px;
  color: #bf9656;
}

/* Modal Styles */
.modal-header {
  background: #fff;
  color: white;
  border-bottom: none;
  border-radius: 0.5rem 0.5rem 0 0;
}

.modal-title {
  color: #bf9656;
}
.modal-title i {
  margin-right: 10px;
}

.btn-close {
  filter: invert(1);
}

.modal-contact {
  background-color: #bf9656;
  border-radius: 10px;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
}

.modal-contact-text {
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

.modal-phone {
  display: inline-block;
  background:white;
  color:  #bf9656;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #fff;
}

.modal-footer {
  border-top: none;
  padding-top: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #bf9656, #fff);
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #fff;
}

/* Psicologia specific */
.psicologia-icon {
  color: #bf9656;
}

/* Terapias specific */
.terapias-icon {
  color: var(--secondary-color);
}

.bg-nav {
  background: linear-gradient(45deg, #bf9656, #1e1e1e);
}
.titulo-cursos {
  font-size: 20px;
}
.pre-requisito-titulo {
  font-size: 12px;
}
.footer-titulo {
  font-size: 14px;
}
