/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

@import url("https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700");
body {
  line-height: 1.4;
  font-family: "Titillium Web", sans-serif;
  -webkit-font-smoothing: antialiased;
}

p {
  font-family: "Titillium Web", sans-serif;
  color: #9a9a9a;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
}

/*=== MEDIA QUERY ===*/
.no-padding {
  padding: 0 !important;
}

.inline-block {
  display: inline-block;
}

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

figure {
  margin: 0;
}

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

iframe {
  border: 0;
}

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

a:focus, a:hover {
  color: #04AA6D;
}
.texto-pulsar{
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 40px;
  animation: pulsar 2s infinite;
}

.btn-main, .btn-main-sm {
  color: white !important;
  background-image: linear-gradient(100deg, #04aa6d, #136346);
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 40px;
  animation: pulsar 2s infinite;
}

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

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

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

.btn-transparent {

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

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

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

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

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

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

.btn:focus {
  color: #fff;
}

#home {
  position: relative;
}

.section {
  padding: 100px 0;
}
@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }
}

.padding-0 {
  padding: 0;
}
@media (max-width: 768px) {
  .padding-0 {
    padding: 0 15px;
  }
}

.section-sm {
  padding: 70px 0;
}

.section-xs {
  padding: 40px 0;
}

.btn.active:focus, .btn:active:focus, .btn:focus {
  outline: 0;
}

#preloader {

  height: 100%;
  opacity: 1;
  filter: alpha(opacity=100);
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
}

.preloader {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.preloader .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.preloader .sk-child:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.preloader .sk-circle2 {
  transform: rotate(30deg);
}

.preloader .sk-circle3 {
  transform: rotate(60deg);
}

.preloader .sk-circle4 {
  transform: rotate(90deg);
}

.preloader .sk-circle5 {
  transform: rotate(120deg);
}

.preloader .sk-circle6 {
  transform: rotate(150deg);
}

.preloader .sk-circle7 {
  transform: rotate(180deg);
}

.preloader .sk-circle8 {
  transform: rotate(210deg);
}

.preloader .sk-circle9 {
  transform: rotate(240deg);
}

.preloader .sk-circle10 {
  transform: rotate(270deg);
}

.preloader .sk-circle11 {
  transform: rotate(300deg);
}

.preloader .sk-circle12 {
  transform: rotate(330deg);
}

.preloader .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.preloader .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.preloader .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.preloader .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.preloader .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.preloader .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.preloader .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.preloader .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.preloader .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.preloader .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.preloader .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
.title {
  padding-bottom: 50px;
  text-align: center;
}
.title h2 {
  font-size: 35px;
  color: #232323;
  text-transform: capitalize;
  margin-bottom: 8px;
  font-weight: 700;
}
.title h4 {
  font-size: 10px;
  line-height: 10px;
  font-weight: 700;
  letter-spacing: 3.3px;
  text-transform: uppercase;
}
.title p {
  color: #848484;
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .title p {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .title p {
    width: 80%;
  }
}
.title .border {
  border: none;
  display: inline-block;
  border-radius: 3px;
  height: 6px;
  position: relative;
  width: 90px;
  margin-bottom: 10px;
}

.bg-gray {
  background: #f9f9f9;
}

.color-gray {
  color: #777;
}

.shadow {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.34);
}
/* cor gradiente das bordas */
.gradient, .service-2 .service-item i, .title .border {
  background-image: linear-gradient(100deg, #04AA6D, #2B755A);
}

.header-bradcrumb {
  background: transparent;
}
.header-bradcrumb a, .header-bradcrumb .active {
  color: #cfcfcf;
  font-weight: 200;
  font-family: "Titillium Web", sans-serif;
}
.header-bradcrumb a:hover {
  color: #04AA6D;
}

.slick-slide {
  outline: none;
}

.commonTab .nav-tabs {
  border: 1px solid transparent;
  text-align: center;
}
.commonTab .nav-tabs .nav-item {
  margin: 0 3px;
}
.commonTab .nav-tabs .nav-item .nav-link {
  background: #f9f9f9;
  color: #666;
  text-transform: capitalize;
  border-radius: 0;
}
.commonTab .nav-tabs .nav-item .nav-link.active {
  border: 1px solid #04AA6D;
  background: #04AA6D;
  color: #fff;
}
.commonTab .nav-tabs .nav-item .nav-link:hover {
  border: 1px solid #04AA6D;
  border-radius: 0;
  background: #04AA6D;
  color: #fff;
}
.commonTab .tab-content {
  padding-top: 30px;
}

.rev_slider_wrapper {
  height: calc(100vh - 80px) !important;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .rev_slider_wrapper {
    margin-top: 60px;
  }
}

.bg-pricing1 {
  background: url("../images/pricing-bg1.png");
  background-size: cover;
}
.bg-pricing2 {
  background: url("../images/pricing-bg2.png");
  background-size: cover;
}
.bg-pricing3 {
  background: url("../images/pricing-bg3.png");
  background-size: cover;
}

.single-page-header {
  background: #1f2532;
  padding: 50px 0;
  text-align: center;
  color: #fff;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .single-page-header {
    margin-top: 60px;
  }
}
.single-page-header .breadcrumb {
  background: transparent;
  display: inline-block;
}
.single-page-header .breadcrumb li {
  display: inline-block;
}
.single-page-header .breadcrumb li a {
  color: #04AA6D;
}

.navigation {
  transition: 0.3s all;
  background: #1f2532;
}
.navigation .navbar-nav > li.active a {
  color: #fff;
}
.navigation .navbar-nav > li > a {
  color: #707d8f;
  font-size: 15px;
  line-height: 26px;
  padding: 20px 15px !important;
  transition: 0.2s ease-in-out 0s;
}
@media (max-width: 480px) {
  .navigation .navbar-nav > li > a {
    padding: 8px 0 !important;
  }
}
@media (max-width: 768px) {
  .navigation .navbar-nav > li > a {
    padding: 8px 0 !important;
  }
}
.navigation .navbar-nav > li > a:hover, .navigation .navbar-nav > li > a:active, .navigation .navbar-nav > li > a:focus {
  background: none;
  color: #04AA6D;
}
.navigation .navbar-toggler {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  outline: none;
}
.navigation .nav .open > a {
  background: none;
}
.navigation .dropdown {
  padding: 0;
}
.navigation .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
.navigation .dropdown .dropdown-item {
  padding: 8px 15px;
  color: #fff;
  font-size: 13px;
}
.navigation .dropdown .dropdown-item:hover {
  background: transparent;
  color: #04AA6D;
}
.navigation .dropdown .dropdown-menu {
  border-radius: 0;
  transform-origin: top;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background-color: #000;
  display: block;
  opacity: 0;
  transition: 0.3s ease;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
}
@media (max-width: 992px) {
  .navigation .dropdown .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transform-origin: unset;
  }
}
.navigation .dropdown .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
@media (max-width: 992px) {
  .navigation .dropdown .dropdown-menu.show {
    display: block;
  }
}

.navbar-brand {
  height: auto;
  padding: 8px 0;
}

.navbar-brand h1 {
  margin: 0;
}

.hero-area {
  padding: 150px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1f2532;
}
@media (max-width: 480px) {
  .hero-area {
    padding: 80px 0;
  }
}
.hero-area .block {
  color: #fff;
  padding-left: 30px;
}
@media (max-width: 480px) {
  .hero-area .block {
    padding: 0;
  }
}
.hero-area .block h2 {
  font-size: 48px;
  margin-bottom: 20px;
}
.hero-area .block p {
  color: #707d8f;
  margin-bottom: 20px;
}
.hero-area .block .list-inline {
  margin-top: 50px;
}
.hero-area .block .btn-main, .hero-area .block .btn-main-sm {
  margin-right: 8px;
}

.video-player iframe {
  width: 100%;
  height: 100%;
}

.hero-area-video {
  height: 100vh;
  position: inherit !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-area-video .block {
  color: #fff;
  text-align: center;
}
.hero-area-video .block h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-area-video .block p {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.hero-area-video .block .btn-main, .hero-area-video .block .btn-main-sm {
  margin-top: 20px;
}

.dark-bg {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}

/*=================================================================
  About us section
==================================================================*/
.about {
  background: #fff;
}
.about h2 {
  font-size: 40px;
  font-weight: bold;
  margin-top: 0;
}
@media (max-width: 992px) {
  .about h2 {
    font-size: 25px;
  }
}
.about h4 {
  font-size: 14px;
  color: #04AA6D;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about p {
  line-height: 1.6;
  margin-top: 20px;
}
.about .content {
  padding: 50px 0;
}
@media (max-width: 992px) {
  .about .content {
    padding: 5px 0;
  }
}

/*=================================================================
  About us 2 section
==================================================================*/
.about-2 {
  background: #F7F7F7;
}
.about-2 h2 {
  position: relative;
}
.about-2 h2:before {
  position: absolute;
  left: -15%;
  top: 18px;
  content: "";
  display: inline-block;
  width: 12%;
  height: 3px;
  background-color: #ffa535;
  background-image: linear-gradient(100deg, #f9643d, #fe2a77);
  background-image: linear-gradient(100deg, #f9643d, #fe2a77);
}
@media (max-width: 768px) {
  .about-2 h2:before {
    display: none;
  }
}

/*=================================================================
 Call To Action 1
==================================================================*/
.call-to-action {
  padding: 100px 0;
  background: url("../images/call-to-action/call-to-action-bg-2.jpg");
  background-size: cover;
  color: #fff;
}
.call-to-action h2 {
  line-height: 1.5;
}
.call-to-action p {
  color: #fff;
}
.call-to-action .btn-main, .call-to-action .btn-main-sm {
  margin-top: 20px;
}

/*=================================================================
 Call To Action 2
==================================================================*/
.call-to-action-2 {
  padding: 100px 0;
  background-image: url("../images/call-to-action/call-to-action-bg.jpg");
  background-size: cover;
  color: #fff;
}
.call-to-action-2 h2 {
  line-height: 1.5;
}
.call-to-action-2 p {
  color: #fff;
}
.call-to-action-2 .btn-main, .call-to-action-2 .btn-main-sm {
  margin-top: 20px;
}

/*=================================================================
  Contact
  ==================================================================*/
.contact-form {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contact-form {
    margin-top: 20px;
  }
}
.contact-form .form-control {
  background-color: transparent;
  border: 1px solid #dedede;
  box-shadow: none;
  height: 45px !important;
  color: #0c0c0c;
  height: 38px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  border-radius: 3px;
}
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form #contact-submit:hover {
  border-color: #04AA6D;
}
.contact-form #contact-submit {
  border: none;
  padding: 15px 0;
  width: 100%;
  margin: 0;
  background: #04AA6D;
  color: #fff;
  border-radius: 0;
  cursor: pointer;
}
.contact-form textarea.form-control {
  padding: 10px;
  height: 120px !important;
  outline: none;
}

.contact-details .contact-short-info {
  margin-top: 15px;
}
.contact-details .contact-short-info li {
  margin-bottom: 6px;
}

.social-icon li {
  display: inline-block;
  margin-right: 10px;
}
.social-icon li a {
  display: block;
  height: 30px;
  width: 30px;
  text-align: center;
  color: #04AA6D;
}
.social-icon li a i {
  display: inline-block;
  font-size: 20px;
  line-height: 50px;
  margin: 0;
}

.error {
  padding: 10px;
  color: #D8000C;
  border-radius: 2px;
  font-size: 14px;
  background-color: #FFBABA;
}

.success {
  background-color: #6cb670;
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 10px;
}

#error, #success {
  display: none;
  margin-bottom: 10px;
}

.map {
  position: relative;
}
.map #map {
  height: 400px;
  color: white;
}

.contact-meta-block {
  margin-top: 30px;
  padding: 40px 0;
  min-height: 250px;
  text-align: center;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.05);
}
.contact-meta-block > i {
  display: block;
  font-size: 50px;
  margin-bottom: 20px;
}

/*=================================================================
  Pricing section
==================================================================*/
.pricing-table .pricing-item {
  margin-bottom: 15px;
  border-radius: 3px;
  padding-bottom: 40px;
  text-align: center;
  background: #f9f9f9;
}
.pricing-table .pricing-item a.btn-main, .pricing-table .pricing-item a.btn-main-sm {
  text-transform: uppercase;
  margin-top: 20px;
}
.pricing-table .pricing-item ul {
  padding: 20px 0 10px;
}
.pricing-table .pricing-item li {
  font-weight: 400;
  padding: 10px 0;
  color: #666;
}
.pricing-table .pricing-item li i {
  margin-right: 6px;
}
.pricing-table .price-title {
  padding: 30px 0 20px;
  text-align: center;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  color: #fff;
}
.pricing-table .price-title > h3 {
  color: #fff;
  font-weight: 700;
  margin: 0 0 5px;
  font-size: 15px;
  text-transform: uppercase;
}
.pricing-table .price-title > p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 5px;
  width: 60%;
  margin: 0 auto;
}
.pricing-table .price-title .value {
  font-size: 50px;
  padding: 10px 0;
}

/*=================================================================
  Portfolio section
==================================================================*/
.portfolio-filter {
  margin-bottom: 40px;
  text-align: center;
}
.portfolio-filter button {
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  margin: 0 10px;
  padding: 8px 5px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  color: #777;
  outline: none;
  background: none;
}
.portfolio-filter button:hover {
  border-bottom: 2px solid #04AA6D;
  color: #000;
}
.portfolio-filter button.active {
  border-bottom: 2px solid #04AA6D;
  color: #000;
}

.portfolio-items-wrapper li {
  width: 32.33%;
}

.portfolio-block {
  position: relative;
  transition: 0.3s all;
  overflow: hidden;
}
.portfolio-block:before {
  content: "";
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #05A76B;
  transition: 0.3s all;
}
.portfolio-block:hover:before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.portfolio-block:hover .caption h4 {
  transform: translate3d(0, 0, 0);
}
.portfolio-block:hover .caption {
  opacity: 1;
}
.portfolio-block:hover .caption .search-icon {
  opacity: 1;
}
.portfolio-block .caption {
  position: absolute;
  bottom: 10%;
  left: 10%;
  opacity: 0;
  z-index: 9;
  transition: all 0.3s ease-in-out;
}
.portfolio-block .caption h4 {
  font-size: 20px;
  font-weight: 700;
}
.portfolio-block .caption h4 a {
  color: #fff;
}
.portfolio-block .caption .search-icon {
  background: #04AA6D;
  color: #fff;
  display: inline-block;
  padding: 4px 13px;
  font-size: 25px;
  border-radius: 30px;
  opacity: 0;
}

/*=================================================================
  Services section
==================================================================*/
.services .service-block {
  padding: 30px 20px;
}
@media (max-width: 480px) {
  .services .service-block {
    padding: 15px;
  }
}
.services .service-block .service-icon {
  margin-bottom: 15px;
}
.services .service-block i {
  font-size: 40px;
  color: #04AA6D;
  /* COR DOS ICONES FIGURAS */
  background: linear-gradient(100deg, #04AA6D, #389170);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services .service-block h3 {
  color: #333;
  font-size: 18px;
}
.services .service-block p {
  color: #777;
}

/*=================================================================
  Services section 2
==================================================================*/
@media (max-width: 480px) {
  .service-2 .p-0 {
    padding: 0 15px !important;
  }
}
@media (max-width: 768px) {
  .service-2 .p-0 {
    padding: 0 15px !important;
  }
}
@media (max-width: 400px) {
  .service-2 .p-0 {
    padding: 0 15px !important;
  }
}
.service-2 .service-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 50px 20px;
  margin-right: -1px;
  margin-bottom: -1px;
  transition: all 0.3s ease 0s;
}
.service-2 .service-item .count {
  font-size: 80px;
  position: absolute;
  top: 0;
  left: 20px;
  color: #f3f1f1;
  font-weight: 700;
}
.service-2 .service-item i {
  font-size: 30px;
  display: inline-block;
  border-radius: 30px;
  box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.1);
  color: #fff;
  height: 55px;
  line-height: 55px;
  margin-bottom: 20px;
  width: 55px;
  transition: all 0.3s ease 0s;
}

.service-list .block {
  background: #04AA6D;
  color: #fff;
  padding: 30px;
}
.service-list .block i {
  font-size: 30px;
}
.service-list .block h3 {
  font-size: 22px;
  margin: 10px 0;
}
.service-list .block ul li {
  margin-bottom: 6px;
  color: #f9f9f9;
}

/*=================================================================
  Our Team
  ==================================================================*/
.team-member {
  background: #fff;
  margin-bottom: 15px;
}
.team-member:hover img {
  transform: scale(1.1);
}
.team-member:hover .mask {
  opacity: 1;
}
.team-member .member-content {
  padding: 25px 0;
}
.team-member .member-content h3 {
  font-size: 20px;
  margin: 0 0 5px;
  color: #333;
}
.team-member .member-content span {
  font-size: 14px;
  color: #555;
}
.team-member .member-content p {
  color: #777;
  margin-top: 10px;
  padding: 0 15px;
}
.team-member .member-content ul {
  text-align: center;
  position: relative;
}
.team-member .member-content ul li {
  margin-right: 7px;
}
.team-member .member-content ul li a {
  font-size: 18px;
  padding: 10px;
}
.team-member .member-content ul li a i {
  color: #04AA6D;
  background: linear-gradient(100deg, #f9643d, #fe2a77);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-member .member-content ul li a:hover {
  background-color: #6cb670;
  border: 1px solid transparent;
}
.team-member .member-photo {
  overflow: hidden;
  position: relative;
}
.team-member .member-photo img {
  transition: all 0.6s ease 0s;
}

/*=================================================================
  Testimonial section
==================================================================*/
.testimonial {
  background: #04AA6D;
  position: relative;
}
.testimonial .item i {
  font-size: 40px;
  color: #fff;
  margin-bottom: 30px;
  display: inline-block;
}
.testimonial .item .client-details {
  padding-bottom: 30px;
}
.testimonial .item .client-details p {
  font-size: 17px;
  color: #fff;
  font-weight: 200;
  padding: 0 10%;
}
.testimonial .item .client-meta {
  margin-top: 8px;
  color: #fff;
}
.testimonial .item .client-meta h4 {
  margin-bottom: 4px;
}
.testimonial .item .client-meta span {
  font-size: 12px;
}
.testimonial .item .client-thumb img {
  display: inline-block;
  border-radius: 100%;
  width: 90px;
  height: auto;
}

/*=================================================================
  Latest Posts
==================================================================*/
.post-item {
  background: #fff;
  margin-bottom: 40px;
}
.post-item .post-thumb {
  margin-right: 10px;
}
.post-item .post-thumb img {
  height: auto;
}
.post-item .post-title {
  margin-top: 20px;
}
.post-item .post-title h3 {
  font-size: 23px;
}
.post-item .post-title h3 a {
  color: #000;
}
.post-item .post-meta {
  font-size: 14px;
  color: #888;
}
.post-item .post-meta a {
  color: #000;
  margin: 3px 0;
}
.post-item .post-content p {
  color: #757575;
  margin: 10px 0;
}
.post-item .btn-main, .post-item .btn-main-sm {
  font-size: 12px;
  margin-top: 10px;
  padding: 8px 20px;
  margin: 15px 0;
}

/*=================================================================
  Footer section
==================================================================*/
.top-footer {
  background-color: #222222;
  border-top: 1px solid #404040;
  padding: 100px 0 80px;
}
.top-footer h3 {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.top-footer p {
  font-size: 13px;
  line-height: 30px;
  color: #bdbdbd;
  font-weight: 300;
  padding-right: 20px;
}
.top-footer li a {
  font-size: 13px;
  line-height: 30px;
  color: #bdbdbd;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: color 0.3s;
  font-family: "Titillium Web", sans-serif;
  display: block;
}
.top-footer li a:hover {
  color: #04AA6D;
}

.footer-bottom {
  text-align: center;
  background-color: #1b1b1b;
  border-top: 1px solid #2c2c2c;
  padding: 30px 0;
}
.footer-bottom h5 {
  font-size: 12px;
  line-height: 1;
  color: #888888;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 7px;
  margin-bottom: 3px;
}
.footer-bottom h6 {
  font-size: 11px;
  line-height: 15px;
  color: #888888;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 2px;
  margin-bottom: 0;
}
.footer-bottom p {
  color: #656565;
}
.footer-bottom a {
  color: #04AA6D;
}

.subscribe-form .form-control {
  border-radius: 0;
}

.page-404 {
  height: 100vh;
}
.page-404 h1 {
  font-size: 200px;
}
@media (max-width: 480px) {
  .page-404 h1 {
    font-size: 100px;
  }
}
/*# sourceMappingURL=style.css.map */



/*# MEU ESTILO */
.bloco_header{
	margin-top: -130px;
	margin-bottom: -50px;
}
#acordion_fundo{
	
	background-color: #04AA6D;
	color: #FFFFFF;
	font-weight: bold;
}
#cor_btn_comprar{
	color: #FFFFFF;
	font-weight: bold;
}
.icones{
	height: 60px;
	width: 60px;
}
.iconprice{
	height: 20px;
	width: 20px;
}

   /*=================================================================
Contador Regressivo
==================================================================*/     
  body {
	
		 user-select: none;
            margin: 0;
            font-family: Arial, sans-serif;
        }
		
        .barra {
            background-color: black;
            color: white;
            text-align: center;
            padding: 20px 0;
            position: relative;
            width: 100%;
        }
        .barra h1 {
            font-size: 2rem;
            margin: 0;
      
        }
        .barra h2 {
            font-size: 1.5rem;
            margin-top: 10px; 
        }
		
        .countdown {
            font-size: 3rem;
            color: red;
			font-weight: bold;
			 display: inline-block;
  animation: pulsar 2s infinite;
        }
        
   /*=================================================================
Relogio
==================================================================*/     
        :root {
  --relogio-tamanho: 25px;

  --relogio-segundos: 0;
  --relogio-segundos-cor: #fff;
  --relogio-segundos-tamanho: calc(var(--relogio-tamanho) * 0.45);

  --relogio-minutos: 0;
  --relogio-minutos-cor: red;
  --relogio-minutos-tamanho: calc(var(--relogio-tamanho) * 0.4);

  --relogio-horas: 0;
  --relogio-horas-cor: #e66;
  --relogio-horas-tamanho: calc(var(--relogio-tamanho) * 0.3);
}


.relogio-wrapper {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  background: #;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.relogio {
  width: var(--relogio-tamanho);
  height: var(--relogio-tamanho);
  border: 1px solid #FF0000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%) rotate(-180deg);
}

.relogio-segundos,
.relogio-minutos,
.relogio-horas {
  background: transparent;
  height: 1px;
  position: absolute;
  right: 50%;
  top: 50%;
  width: 1px;
}

.relogio-horas::after,
.relogio-minutos::after,
.relogio-segundos::after {
  content: "";
  display: block;
  overflow: hidden;
  width: 1px;
}

.relogio-segundos {
  transform: translate(50%, -50%)
    rotate(calc(var(--relogio-segundos) * 6deg));
}

.relogio-segundos::after {
  height: var(--relogio-segundos-tamanho);
  background: var(--relogio-segundos-cor);
}

.relogio-minutos {
  transform: translate(50%, -50%)
    rotate(calc(var(--relogio-minutos) * 6deg));
}

.relogio-minutos::after {
  height: var(--relogio-minutos-tamanho);
  background: var(--relogio-minutos-cor);
}

.relogio-horas {
  transform: translate(50%, -50%)
    rotate(calc(var(--relogio-horas) * 6deg));
}

.relogio-horas::after {
  height: var(--relogio-horas-tamanho);
  background: var(--relogio-horas-cor);
}
        
        
     .carousel-item img, .carousel-item video {
            width: 360px;
            height: 450px;
            object-fit: cover;
            margin: 0 auto;
        }
        .video-wrapper {
            position: relative;
            cursor: pointer;
        }
        .video-wrapper video {
            display: block;
        }
        .play-icon-ini {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 0, 0, 0.5);
            padding: 10px;
            border-radius: 50%;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
     
  
        /* Custom Styles FOOTER HEADER */
        header, footer {
            background-color: #1F2532;
            color: #707D8F;
        }
        header a, footer a {
            color: #707D8F;
        }
        header a:hover, footer a:hover {
            color: #048D47;
        }
        footer .form-control {
            background-color: #fff; /* Cor de fundo do input */
            border: 1px solid #707D8F;
            color: #707D8F;
        }

        /* Custom button styles for Subscribe */
        footer .btn {
            background-color: #048D47;
            border: none;
            color: white;
        }
        footer .btn:hover {
            background-color: #707D8F;
            color: #1F2532;
        }

        /* Ajuste para empurrar o footer para o final da página */
        body {
            margin: 0;
            min-height: 100vh; /* Faz com que o conteúdo ocupe toda a altura da janela */
            display: flex;
            flex-direction: column;
        }

        /* Header fixo */
        header {
            width: 100%;
            z-index: 1030;
        }

        /* Footer que vai para o fim do conteúdo */
        footer {
            width: 100%;
            padding: 20px 0; /* Ajuste na altura do footer */
            margin-top: auto; /* Empurra o footer para o final */
        }

        footer .container {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        footer .container div {
            margin-bottom: 10px;
        }

        /* Navbar Toggler Custom Styles */
        .navbar-toggler {
            color: #707D8F;
            border: none;
            background-color: transparent;
        }
        .navbar-toggler-icon {
            font-size: 1.5rem;
            color: #707D8F;
        }

        /* Ajuste no CSS para navbar-expand-lg */
        .navbar-collapse {
            width: 100%;
        }

        /* Posicionamento fixo do botão de toggle (hamburguer) à direita em telas menores */
        .navbar-toggler {
            position: fixed;
            right: 15px;
            top: 15px;
            z-index: 1040; /* Acima do header */
        }

        /* Custom logo styles */
        .logo a {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: #048D47;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo a:hover {
            color: #1F2532;
        }

        /* Menu Links Color */
        .navbar-nav .nav-link {
            color: #707D8F; /* Cor padrão */
        }

        .navbar-nav .nav-link:hover {
            color: #048D47; /* Cor ao passar o mouse */
        }

        /* Custom Styles for Dropdown */
        .navbar-nav .nav-item.dropdown .dropdown-menu {
            background-color: #1F2532; /* Cor de fundo do submenu */
        }

        .navbar-nav .nav-item.dropdown .dropdown-item {
            color: #707D8F; /* Cor das opções do submenu */
        }

        .navbar-nav .nav-item.dropdown .dropdown-item:hover {
            color: #048D47; /* Cor do texto ao passar o mouse */
            background-color: transparent; /* Sem mudança no fundo */
        }

        /* Centering image in footer */
        footer .footer-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }
        footer .footer-logo img {
            max-width: 100%;
            height: auto;
        }

        /* Estilo para o texto do placeholder */
        ::placeholder {
            color: #707D8F;
        }        
        
        
         .toast-container {
            position: fixed;
            bottom: 1rem;
            right: 1rem;
            z-index: 1055;
        }
        
        .like-btn {
    border: none; /* Remove a borda */
    box-shadow: none; /* Remove o contorno ao clicar */
}
.like-count{
    font-size: 12px;
     margin-top: 2px;
}

body {
    padding-top: 70px; /* Espaço para compensar a altura do header fixo */
}

header.fixed-top {
    z-index: 1030; /* Garante que o header fique acima de outros elementos */
}
 botão ou do menu, você pode usar CSS adicional:

css
Copiar código
.navbar-toggler {
    border: none; /* Remove a borda do botão */
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cpath%20stroke%3D%22rgba%280%2C%200%2C%200%2C%200.5%29%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20d%3D%22M4%208h22M4%2015h22M4%2022h22%22/%3E%3C/svg%3E');
}

 .navbar-nav .nav-link {
        color: black; /* Cor padrão dos links */
    }
    
    .navbar-nav .nav-link:hover {
        color: #048D47; /* Cor ao passar o mouse */
    }

    .navbar-nav .nav-link:focus {
        color: #048D47; /* Cor ao focar no link (para acessibilidade) */
    }
    
    /* SOMBRA POSTS */ 
    
 .modal-description-container {
    color: #000; /* Texto preto */
    text-align: justify; /* Justifica o texto */
    font-family: 'Georgia', serif; /* Fonte Georgia para legibilidade */
    font-size: 16px; /* Tamanho do texto */
    line-height: 1.6; /* Espaçamento entre linhas */
}
.modal-description {
    color: #000; /* Texto preto */
    text-align: justify; /* Justifica o texto */
    font-family: 'Georgia', serif; /* Fonte Georgia para legibilidade */
    font-size: 16px; /* Tamanho do texto */
    line-height: 1.6; /* Espaçamento entre linhas */
}

.modal-description-container p {
    margin-bottom: 1rem; /* Espaçamento entre parágrafos */
}

/* Aplica bordas arredondadas no carrossel de imagens/vídeos */
.carousel-inner {
    border-radius: 10px 10px 0 0; /* Bordas arredondadas na parte superior */
}

/* Aplica bordas arredondadas nas imagens dentro do carrossel */
.carousel-item img,
.carousel-item video {
    border-radius: 10px 10px 0 0; /* Bordas arredondadas nas imagens e vídeos */
}

/* Aplica bordas arredondadas no modal */
.modal-content {
    border-radius: 10px; /* Bordas arredondadas no conteúdo do modal */
}

/* Aplica bordas arredondadas nas imagens dentro do modal */
.modal-body img {
    border-radius: 10px; /* Bordas arredondadas nas imagens do modal */
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #048D47; /* Define a cor de fundo do ícone */
    background-size: 100%; /* Ajusta o tamanho do ícone */
    border-radius: 50%; /* Opcional: deixa os ícones arredondados */
}

.modal-title{
    text-align: center;
    }

/* IMPLEMENTAÇÃO DE CARDS MENORES - SE TIRAR FICA VIDEOS E IMAGENS DE TAMANHO DE CELULAR */
.card {
    max-width: 18rem; /* Limita a largura dos cards */
    margin: 0.5rem auto; /* Adiciona um espaçamento entre os cards */
    border-radius: 8px; /* Cantos levemente arredondados */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px; /* Espaço abaixo do card */
    border-radius: 10px; /* Borda arredondada */
    overflow: hidden; /* Impede que conteúdos ultrapassem os limites do card */
    background-color: #000; /*background-color: #1E1F26; /* Fundo preto */
}
.card:hover{
    box-shadow: 0 4px 12px rgba(173, 216, 230, 0.6); /* Sombra cinza claro quando passar o mouse */
    background-color: #000; /* Fundo preto ao passar o mouse */ 
}

.card img, .card video {
    max-height: 200px; /* Limita a altura de imagens e vídeos */
    object-fit: cover; /* Garante que o conteúdo se encaixe no espaço definido */
}

.card h5 {
    font-size: 1rem; /* Ajusta o tamanho do título */
    color: #fff; 
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 0.9rem; /* Tamanho do texto do conteúdo */
    line-height: 1.4;
    color: #B7BBBE; 
}

.card-wrapper:hover{
    transform: translateY(-10px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out; /* Transição lenta */
    
}

.card-body {
    display: block;
    padding: 0.8rem; /* Ajusta o padding para economizar espaço */
}
.card-body.hidden {
    display: none;
}

/* Centraliza os botões quando nem todos estão visíveis */
.card-body .d-flex {
    justify-content: center; /* Garante que os botões visíveis fiquem centralizados */
    gap: 10px; /* Define o espaçamento entre os botões */
}

/* Quando todos os botões estão visíveis */
.card-body .d-flex a, .card-body .d-flex button {
    margin-right: 10px; /* Aplica espaçamento entre os botões */
}

/* Espaçamento ajustado para que eles não fiquem muito próximos */
.card-body .d-flex .btn {
    margin: 0 5px; /* Aplica espaçamento entre os botões */
}

/* Quando não há todos os botões, a centralização é mantida */
.card-body .d-flex a, .card-body .d-flex button {
    display: inline-block;
}


/* Estado inicial dos cards */
.card.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out; /* Transição lenta */
}

/* Quando visível */
.card.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

 .media-tag {
        position: absolute;
        top: 0px;
        right: 3px;
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff;
        font-size: 10px;
        font-weight: bold;
        padding: 2px 5px;
        border-radius: 3px;
        z-index: 10;
    }
    
    .modal-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .modal-left img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin-bottom: 15px;
        }
        .modal-left p {
            font-size: 1.2rem;
            font-weight: 500;
        }



.video-player .play-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.video-player .play-icon i {
  margin-left: 3px;
  height: 80px;
  width: 80px;
  border-radius: 50px;
  transition: transform 300ms ease;
  background: #fff;
  color: #04AA6D;
  line-height: 80px;
  font-size: 30px;
  margin-left: 5px;
}
.video-player-land .play-icon:hover i {
  transform: scale(1.1);
}

/* LANDING PAGE QUIZ */
.centro{
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
        }
      
        .quiz-wrapper {
            text-align: center;
            max-width: 600px;
            width: 100%;
        }
        .progress-container {
            margin-top: 30px;
            display: none;
        }
        .progress-bar {
            width: 0%;
        }
        .result-section {
            display: none;
            margin-top: 20px;
        }
        .result-section img {
            max-width: 100%;
            margin-bottom: 15px;
        }
  /* Estilo para as tags */
/* Estilo para as tags */
.tags {
    font-size: 0.6rem;
    display: flex;
    gap: 1px;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: center;  /* Centraliza horizontalmente */
    margin-left: auto;        /* Alinha à esquerda, se necessário */
    margin-right: auto;       /* Alinha à direita, se necessário */
    font-family: 'Poppins', sans-serif; /* Fonte moderna e legível */
}

/* Estilo das tags individuais */
.tags span {
    padding: 1px 4px;
    border-radius: 5px;
    color: #000; /* Cor da fonte em branco */
    font-weight: 600; /* Um pouco mais forte para o texto */
    margin-left: 2px;
    text-transform: capitalize; /* Deixa as palavras com a primeira letra maiúscula */
}
/* Estilo para quando não houver tags */
.tags:empty {
    display: none;  /* Faz com que a div desapareça completamente quando estiver vazia */
}

/* Definindo as cores de cada tag com o degradê */
.tag-color-1 { background-color: rgba(14, 190, 255, 0.3); color: #fff; }
.tag-color-2 { background-color: rgba(255, 206, 0, 0.3); color: #fff; }
.tag-color-3 { background-color: rgba(255, 111, 97, 0.3); color: #fff; }
.tag-color-4 { background-color: rgba(106, 103, 206, 0.3); color: #fff; }
.tag-color-5 { background-color: rgba(0, 184, 148, 0.3); color: #fff; }
.tag-color-6 { background-color: rgba(253, 121, 168, 0.3); color: #fff; }
.tag-color-7 { background-color: rgba(242, 85, 96, 0.3); color: #fff; }
.tag-color-8 { background-color: rgba(99, 195, 239, 0.3); color: #fff; }
.tag-color-9 { background-color: rgba(255, 140, 0, 0.3); color: #fff; }
.tag-color-10 { background-color: rgba(0, 198, 255, 0.3); color: #fff; }
.tag-color-11 { background-color: rgba(120, 0, 255, 0.3); color: #fff; }
.tag-color-12 { background-color: rgba(255, 99, 71, 0.3); color: #fff; }

/* Carregar a fonte Poppins via Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.dropdown {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1050; /* Garantir que o botão de três pontos fique acima do restante do conteúdo */
}

.dropdown button {
    background: transparent; /* Torna o fundo transparente */
    border: none; /* Remove a borda */
    padding: 0; /* Remove o padding */
    color: #fff; /* Torna o ícone branco */
    font-size: 1.5rem; /* Ajuste o tamanho do ícone */
    z-index: 1060; /* Aumenta o z-index para garantir que o ícone fique acima de outros elementos */
}

/* Garantir que o menu abra para o lado esquerdo e para cima */
.dropdown-menu {
    left: -100%;  /* Move o menu para a esquerda */
    bottom: 100%; /* Faz o menu abrir para cima */
}

/* Estilo para o submenu */
.dropdown-menu {
    width: 120px; /* Largura reduzida */
    font-size: 14px; /* Tamanho menor da fonte */
    padding: 5px 0; /* Menos padding para reduzir a altura */
    min-height: 80px; /* Ajuste da altura mínima */
    display: none; /* Submenu escondido por padrão */
    position: absolute;
    top: 100%;
    right: 0;
    border: 1px solid #333; /* Borda mais escura */
    background-color: #000; /* Fundo preto */
    border-radius: 10px;
    z-index: 1050;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease;
    animation: fadeIn 0.5s forwards;
}

/* Efeito de hover nos itens do submenu */
.dropdown-menu li a:hover {
    background-color: #1E90FF; /* Fundo escuro quando o item é hover */
    color: #fff;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease;
    animation: fadeIn 0.5s forwards;
}

/* Ajustar o espaçamento entre os itens do menu */
.dropdown-menu .dropdown-item {
    padding: 8px 10px; /* Reduz o padding dos itens */
    color: #1E90FF;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease;
    animation: fadeIn 0.5s forwards;
}

/* Ajustar o tamanho do ícone dentro do menu */
.dropdown-menu .dropdown-item i {
    font-size: 16px; /* Tamanho do ícone menor */
    margin-right: 8px; /* Espaço entre ícone e texto */
    color: #FFF;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
}
.row {
     background-color: #131417; /* Fundo preto */
}

@keyframes slide-in-line {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.animated-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: #0ebeff;
    animation: slide-in-line 1s ease-out forwards;
}
body {
    background-color: #131417; /* Cor de fundo para o site */
}

/* Garantir que outros elementos do site também sigam a cor de fundo */
html {
    background-color: #131417; /* Cor de fundo da página */
}

/* Subheader para dispositivos móveis */
.subheader {
    position: fixed;
    margin-top: 19px; /* Ajuste conforme necessário para o tamanho do seu header */
    left: 0;
    right: 0;
    z-index: 1000; /* Garante que o subheader esteja acima de outros elementos */
    background-color: #E8E8E8;
    padding: 2px 0;
}

/* Centralizar o campo de pesquisa */
.subheader .container {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Ajuste de largura para o campo de pesquisa */
.subheader .form-control {
    width: 80%;  /* Ajuste a largura conforme necessário */
    max-width: 600px; /* Largura máxima */
}
/* Animação fade-in (aplicada inicialmente aos cards) */
.card.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
  /* Ajustando o estilo do input para espaçar o ícone de pesquisa */
    .ps-5 {
        padding-left: 35px; /* Adiciona espaço para o ícone */
    }
    
    #searchInputSubheader{
        max-width: 400px; 
    }
  /* Definindo a cor do placeholder */
    #searchInputSubheader::placeholder, #searchInput::placeholder {
        color: #C7C9D3; /* Cor do placeholder */
    }

     /* Ajustando o estilo da pesquisa para centralizar e maximizar o espaço */
    .search-container {
        flex-grow: 1;
        max-width: 400px;
        position: relative;
        margin-left: 2px;
        margin-right: 2px;
    }
    
    #searchInputSubheader {
        width: 100%;
    }

    /* Responsividade */
    @media (max-width: 768px) {
        .search-container {
            text-align: center;
            margin-top: 10px;
         
        }
    }

.carousel-color-line {
    height: 2px;
    width: 100%;
    margin-top: 0;
    background: linear-gradient(to right, #00C9FF, #92FE9D, #FEE140, #FA709A, #9D50BB);
    border-radius: 2px;
    animation: gradient-slide 3s ease infinite;
    background-size: 300% 100%;
}

/* Animação leve para o gradiente se mover */
@keyframes gradient-slide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.modal-headline {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal-carousel-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(to right, #00C9FF, #92FE9D, #FEE140, #FA709A, #9D50BB);
    border-radius: 2px;
    animation: gradient-slide 4s ease infinite;
    background-size: 300% 100%;
}

.modal-description-container {
    background-color: #fff;
    color: #000;
    padding: 1rem;
    border-radius: 8px;
}

.modal-description {
    font-size: 1rem;
    line-height: 1.6;
}

.badge {
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.modal-content-bg {
    background-color: #f5f5f5; /* Cinza claro */
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}


.modal-description-container p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}


/* Botão de curtir padrão */
.like-btn {
    margin-top: 5px;
    border: none;
    background-color: transparent;
    color: #e91e63; /* Vermelho rosa padrão */
    font-size: 1rem;
    cursor: pointer;
    padding: 1px 2px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

/* Ícone do botão */
.like-btn i {
    margin-right: 5px;
    color: #e91e63;
    transition: color 0.3s ease;
}

/* Contador de curtidas */
.like-btn .like-count {
    color: #7f7f7f;
    font-size: 0.7rem;
}

/* Animação ao clicar no botão (ícone cresce e volta) */
.like-btn:active i {
    animation: pulse 0.6s ease-out;
}

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

/* Estado "curtido" – desativa o botão visualmente */
.like-btn.liked {
    cursor: not-allowed;
    pointer-events: none;
}

/* Ícone em estado desativado */
.like-btn.liked i {
    color: #842029; /* vermelho escuro */
    opacity: 0.5; /* Fica com aparência desativada */
}

/* Mantém o contador com visual normal */
.like-btn.liked .like-count {
    color: #7f7f7f;
    opacity: 1;
}

.button-group-modal {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
 /* Garante que o modal fique acima de qualquer z-index da página */
  .modal.show {
      z-index: 9999 !important;
  }

  .modal-backdrop.show {
      z-index: 9998 !important;
  }


/* Aumenta bastante os cards em dispositivos móveis e tablets */
@media (max-width: 991.98px) {
  .card-wrapper {
    padding-left: 2px !important;
    padding-right: 2px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
 
  .card-wrapper .card {
    width: 100% !important;
  
  }

  .container, .container-fluid {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }
}
  .card-wrapper .card-body h5 {
    font-size: 1.3rem;         /* Título maior */
  }

  .card-wrapper .card-body p {
    font-size: 1.1rem;         /* Parágrafo maior */
  }

  .card-wrapper .btn {
     
    font-size: 0.8rem !important;     /* Botões maiores */
    padding: 2px 2px !important;
  }

  .card-wrapper .tags span {
    font-size: 0.5rem;
    padding: 2px 4px;
    margin: 2px;
  }

  .card-wrapper .carousel-item img,
  .card-wrapper .carousel-item video {
    height: 100%;
    width: 100%;
    border-radius: 8px;
  }
}
.modalsec {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-contentsec {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  font-size: 16px;
}
.closesec {
  float: right;
  font-size: 20px;
  cursor: pointer;
}
/* Modal CSS Puro */
.pure-modal {
  display: none;
  position: fixed;
  z-index: 1055;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.pure-modal.show {
  display: block !important;
}

.pure-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.pure-modal-content {
  position: relative;
  z-index: 1060;
  background-color: #28a745;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #28a745;
  width: 90%;
  max-width: 500px;
  color: white;
  border-radius: 5px;
  animation: fadeIn 0.4s ease-out;
}

.pure-modal.show .pure-modal-content {
  animation: fadeIn 0.4s ease-out;
}


.pure-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pure-modal-title {
  margin: 0;
  font-size: 1.25rem;
}

.pure-close-btn {
  font-size: 1.5rem;
  cursor: pointer;
}

.pure-modal-body {
  margin-top: 10px;
  text-align: center;
  font-size: 1rem;
}

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

.modal-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-description img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
    border-radius: 6px;
}

.modal-description ul, .modal-description ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.modal-description h1,
.modal-description h2,
.modal-description h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.toast-z-top {
    position: fixed !important;
    top: 1rem !important;
    right: 1rem !important;
    z-index: 999999 !important; /* Altíssimo para garantir sobreposição */
    pointer-events: auto;
}
.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.logo2 {
  display: block;
  max-width: 200px;
  height: auto;
  margin: 3px auto 3px auto;
  padding: 0;
  line-height: 0;
}
.checkout-box img.logo {
  max-width: 100px;
  height: auto;
}


#toggleSenha:focus {
  box-shadow: none;
}
#confirmLogoutModal{
  z-index: 1900; /* Altíssimo para garantir sobreposição */
}
/* Deixa os placeholders visíveis em inputs escuros */
.form-control::placeholder {
  color: #bbb !important; /* tom claro de cinza */
  opacity: 1; /* força visibilidade em alguns navegadores */
}
#configUsuarioModal {
  display: none;
}
.carousel-control-prev,
.carousel-control-next {
  z-index: 9999 !important;
}

.card,
.carousel-item {
  overflow: visible !important;
}

.carousel-item video {
  pointer-events: auto !important;
}

/* Destacar a tag selecionada */
.tag-filtro.active {
    background-color: #0ebeff; /* cor de destaque */
    color: #000 !important;    /* texto escuro para contraste */
    border-radius: 4px;        /* cantos arredondados */
    padding-left: 5px;         /* um pouco de espaço interno */
}

/* Força o modal ficar no topo de tudo */
#confirmLogoutModal {
    z-index: 99999 !important; /* Z-index muito alto */
}

/* Backdrop também precisa de z-index alto */
#confirmLogoutModal.show {
    z-index: 99998 !important;
}

/* Opcional: modal dialog em cima do backdrop */
#confirmLogoutModal .modal-dialog {
    z-index: 99999 !important;
}

/* Apenas para telas maiores que 768px (desktop e tablets grandes) */
@media (min-width: 769px) {
  .card .video-wrapper {
      height: 220px; 
      overflow: hidden;
      position: relative;
  }

  .card .video-wrapper video {
      width: 100%;
      height: auto;
      object-fit: cover;
      object-position: top;
  }

  video.fullscreen-mode {
      object-fit: contain !important;
      object-position: center !important;
      background: #000;
      width: 100% !important;
      height: 100% !important;
  }

  /* Oculta TODOS os controles exceto fullscreen */
  .video-card::-webkit-media-controls {
      display: flex !important;
  }

  /* Esconde botões que NÃO queremos */
  .video-card::-webkit-media-controls-play-button,
  .video-card::-webkit-media-controls-volume-slider,
  .video-card::-webkit-media-controls-mute-button,
  .video-card::-webkit-media-controls-timeline,
  .video-card::-webkit-media-controls-current-time-display,
  .video-card::-webkit-media-controls-time-remaining-display,
  .video-card::-webkit-media-controls-seek-back-button,
  .video-card::-webkit-media-controls-seek-forward-button,
  .video-card::-webkit-media-controls-pip-button {
      display: none !important;
  }

  /* Deixa APENAS fullscreen visível */
  .video-card::-webkit-media-controls-fullscreen-button {
      display: block !important;
  }

  .video-wrapper {
      position: relative;
      height: 220px;
      overflow: hidden;
  }

  .fullscreen-btn {
      position: absolute;
      bottom: 20px;
      right: 2px;
      background: rgba(0,0,0,0.6);
      color: white;
      padding: 8px 10px;
      border-radius: 6px;
      cursor: pointer;
      z-index: 20;
  }

  .fs-play-btn {
      position: absolute;
      top: 20px;
      left: 20px;
      background: rgba(0,0,0,0.6);
      color: white;
      padding: 10px 12px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 22px;
      z-index: 30;
      display: none; 
  }

  /* Remove TODOS os controles nativos */
  video::-webkit-media-controls,
  video::-webkit-media-controls-enclosure,
  video::-webkit-media-controls-panel {
      display: none !important;
  }

  .video-wrapper video {
      pointer-events: auto !important;
  }

  video.fullscreen-mode {
      position: fixed;
      top: 0;
      left: 0;
      width: 100% !important;
      height: 100% !important;
      object-fit: contain !important;
      background: #000;
      z-index: 99999;
  }
}


.card.fade-in {
    position: relative;  /* necessário para o ::before ficar relativo ao card */
    border-radius: 8px;  /* cantos arredondados do card */
    overflow: hidden;    /* evita que a borda "vaze" */
}

.card.fade-in::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px; /* largura da borda */
    border-radius: 8px; /* combinar com o card */
    background: linear-gradient(to right, #00C9FF, #92FE9D, #FEE140, #FA709A, #9D50BB);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; /* não bloqueia clique */
    z-index: 10;
    animation: gradient-slide 3s linear infinite;
}

/* Animação do gradiente */
@keyframes gradient-slide {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Esconde o botão fullscreen em dispositivos móveis */
@media (max-width: 768px) {
    .video-wrapper .fullscreen-btn {
        display: none !important;
    }
}

/* Faz o vídeo do modal usar tamanho original e responsivo */
.modal .video-wrapper video {
    width: auto !important;      /* largura natural */
    height: auto !important;     /* altura natural */
    max-width: 100%;             /* nunca ultrapassa a largura do modal */
    max-height: 80vh;            /* ajusta para caber na tela */
    object-fit: contain;         /* mantém proporção */
    background: #000;            /* fundo escuro caso haja bordas */
}

/* Remove altura fixa da wrapper dentro do modal */
.modal .video-wrapper {
    height: auto !important;
}




/* Remove QUALQUER borda colorida ou gradiente antigo */
.card.fade-in::before {
    content: none !important;
}

/* ================================
   ✨ Card Preto + Borda Translúcida Forte
   ================================ */
.card {
    position: relative;

    /* 🔵 Aumentei a espessura e a presença da borda */
    border: 2px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 14px;

    /* 🔥 Agora o card é preto real */
    background: #000 !important;

    /* Leve vidro apenas na borda, não no fundo */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    /* Glow elegante */
    box-shadow: 
        0 0 10px rgba(255, 255, 255, 0.10),
        inset 0 0 12px rgba(255, 255, 255, 0.05);

    overflow: hidden;
    transition: 0.25s ease-in-out;
}

/* Hover premium */
.card:hover {
    border-color: rgba(255, 255, 255, 0.30);
    box-shadow:
        0 0 18px rgba(255, 255, 255, 0.18),
        inset 0 0 18px rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}
