*{
   font-family: "Lato", sans-serif !important;
}
:root{
  --color-primary: #bfa188;
  --font-t: 42px;
  --font-47: 47px;
  --font-36: 36px;
  --font-32: 32px;
  --font-23: 23px;
  --font-21: 21px;
  --font-18: 18px;
  --font-p: 16px;
}
.light-page{
    background: #fff;
}
#wrap {
    overflow-x: hidden;
    overflow-y: hidden;
}
body::-webkit-scrollbar {
    width: 4px;
    height: 8px;
    -webkit-border-radius: 16px;
}

body::-webkit-scrollbar-track-piece {
    background-color: #ffffff;
    -webkit-border-radius: 3px;
}

body::-webkit-scrollbar-thumb:vertical {
    height: 5px;
    background-color: #121211;
    -webkit-border-radius: 3px;
}

body::-webkit-scrollbar-thumb:horizontal {
    width: 5px;
    background-color: #121211;
    -webkit-border-radius: 3px;
}

.separate-list li:last-child {
  border-bottom-width: 0;
  padding-bottom: 4px;
}
#nav-menu ul.list-inline {
  float: right;
  margin-bottom: 0;
}
#nav-menu .nav-link {
  color: #1d4d56;
  padding-top: 5px; 
  padding-bottom: 5px;
}
.navbar-nav li a{
  position: relative;
}
.navbar-nav li a:after{
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1d4d56;
    -webkit-transition: .4s width;
    transition: .4s width;
}
.navbar-nav li:hover a:after{
  width: 100%;
}
#nav-menu{
  background: #fff;
}

.navbar .navbar-nav .sub-menu{
    border-top: 2px solid var(--color-primary);
    margin: 0;
    padding: 0px 0;
    z-index: 2;
    background: #fff;
    min-width: 213px;
}
.navbar .sub-menu a:after{
  display: none;
}
.navbar .navbar-nav ul.sub-menu > li {
  padding:0;
  border-bottom: 1px solid rgba(168, 201, 153, 0.24);
}
.navbar .navbar-nav ul.sub-menu > li a{
  color: var(--color-primary) !important;
}
.navbar .sub-menu .nav-link {
  padding: 10px 0;
  margin-right: 1rem;
  margin-left: 1rem;
  bottom: 0px;
  position: relative;
  font-weight: 400 !important;
  font-size: 15px !important;
  
}
.navbar .sub-menu .nav-link:hover{
  color: #000 !important;
}
@media (max-width: 1230px) {
  li:hover>.sub-menu{
    display: block !important;
    z-index: 999 !important;
  }
  .navbar .nav-link {
    bottom: -6px;
  }
}




.menu-topo {
  position: fixed;
  width: 100%;
  top: 0;
  transition: all 1s linear;
}
.side-menu-wrapper { /* style menu wrapper */
  background: #fff;
  padding: 40px 10px 0 10px;
  position: fixed; /* Fixed position */
  top: 0;
  right: 0; /* Sidebar initial position. "right" for right positioned menu */
  height: 100%;
  z-index: 2;
  transition: 0.5s; /* CSS transition speed */
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
}
.side-menu-wrapper .box > ul{ /* css ul list style */
  list-style:none;
  padding:0;
  margin:0;
  overflow-y: auto; /* enable scroll for menu items */
}
.side-menu-wrapper .box > ul > li{ /* links */
  display: block;
  border-bottom: 0;
  padding: 7px 4px;
  color: #1d4d56;
  text-transform: uppercase;
  transition: 0.3s;
  text-decoration: none;
}
.side-menu-wrapper .box ul li a:hover{
  text-decoration: none !important;
}
.side-menu-wrapper .box > a.menu-close { /* close button */
  padding: 8px 0 4px 0px;
  color: var(--color-primary);
  display: block;
  margin: -50px 19px 0px -6px;
  font-size: 43px;
  text-decoration: none;
  text-align: right;
}
.menu-overlay { /* overlay */
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.7);
  overflow-y: auto;
  overflow-x: hidden;
  text-align: center;
  opacity: 0;
  transition: opacity 1s;
}
.side-menu-wrapper .box ul li ul{ 
  text-decoration: none;
  list-style:none;
  margin-top: 10px;
  display: none;
}
.side-menu-wrapper .box ul li ul li a{
  display: block;
  margin-top: 10px;
  padding-left: 8px;
  font-size: 13px;
}
.side-menu-wrapper .box ul li:hover ul{
  display: block; 
}
.btn-ctal{  
  background: #1d4d56;
  border-radius: 7px;
  padding: 7px 14px;
  font-size: var(--font-18);
  color: #fff;
  border: 0;
  text-align: center;
  white-space: normal;
}
.btn-ctal:hover{
  opacity: 0.8;
  text-decoration: none !important;
}

#menu-fixed .btn-ctal{
  display: block;
}
.wpcf7-spinner {
  position: absolute;
}
.media {
  border-top-width: 0px;
  border-top-style: solid;
  padding-top: 0px;
  margin-top: 0;
}
.foto{
  width: 100%;
  display: block;
  margin: 0 auto;
}
a.video-box {
  display: inline-block;
  position: relative;
  width: 100%;
}
a.video-box::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  background: url(../images/play2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: transparent;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}
a.video-box::before {
  display: none;
}
.mfp-iframe-holder .mfp-content {
  width: 50%;
}
/*===========================
  Slides
=============================*/
#slides .item{
  padding-top: 100px;
  padding-bottom: 200px;
  height: 604px;
}
#slides h1{
  color: #fff;
  font-weight: 800;
  font-size: var(--font-36);
  margin-bottom: 10px;
}
#slides h2{
  color: #fff;
  background: #1d4d56;
  display: inline-block;
  padding: 5px;
  border-radius: 7px;
  font-size: var(--font-21);
}
#slides p{
  color: #fff;
  font-size: var(--font-18);
}
#slides .btn-ctal {
  font-size: 21px;
  background: #49b533;
  font-weight: 800;
  padding: 18px;
}
#slides .seta{
  width: 34px;
  height: 34px;
  background: url('../images/seta.svg');
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 20px;
}
#slides .seta2{
  width: 34px;
  height: 34px;
  background: url('../images/seta2.svg');
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: 20px;
}
/*===========================
    Home
=============================*/
#home .item{
  padding-top: 20px;
  padding-bottom: 20px;
}
#home .foto{
  max-width: 100%;
  min-width: 526px;
  display: block;
  margin: 0 auto;
  height: 338px;
  object-position: center;
  object-fit: cover;
  opacity: 0.5;
  -webkit-box-shadow: 0px 8px 20px 0px rgb(0 0 0 / 18%);
  box-shadow: 0px 8px 20px 0px rgb(0 0 0 / 25%);
  transform: scale(0.9);
  transition: transform 1s;
}
#home .item-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
}
#home .center .foto{
  opacity: 1;
  transform: scale(1) !important;
}
#home .gallery-item.gallery-style-5 .item-title {
  background: linear-gradient(180deg, rgb(185 151 123 / 0%) 0%, #ebc9ac 100%);
}
#home .item-title{
  padding: 28px 20px;
}
#home h4 {
  font-size: var(--font-32);
  color: #1d4d56;
  font-weight: 400;
  margin-bottom: 0px;
  text-shadow: 0px -5px 11px #ebc9ac;
}
#home h4 strong{
  font-weight: 800;
}
#home h3,
#home-2 h2, 
#home-5 h2, 
#home-3 h2, 
#home-4 h2{
  color: #1d4d56;
  font-size: var(--font-t);
  font-weight: 700;
  margin-bottom: 0px;
}
#home-2 h2{
  color: #fff;
}
#home-2 p{
  color: #fff;
  font-size: var(--font-23);
  font-weight: 400;
  margin-bottom: 0px;
}
#home-2 .gallery-item.gallery-style-5{
  z-index: -2;
}
#home-2 .gallery-item.gallery-style-5:hover .item-img {
  opacity: 1;
}
#home-2 .gallery-item.gallery-style-5 .item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
#home-2 .item-title{
  padding: 38px 20px;
}
#home-2 h4 {
  font-size: var(--font-23);
  color: #fff;
  margin-bottom: 0px;
}
#home-2 .item-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}

#home-2 .mt-btn{
  margin-top: -7%;
  z-index: 5 !important;
}
#home-2 .btn-ctal{
  border-radius: 30px;
  background: #cfa687;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 30px;
}
#home-2 .btn-ctal:hover{
  background: rgb(66 34 28);
  opacity: 1;
}
#home-3 h3{
  color: #1d4d56;
  font-size: var(--font-32);
  margin-bottom: 10px;
}
#home-3 ul {
  padding-left: 20px;
}
#home-3 ul li {
  color: var(--color-primary);
  list-style-position: outside;
  font-size: 20px;
  font-weight: 400;
}
#home-3 .btn-ctal{
  background: #1d4d56;
  border-radius: 30px;
  padding: 8px 20px;
}
#home-3 .float-right ul{
  text-align: right;
}
#home-3 .float-right ul li{
  list-style-position: inside;
}
#home-3 .float-right h3{
  text-align: right;
}
#home-4 h2{
  color: #fff;
}
#home-4 .gallery-item.gallery-style-5 .item-title {
  background: linear-gradient(180deg, rgb(185 151 123 / 0%) 0%, rgb(185 151 123) 100%);
}
#home-4 .item-title{
  padding: 10px 20px;
}
#home-4 h4 {
  font-size: var(--font-18);
  color: #fff;
  font-weight: 700;
  margin-bottom: 0px;
  text-shadow: 0px -5px 11px rgb(185 151 123);
}
#home-5 h3{
  color: var(--color-primary);
  font-size: var(--font-18);
  font-weight: 300;
  margin-bottom: 5px;
}
#home-5 p{
  color: var(--color-primary);
  font-size: var(--font-p);
  margin-bottom: 0px;
}
#home-6 h2{
  color: var(--color-primary);
  font-size: var(--font-32);
}
#home-6 p{
  color: #3f686f;
  font-size: var(--font-p);
  text-align: justify;
  font-weight: 900;
  margin-bottom: 20px;
}
#home-7 .foto {
    height: 210px;
  object-fit: cover;
  object-position: center;
}
.cta-home h2, .cta-home p{
  color: #fff !important;
}
#instagram p{
  color: var(--color-primary);
  font-size: var(--font-18);
  font-weight: 800;
  margin-bottom: 0px;
}
#instagram h2{
  color: #3f686f;
  font-size: var(--font-32);
  margin-bottom: 0px;
}
#instagram .box{
  padding: 30px;
  background: #fff;
}
/*===========================
    page-top
=============================*/
#page-top h1{
  font-size: var(--font-t);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0px;
}
/*===========================
    treatments
=============================*/
#treatments h2{
  color: var(--color-primary);
  font-size: var(--font-32);
}
#treatments p,
#treatments-2 h4,
#about p{
  color: #3f686f;
  font-size: var(--font-18);
  font-weight: 900;
}
#treatments li{
  color: #3f686f;
  font-size: var(--font-18);
  font-weight: 400;
}
#treatments li strong{
  font-weight: 900;
}
#treatments ul {
  padding-left: 20px;
  list-style-image: url('../images/list.svg');
}
#treatments ul li {
  list-style-position: outside;
}
#treatments-2 .foto{
  width: 100px;
}
#treatments-2 h2{
  color: #3f686f;
  font-size: var(--font-32);
  font-weight: 700;
}
#treatments-2 h3{
  color: var(--color-primary);
  font-size: var(--font-36);
  font-weight: 900;
}
#treatments-2 p{
  color: var(--color-primary);
  font-size: var(--font-p);
  margin-bottom: 6px;
}
#treatments-2 .box{
  padding: 0px 35px;
}
#treatments-2 .linha{
  position: absolute;
  border-bottom: 3px dotted #3f3948;
  width: 100%;
  height: 2px;
  top: 14%;
  left: 50%;
  transform: translate(-50%, -50%);

}
#treatments-2 .seta{
  width: 34px;
  height: 34px;
  background: url('../images/seta.svg');
  background-size: cover;
  background-repeat: no-repeat;
}
#treatments-2 .seta2{
  width: 34px;
  height: 34px;
  background: url('../images/seta2.svg');
  background-size: cover;
  background-repeat: no-repeat;
}
/*===========================
  #faq
=============================*/
#faq h3{
  color: #fff;
  font-size: var(--font-32);
  font-weight: 700;
}
#faq .card{
  margin-bottom: 0px;
}
#faq .card-header h2{
  font-size: var(--font-23);
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none !important;
}
#faq .card-header .btn-active .btn-block{
  background: #fff url(../images/sb2.svg) !important;
  background-size: 33px !important;
  background-repeat: no-repeat !important;
  background-position: 98.7% !important;
  border: 1px solid #867062;
  border-radius: 10px
}

#faq .collapsed{
  background: #fff url(../images/sb.svg) !important;
  background-size: 33px !important;
  background-repeat: no-repeat !important;
  background-position: 98.7% !important;
  transition: all 0s linear;
  margin-bottom: 16px;
  border: 1px solid #867062;
  border-radius: 10px
}
#faq .card-body{
  padding: 30px 33px 25px 33px;
  color: #000;
}
#faq .card .btn-link:hover, .card .btn-link{
  text-decoration: none;
}
#faq .btn{
  padding: 17px 30px;
  white-space: normal;
}
#faq .card-body p{
   font-size: var(--font-18);
   font-weight: 800;
   color: #fff;
}
/*===========================
  about
=============================*/
#about p strong{
  color: var(--color-primary);
  font-size: var(--font-32);
}
#about-2 h2 {
  color: #fff;
  font-size: var(--font-32);
  font-weight: 900;
  margin-bottom: 5px;
}
#about-2 p{
  color: #fff;
  font-size: var(--font-18);
  font-weight: 300;
  margin-bottom: 0px;
}
#about-2 .box p{
  color: #fff;
  font-size: var(--font-p);
  font-weight: 700;
  margin-bottom: 0px;
}
#about-2 .box{
  position: relative;
}
#about-2 .box{
  padding-left: 20px;
  padding-bottom: 30px;
  border-left: 2px dotted transparent;
  position: relative;
}
#about-2 .box:not(:last-child){
  border-left: 2px dotted #fff;
}
#about-2 .box:before {
  content: " ";
  position: absolute;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  left: -11px;
  top: -1px;
  z-index: 0;
  background: url(../images/icone.png);
  background-size: cover;
  background-repeat: no-repeat;
}


#about-3 .box{
  position: relative;
}
#about-3 .box:before {
  content: "";
  position: absolute;
  background: var(--color-primary);
  z-index: -1;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#about-3 h3{
  color: var(--color-primary);
  font-size: var(--font-32);
  display: inline;
  text-shadow: 10px 2px 32px #fff;
  margin-bottom: 0px;
  background: #fff;
}
#about-3 .item{
  padding-top: 20px;
  padding-bottom: 20px;
}
#about-3 .foto{
  max-width: 100%;
  min-width: 526px;
  display: block;
  margin: 0 auto;
  height: 338px;
  object-position: center;
  object-fit: cover;
  opacity: 0.5;
  -webkit-box-shadow: 0px 8px 20px 0px rgb(0 0 0 / 18%);
  box-shadow: 0px 8px 20px 0px rgb(0 0 0 / 25%);
  transform: scale(0.9);
  transition: transform 1s;
}
#about-3 .center .foto{
  opacity: 1;
  transform: scale(1) !important;
}
/*===========================
  specialties
=============================*/
#specialties .gallery-item.gallery-style-5{
  z-index: -2;
}
#specialties .gallery-item.gallery-style-5:hover .item-img {
    opacity: 1;
}
.mt-specialties{
  margin-top: -3%;
}
#specialties .gallery-item.gallery-style-5 .item-title {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
#specialties .item-title{
  padding: 38px 20px;
}
#specialties h4 {
  font-size: var(--font-32);
  color: #fff;
  margin-bottom: 0px;
}
#specialties .item-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}
#specialties .mt-btn{
  margin-top: -7%;
  z-index: 5 !important;
}
#specialties .btn-ctal{
  border-radius: 30px;
  font-size: 20px;
  font-weight: 500;
  padding: 10px 30px;
}
#specialties .btn-ctal:hover{
  background: rgb(66 34 28);
  opacity: 1;
}
/*===========================
  blog
=============================*/
.home-blog h4{
  color: #1d4d56;
  font-size: var(--font-18);
}
.home-blog p{
  color: #1d4d56;
  font-size: var(--font-p);
  font-weight: 300;
}
.home-blog .gallery-item{
  background: #1d4d56;
}
.home-blog .gallery-item.gallery-style-8 .item-img {
  opacity: 1;
}
.home-blog .gallery-item.gallery-style-8:hover .item-img {
  opacity: 0.5;
}
.home-blog .item-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
}
.sidebar_form .form-control {
  padding: 7px 20px;
  background: #1d4d56;
  border-color: #1d4d56;
	color: #fff;
}
.sidebar_form .btn{
  padding: 4px 10px;
  background: #1d4d56;
}
.sidebar {
  padding: 15px;
  background: #1d4d56;
  border-radius: 4px;
}
.sidebar h3 {
  position: relative;
  font-size: 23px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}
.sidebar h3::before {
  content: "";
  position: absolute;
  background: #fff;
  bottom: -2px;
  width: 32%;
  height: 3px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.sidebar .mt-7 {
  margin-top: 7px;
  filter: brightness(100);
}
.sidebar p {
  color: #fff;
  font-size: var(--font-p);
  font-weight: 300;
  margin-bottom: 0px;
}
.sidebar .media {
  border-top-width: 0px;
  border-top-style: solid;
  padding-top: 0px;
  margin-top: 0;
  border-bottom: 3px solid #fff;
  padding-bottom: 20px;
}
.sidebar .form-control {
  border: 0px;
  margin-bottom: 8px;
  padding: 9px 13px;
  background: #fff;
	color: #000;
}
.sidebar textarea {
    height: 131px;
}
.sidebar .btn-form {
  background: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin: 0 auto;
  width: 100%;
  margin-top: 16px;
  padding: 15px;
}
/*===========================
  Contact
=============================*/
#cta h2{
  color: #fff;
  font-size: var(--font-32);
  font-weight: 900;
}
#cta p{
  color: #fff;
  font-size: var(--font-18);
  font-weight: 300;
}
#cta .btn-ctal{
  background: #49b533;
  color: #fff;
  font-weight: 700;
  display: block;
  padding: 16px 13px;
}
/*===========================
   wordpress
=============================*/
.wpusb-title {
    font-size: 14px;
    color: #14142b;
    display: inline-block;
    padding-right: 20px;
}
#artigos hr{
  border-color: #d5dbd0;
}
#artigos .size-full{
  width: 100% !important;
  margin: 0 auto;
  display: block;
}
blockquote {
  border-left: 2px solid #88865a;
  background: #f1f5ed;
  padding: 20px 20px 20px 25px;
  display: table;
  margin: 0 auto;
}
.has-drop-cap:not(:focus):first-letter {
  font-size: 4.4em;
  font-weight: 700;
  color: #88865a;
}
#artigos h1{
  font-size: 42px;
  color: #FF6D05;
  margin-bottom: 20px;
}
#artigos h2{
  font-size: 34px;
}
#artigos h3{
  font-size: 24px;
}
#artigos h4{
  font-size: 25px;
}
#artigos h5{
  font-size: 14px;
}
#artigos h6{
  font-size:10px;
}
#artigos p{
  font-size: var(--font-p);
}
img, svg {
    height: auto;
    max-width: 100%;
}
img.alignleft, img.alignright {
    float: none;
    margin: 0;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  width: auto !important;
    height: auto !important;
}

img.alignleft, img.alignrig{
  margin: 0;
}
.alignleft {
    display: inline;
}

@media screen and (min-width: 30em){
img.alignleft {
    float: left;
    margin-right: 1.5em;
}
img.alignright {
    float: right;
    margin-left: 1.5em;
}

}
dfn, cite, em, i {
    font-style: italic;
}
/*===========================
  footer
=============================*/
#footer p{
  color: #fff;
  font-size: var(--font-p);
  font-weight: 300;
}
#footer .icone-rs{
  width: 27px;
}
#footer iframe {
    width: 100%;
    height: 200px;
    border: 0 !important;
}
.whatsapp-button {
  position: fixed;
  width: 112px;
  height: 60px;
  bottom: 75px;
  z-index: 10;
  right: 0%;
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  animation: i1 1s infinite;
  animation-direction: alternate;
}

.setanav{
  width: 34px;
  height: 34px;
  background: url('../images/seta.png');
  background-size: cover;
  background-repeat: no-repeat;
}
.setanav2{
  width: 34px;
  height: 34px;
  background: url('../images/seta2.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.owl-nav .owl-prev {
  left: -44px;
  top: 55%;
}
.owl-nav .owl-next {
  right: -44px;
  top: 55%;
}
.carousel-nav-aside-center .owl-nav .owl-prev, 
.carousel-nav-aside-center .owl-nav .owl-next{
  background: transparent;
}
.owl-theme .owl-nav [class *=owl-]::after,
.owl-theme .owl-nav .owl-prev::before,
.owl-theme .owl-nav .owl-next::before {
   display:none;
}
.owl-theme .owl-dot span {
  width: 13px !important;
  height: 13px !important;
  margin: 5px 7px !important;
  background: #ffffff73;
  border-width: 0px;
  border-style: solid;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  border-radius: 20px;
  cursor: pointer;
}
.owl-dot.active>span{
  background: #fdeade !important;
  border-color: #fdeade !important;
}
.carousel-dots-center-bottom .owl-dots{
  bottom: -32px;
}


@media (max-width: 1201px) {

}

@media (max-width: 1100px) {
  .logo{
    text-align: center !important;
  }
  .modal_orcamento .modal-content {
    width: 90%;
    padding: 12px;
  }
  .modal-open .modal {
      display: block !important;
  }
  .hidden-r, br, 
  #texto-topo{
    display: none;
  }
  .linha-secao {
    align-items: center;
    margin: 0 auto;
    display: block;
  }
  .btn-ctal {
    font-size: 15px;
  }
  #menu-fixed .btn-ctal {
    font-size: 11px;
    padding: 8px;
  }
  :root {
    --font-t: 27px;
    --font-47: 34px;
    --font-36: 29px;
    --font-32: 25px;
    --font-18: 18px;
    --font-p: 16px;
  }
  #about-3 .foto, #home .foto{
    min-width: auto;
  }
  #home .foto{
    height: auto;
  }
  #slides .item {
    padding-top: 100px;
    padding-bottom: 100px;
    height: auto;
  }
  #slides .seta{
    margin-left: 0px;
  }
  #slides .seta2{
    margin-right: 0px;
  }
  #slides .item .bg{
    background: #ffffff4d;
  }
  .navbar.navbar-expand-lg .navbar-nav .sub-menu {
    padding: 0;
 }
  
}

@media (max-width: 1000px) {
 .linha-secao{
    align-items: center;
    margin: 0 auto;
    display: block;
    width: 100%;
  }

}
@media (max-width: 500px) {
 
}
@media (max-width: 330px) {

}