/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
    margin:0 auto;
    padding:0 auto;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif, arial;
}

body {
    background-color:#d9d9d9;
    overflow-x: hidden;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}
.slide-container{
  max-width: 1120px;
  width: 100%;
  padding: 10% 0;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.card{
  border-radius: 25px;
  background-color: #FFF;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #b27634;
  border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
  background-color: #b27634;
}
.overlay::after{
  border-radius: 0 25px 0 0;
  background-color: #FFF;
}
.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;
}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #b27634;
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: #90560e;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}
.button:hover{
  background: #b27634;
  
}
.swiper-navBtn{
  color: #b27634;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #b27634;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #6E93f7;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #4070F4;
}
@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }
}

/* Header começo */
header nav{
    backdrop-filter: blur(4px);
    padding: 20px 0 13px 0;
    display: flex;
    background-color: rgb(23, 23, 23);
    overflow: hidden;
    position: fixed;
    z-index: 6;
    width: 100vw;
    height: 10vh;
    align-items: center;
    transition: 300ms linear;
}
.nav-ativo{
    --second-color: rgb(50 33 12 / 58%);
    filter: blur(0.1px);
    background-color: var(--second-color);
}

a.logo:hover {
    opacity: 0.7;
    transition:0.3s;
    
}

nav a {
    color:white;
    text-decoration:none;
    transition:0.3s;
    float:center;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin: 14px;
    padding: 0 20px 0 20px;
}
.nav-list li::after{
    animation: navhover 300ms ease-in;
    transform: translateX(50%);
}
@keyframes navhover{
    from{
        opacity: 0;
    }
}
.nav-list li:hover::after{
    display: block;
    content: '';
    background-color: #fff;
    width: 50%;
    height: 2px;
    border-radius: 2px;
}

#destaque::after{
    display: block;
    content: '';
    background-color: #fff;
    width: 50%;
    height: 2px;
    border-radius: 2px;
    transition: 250ms ease-in all;
}

#destaque:hover::after{
    transform: translate(35%, -1px);
    width: 60%;
}
/* fim header e nav */

/* FOOTER */

.content5 {

    /*margin: 10px;*/
    /*padding-right: 40px;*/

   position: relative;
   

  }

.container5{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #24262b;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #b27634;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col ul{
    padding: 0;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}
