@charset "UTF-8";

/* general config */
*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    list-style: none;
    overflow-x: hidden;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
  }
  
body{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: white url("../images/background.png") center center;
    background-size: cover;

}
/* navbar config */
#navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FE84B1;
    color: #000000;
    height: 55px;
    overflow-y: hidden;
}

#logo{
    width: 150px;
    height: auto !important;
}

#navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
}

#navbar-links li{
    font-family: "Inter", sans-serif;
}

#navbar-links li a{
    text-decoration: none;
    color: #000000;
    padding: 1rem;
    display: block;
    transition: 0.3s;
}

#navbar-links li a:hover{
    color: white;
}
#hamburguer-button{
    position: absolute;
    top: 1.3rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

#hamburguer-button .bar{
    height: 3px;
    width: 100%;
    background-color: #000000;
    border-radius: 10px;
}

/* whois config */
#who-is{
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    overflow-y: hidden;
}

.title{
    font-size: 36px;
    font-weight: 700;
}

#who-is-text{
    font-size: 1em;
    font-weight: 600;
    margin: 20px;
}

#dentist-img{
    margin-bottom: -27px;
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* botão cta config */
#main-square{
    background-color: #FE84B1;
}

#take-care-content{
    padding: 10px 10px 0px 10px;
}

#take-care-text{
    font-size: 1.5em;
    color: #FFFFFF;
}

#visit-btn{
    display: block;
    width: 50%;
    font-family: "Poppins", sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    background-color: #2bd1c6;
    border-radius: 20px;
    margin: 15px auto 15px auto;
    cursor: pointer;
    padding: 15px;
    transition: 0.5s;
    color: black;
    text-decoration: none;
}

#visit-btn:hover{
    background-color: #2fe1d5;
}

/* our work config */
#our-work{
    margin: 20px;
}

.differencial-card{
    background-color: #FE84B1;
    color: white;
    border-radius: 20px;
    width: 75vw;
    margin: auto;
    margin-top: 20px;
    padding: 15px;

    transition: width 0.3s, height 0.3s;
    transition-timing-function: ease;
}

.differencial-card > img{
    display: block;
    margin: auto;
    width: 25%;
    background-color: #2bd1c6;
    border-radius: 20px;
    padding: 10px;
}

.differencial-card > h1{
    margin: 10px;
    font-family: "Poppins", sans-serif;
}

.differencial-card > p{
    font-family: "Inter", sans-serif;
    margin-bottom: 5px;
}

/* faq config */
#accordion{
    margin: 20px 0px 0px 0px 0px;
}

#accordion .contentBx{
    position: relative;
    margin: 10px 20px auto;
}

#accordion .contentBx .accordion-title{
    position: relative;
    padding: 10px;
    background-color: #29c6bb;
    color: black;
    cursor: pointer;
    border-radius: 20px 20px 0px 0px;
}

#accordion .contentBx .accordion-title::before{
    content: '+';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 1.5em  ;
}

#accordion .contentBx.active .accordion-title::before{
    content: '-';
}

#accordion .contentBx .content{
    font-family: "Inter", sans-serif;
    position: relative;
    background-color: #2fe1d5;
    height: 0;
    transition: 0.5s;
    border-radius: 0px 0px 20px 20px;
}

#accordion .contentBx.active .content{
    height: 200px;
    padding: 15px;
}

/* onde estamos config */
#where-we-are{
    margin: 0px 20px 30px 20px;
}
#where-we-are-head{
    margin: 30px 0px 30px 0px;
}
#where-we-are-text{
    font-family: 'Inter', sans-serif;
}

.blue{
    color: #24A89F;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  .prev{
    left: 0;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

/* contact */
#location{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 20px 20px 20px;
    color: #FFFFFF!important;
}

#location div{
    margin-bottom: 20px;
}

#map{
    width: 100%;
    height: 300px;
    border: 0;
}

#social{
    color: #FFFFFF;
    margin-bottom: 20px;
}

#social-list{
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
    overflow-y: hidden;
}

#social-list li a img{
    width: 65px;
    border-radius: 20px;
    background-color: #FE84B1;
    padding: 15px;
}

#social-list li{
    transition-duration: 0.5s;
}

#social-list li:hover {
    transform: translateY(5px);
}

#social > h1{
    margin-bottom: 20px;
}

#social > p,a{
    color: white;
    text-decoration: none;
    transition: 0.5s;
}

#social > p, a:hover{
    color: #FE84B1;
}

#contact{
    background-color: #160D0D;
    padding: 10px;
    color: #FFFFFF;
}

/* footer config */
footer{
    color: white;
    font-family: 'Roboto Mono', monospace;
    background-color: black;
    padding: 10px;
}