:root {
  --color-1: #d1e6cf;
  --color-2: #fcfffc;
  --color-3: #c3c3c3;
  --color-4: #575756;
}

.bg-color-1 {
  background: var(--color-1);
}
.bg-color-2 {
  background: var(--color-2);
}
.bg-color-3 {
  background: var(--color-3);
}
.bg-color-4 {
  background: var(--color-4);
}

.color-1 {
  color: var(--color-1);
}
.color-2 {
  color: var(--color-2);
}
.color-3 {
  color: var(--color-3);
}
.color-4 {
  color: var(--color-4);
}

/*--------------------------------------------------------------
# General submit
--------------------------------------------------------------*/
body {
  color: var(--color-2);
}

.areia {
  color: var(--color-2);
}
a {
  color: var(--color-4);
  text-decoration: none;
}

a:hover {
  color: var(--color-1);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-4);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--color-2);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-1);
  color: var(--color-2);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-2);
}

.imgLoader, .imgLoader2 {
  position: absolute;
  top: calc(50% - 75px);
  left: calc(50% - 80px);
  width: 180px;
  height: 250px;
  z-index: 5;
  overflow: hidden;
}
.imgLoader > img, .imgLoader2 > img {
  width: 95%;
}
.imgLoader2 {
  animation: animate-preloader 3s ease-in-out infinite;
}

@keyframes animate-preloader {
  0% {
    height: 143px;
  }
  60% {
    height: 0px;
  }
  100% {
    height: 0px;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  padding: 20px 0;
  z-index: 5000;
}

.header-scrolled,
.header-inner-pages {
  background: var(--color-1);
  padding: 12px 0;
  box-shadow: 0px 0px 20px #000;
}

.header-scrolled a {
  color: var(--color-2) !important;
}

.header-scrolled .active {
  color: var(--color-4) !important;
}

#header .logo {
  margin: 0;
  padding: 0;
}
.imgLight {
  filter: brightness(100);
}

#header .logo a {
  color: var(--color-2);
}



/*--------------------------------------------------------------
# Navigation Menu read-more
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  justify-content: start;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  text-shadow: 0px 0px 2px #000;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--color-3);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar .active,
.navbar .active:focus {
  color: var(--color-2);
  font-weight: bolder;
  text-shadow: none;
}
.navbar a:hover,

.navbar li:hover>a {
  color: var(--color-4);
  font-weight: bolder;
  text-shadow: none;
}

.getstarted,
.getstarted:focus {
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 15px;
  background: var(--color-1);
  color: var(--color-4);
  border: 2px solid var(--color-2);
}

.getstarted:hover,
.getstarted:focus:hover {
  color: var(--color-2);
  border-color: var(--color-2);
  background: var(--color-3);
}

.getstarted:before,
.navbar li:hover>.getstarted:before {
  visibility: hidden;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--color-2);
  box-shadow: 0px 0px 30px rgba(107, 114, 128, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-4);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-4);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--color-4);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(55, 65, 81, 0.9);
  transition: 0.3s;
  z-index: 999;
  color: var(--color-3);
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: var(--color-2);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
  color: var(--color-3);
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--color-4);
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-4);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--color-2);
  box-shadow: 0px 0px 30px rgba(107, 114, 128, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-4);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section back-to-top
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 80vh;
  z-index: 0;
  background: url("../img/clinica/IMG_8345.jpeg") center center no-repeat;
  background-size: cover;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* 0.0 = transparente | 1.0 = preto total */
  z-index: 1;
}
#hero div {
  z-index: 100;
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 64px;
  color: var(--color-2);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

#hero .btn-get-started {
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: var(--color-2);
  border: 2px solid var(--color-2);
}

#hero .btn-get-started:hover {
  background: var(--color-2);
  color: var(--color-4);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }

  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@media (max-width: 575px),
(max-height: 600px) {
  #hero {
    height: auto;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.svg {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.svg-border-waves {
  padding-top: 1rem;
}
.svg-border-waves svg {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2rem;
  width: 100%;
}
@media (min-width: 576px) {
  .svg-border-waves {
    padding-top: 1.5rem;
  }
  .svg-border-waves svg {
    height: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .svg-border-waves {
    padding-top: 2rem;
  }
  .svg-border-waves svg {
    height: 3rem;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--color-2);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-4);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 120px 0;
  position: relative;
}
.svgSobre {
 width: 100%;
 position: absolute;
 bottom: 0;
}
.about .content h3 {
  font-size: 32px;
  color: var(--color-4);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-4);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px 10px 28px;
  border-radius: 5px;
  transition: 0.5s;
  color: var(--color-4);
  background: linear-gradient(45deg, var(--color-1) 0%, var(--color-2) 100%);
  position: relative;
}

.about .content .read-more:hover {
  background: linear-gradient(180deg, var(--color-1) 0%, var(--color-2) 100%);
}

.about .content .read-more i {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 12px;
}

.simbolos > img {
  opacity: 0.6;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(45deg, rgba(139, 149, 109, 0.9) 0%, rgba(184, 197, 166, 0.9) 100%), url("../img/counts-bg.png") center center no-repeat;
  padding: 80px 0 60px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: var(--color-2);
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Services  cta-button
--------------------------------------------------------------*/


.services {
  position: relative;
}
.services:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url('../img/1.png'), var(--color-2);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 80vh;
  background-attachment: fixed;
  opacity: 0.3;
}

.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: var(--color-2);
  box-shadow: 0px 0 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon img {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: var(--color-2);
}

.services .icon-box h4 {
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: var(--color-4);
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: var(--color-2);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}


.services .iconbox-pink i {
  color: var(--color-1);
}

.services .iconbox-pink:hover .icon img {
  filter: brightness(0) invert(1);
}

.services .iconbox-pink:hover .icon path {
  fill: var(--color-1);
}

.services .iconbox-yellow i {
  color: var(--marrom-terra);
}

.services .iconbox-yellow:hover .icon i {
  color: var(--color-2);
}

.services .iconbox-yellow:hover .icon path {
  fill: var(--marrom-terra);
}

.services .iconbox-red i {
  color: var(--color-1);
}

.services .iconbox-red:hover .icon i {
  color: var(--color-2);
}

.services .iconbox-red:hover .icon path {
  fill: var(--color-1);
}

.services .iconbox-teal i {
  color: var(--color-3);
}

.services .iconbox-teal:hover .icon i {
  color: var(--color-2);
}

.services .iconbox-teal:hover .icon path {
  fill: var(--color-3);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
}
.team .team-member {
  background:  #FFF;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}
.team-member:before {
  position: absolute;
  content: "";
  background: url('../img/logobege.svg') center center no-repeat;
  background-size: 30%;
  width: 100%;
  height: 100%;
  opacity: 0.19;
  z-index: 10;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 100;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}



.team .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  z-index: 200;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 36px;
  height: 36px;
}

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.team .team-member .social a:hover {
  background: var(--accent-color);
}

.team .team-member .social a:hover i {
  color: var(--contrast-color);
}

.team .team-member .social a+a {
  margin-left: 8px;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--color-2);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  margin: 10px 0 5px 45px;
  color: var(--color-4);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: var(--cinza-suave);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--color-3);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: var(--color-2);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--color-2);
  opacity: 1;
  border: 1px solid var(--color-4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-4);
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px;
  }
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--color-3);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/4;
}

.portfolio .portfolio-content img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--color-3);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--color-3);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}



/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(45deg, rgba(139, 149, 109, 0.9) 0%, rgba(184, 197, 166, 0.9) 100%);
}

.faq .section-title h2,
.faq .section-title p {
  color: var(--color-4);
}

.faq .section-title h2::after {
  background: rgba(255, 255, 255, 0.6);
}

.faq .faq-list {
  padding: 0 100px;
  color: var(--color-4);
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 30px;
  background: var(--color-2);
  border-radius: 5px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--color-4);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: var(--color-4);
}

.faq .faq-list a.collapsed:hover {
  color: var(--color-4);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: var(--color-4);
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: var(--color-2);
}

.contact .info-box i {
  font-size: 32px;
  color: var(--color-1);
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: var(--color-4);
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: var(--color-2);
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--color-2);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--color-2);
  background: #18d26e;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--color-2);
  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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-1);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-1);
  border: 0;
  padding: 10px 24px;
  color: var(--color-2);
  transition: 0.4s;
  border-radius: 5px;
}
.cta-button { 
  background: var(--color-1);
  border: 0;
  padding: 10px 24px;
  color: var(--color-4);
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--marrom-terra);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--color-2);
  min-height: 40px;
  margin-top: 85px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 56px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-4);
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: var(--color-2);
  font-size: 14px;
  background: linear-gradient(45deg, rgba(139, 149, 109, 0.9) 0%, rgba(184, 197, 166, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

#footer .footer-top h4 {
  font-size: 16px;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--color-2);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: underline;
  color: var(--color-2);
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-2);
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid white;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: rgba(160, 120, 74, 0.8);
  color: var(--color-2);
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--color-1);
}

#footer .copyright-wrap {
  border-top: 1px solid var(--color-3);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: var(--color-2);
}

#footer .credits a {
  color: var(--color-2);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-2);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-2);
  text-decoration: none;
}


.team-section {
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.tabs-nav { display: flex; gap: 0; border-bottom: 1px solid var(--color-2); margin-bottom: 48px; overflow-x: auto; scrollbar-width: none; }
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn { flex: 1; min-width: 180px; background: var(--color-2); border: none; cursor: pointer; padding: 0; position: relative; transition: all 0.3s ease; }
.tab-btn-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 16px 18px; }
.tab-photo { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-2); transition: border-color 0.3s, transform 0.3s; background: var(--color-2); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.tab-name {  color: var(--color-3); text-align: center; line-height: 1.3; transition: color 0.3s; }
.tab-btn::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 2px; background: var(--color-1); transform: scaleX(0); transition: transform 0.3s ease; }
.tab-btn.active .tab-photo { border-color: var(--color-2); transform: scale(1.08); }
.tab-btn.active .tab-name { color: var(--color-4); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover .tab-name { color: var(--color-4); }

.tab-panel { display: none; animation: fadeUp 0.4s ease; }
.tab-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.member-card { background: var(--color-2); border-radius: 20px; box-shadow: var(--color-4); overflow: hidden; display: grid; grid-template-columns: 260px 1fr; }
.member-photo-wrap { position: relative; background: linear-gradient(160deg, var(--color-2) 0%, #d4b8a8 100%); min-height: 360px; }
.member-photo-placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, var(--color-2) 0%, #d4b8a8 100%); min-height: 360px; }
.member-photo-placeholder svg { width: 80px; height: 80px; opacity: 0.3; }
.member-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: space-between; }
.member-body h3 {  font-size: 1.7rem; font-weight: 300; color: var(--color-4); margin-bottom: 4px; line-height: 1.2; }
.member-title { font-size: 0.8rem; font-weight: 500; color: var(--color-2); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.member-crm { font-size: 0.78rem; color: var(--color-3); margin-bottom: 24px; }
.member-desc { font-size: 0.88rem; line-height: 1.85; color: var(--color-4); font-weight: 300; margin-bottom: 20px; }
.member-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag { background: var(--color-1); border: 1px solid var(--color-2); color: var(--color-2); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 100px; text-transform: uppercase; }
.member-social { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.social-link { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--color-2); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--color-3); transition: all 0.2s; font-size: 0.95rem; }
.social-link:hover { background: var(--color-1); border-color: var(--color-2); color: var(--color-2); transform: translateY(-2px); }
.bio-btn { background: none; border: 1px solid var(--color-2); color: var(--color-3);  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 18px; border-radius: 100px; cursor: pointer; transition: all 0.2s; }
.bio-btn:hover { background: var(--color-4); border-color: var(--color-4); color: var(--color-2); }

/* MODAL */
.bio-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(58,40,32,0.55); z-index: 1000; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(4px); }
.bio-modal-overlay.open { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.bio-modal { background: var(--color-2); border-radius: 20px; max-width: 600px; width: 100%; padding: 40px; position: relative; box-shadow: 0 24px 80px rgba(58,40,32,0.25); animation: slideUp 0.3s ease; max-height: 90vh; overflow-y: auto; }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.bio-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; cursor: pointer; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-3); font-size: 1.2rem; transition: background 0.2s; }
.bio-modal-close:hover { background: var(--color-1); color: var(--color-4); }
.bio-modal-header { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--color-2); }
.bio-modal-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-2); background: var(--color-2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.bio-modal-header h3 {  font-weight: 400; color: var(--color-4); margin-bottom: 4px; }
.bio-modal-header span { font-size: 0.78rem; color: var(--color-2); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }
.bio-modal-text { font-size: 0.88rem; line-height: 1.9; color: var(--color-4); font-weight: 300; }
.bio-modal-text p { margin-bottom: 14px; }
.bio-modal-text ul { padding-left: 18px; margin-top: 8px; margin-bottom: 14px; }
.bio-modal-text ul li { margin-bottom: 6px; }
.bio-modal-text .section-label { font-size: 0.72rem; font-weight: 600; color: var(--color-2); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px; margin-top: 20px; display: block; }

.team-cta { text-align: center; margin-top: 56px; }
.cta-button { display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: var(--color-2);  font-weight: 500; font-size: 0.9rem; padding: 16px 32px; border-radius: 100px; border: none; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

@media (max-width: 700px) {
  .member-card { grid-template-columns: 1fr; }
  .member-photo-wrap { min-height: 240px; }
  .member-body { padding: 28px 24px; }
  .tab-btn { min-width: 130px; }
  .tab-photo { width: 52px; height: 52px; }
}