/*---------- BASE ----------*/
*{
margin:0;
padding:0;
box-sizing:border-box;
}
html, body{
width:100%;
display:flex;
flex-direction:column;
align-items: center;
font-family: Arial, Helvetica, sans-serif;

}
.container-principal{
    width: 95%;
    max-width: 1280px;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
body {
  font-size: clamp(16px, 1.5vw, 20px);
  
}
h1 {
    font-size: clamp(28px, 4vw, 40px);
    text-align: center;
    padding: 10px 0;
}
h3 {
  font-size: clamp(20px, 2.5vw, 26px);
}
header{
    width:100vw;
    background-color: black;
    color: white;
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}
nav{
    width: 95%;
    max-width: 1080px;
    padding: 0 2%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header img{
    width: 150px;
    height: 65px;
    margin-right: 10px;
}
main{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
footer{
    width: 100vw;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    padding: 10px 18px;
}

/*---------- LAYOUT ----------*/

/*Primeira div-init*/
.div-init{
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    outline: 1px dashed black;
    background-image: url('img/1.jpeg');
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    position: relative;
}
.div-init::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); /* preto com 50% de transparência */
  z-index: 0;
  border-radius: inherit;
}
.init-content {
    position: relative;
    z-index: 1;
    width:95%;
    padding-bottom: 20px;
}
.init-text{
    padding-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.init-text h3{
    width: 95%;
    font-size: clamp(20px, 2.5vw, 26px);
}
.init-text a{
    display: none;
}
.init-image{
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.init-image img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/*Segunda div-profissional*/
.div-profissional{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    outline: 1px dashed black;
    border-radius: 20px;
    padding: 20px 5px;
}
.profissional-box{
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.prof-heads{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
}
.prof-heads h2{
    margin: 10px 0;
}
.prof-heads img{
    width: 100px;
    margin-top: 15px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.estrelas {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: fit-content;
}
.estrelas i {
  color: gold;
  font-size: 26px; 
}
.fa-star {
  padding: 5px !important;
  margin: 5px 0 ;
}


/*Terceira div-services*/
.div-services{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}
.service-list{
    width: 80%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
}
.service-list ul{
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
}


/*---------- MODULE ----------*/
/*Nav*/
.button-menu{
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;;
    background-color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-size: 16px;
}
.button-bar{
    width: 18px;
    border: 1px solid black;
    margin: 2px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}
.menu-list{
    width: min-content;
    padding: 0px 20px;
    position: absolute;
    top: 60px;
    right: 30px;
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: black;
    list-style: none;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    max-width: 90vw;
    
}
.menu-list li{
    font-size: 22px;
    width: 100%;
    text-align: center;
    padding: 25px;
    color: white;
    cursor: pointer;
    border-bottom: 1px solid white;
    text-decoration: none;
    transition: background 0.2s;
}
.menu-list li a{
    color: white;
    text-decoration: none;
}
.menu-list li:hover{
    background-color: #333;
}
.border-none{
    border: none!important;
}

/*Carousel*/
.carousel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.slides-box{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 16px;
    z-index: 1;
}
.slide{
    width: 100%;
    aspect-ratio: 1 / 1; /* largura : altura */
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}
.slide-text{
    width: 80%;
    padding: 8px;
    margin: 10px 0;
    background-color: rgba(0,0,0,0.5);
    color: white;
    text-align: center;
    font-size: 18px;
    border-radius: 10px;
}
.carousel-buttons{
    width: 100%;
    position: absolute;
    padding: 10px;
    background-color: transparent;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    top: 45%;
}
.fas{
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.fa-chevron-left, .fa-chevron-right{
    background-color: rgba(0,0,0,0.5);
    border-radius: 3px;
}

/*contact-button*/
.contact-button {
  display: inline-block;
  padding: 10px 20px;
  background: green;
  color: white;
  border-radius: 5px;
  text-decoration: none;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* sombra suave */
  transition: all 0.3s ease;
}
.contact-button:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); /* sombra aumenta ao passar o mouse */
  transform: translateY(-2px); /* pequeno efeito de elevação */
}


/*Botão flutuante whatsapp*/
.whatsapp-button {
    position: fixed;
    bottom: 55px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Cor do WhatsApp */
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Certifique-se de que o botão esteja acima de outros elementos */
}
/*---------- STATE ----------*/

/*---------- THEME ----------*/

@media (min-width: 768px) {
    .container-principal{
        width: 90%;
    }
    nav{
        padding: 0 50px;
    }
    .div-init{
        flex-direction: row;
        justify-content: space-evenly;
        padding: 10px 0;
        background-size: cover;
        background-position: center;
    }
    .init-content{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        width: 90%;
        padding: 0;
    }
    .init-text{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
    }
    .init-text h1{
        padding-top: 0;
    }
    .init-text a{
        display: flex!important ;
        margin-top: 10px;
    }
    .init-image{
        padding: 0 10px;
    }
    .init-content a{
        display: none;
    }
    .div-profissional{
        border-radius: 20px;
        padding: 20px 0;
    }
    .prof-heads{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .prof-heads p{
        font-size: 18px;
        width: 80%;
        padding: 10px 0;
    }
    .carousel {
        width:85%;
    }
    .div-services a{
        font-size: 20px;
        margin: 10px 0;
    }
    
}
@media (min-width: 1024px) {
    .container-principal{
        width: 95%;
        max-width: 1150px;
    }
    /*header*/
    nav{
        padding: 10px 15px;
        width: 90%;
        justify-content: space-between;
    }
    .button-menu{
        display: none;
    }
    .menu-list{
        display: flex;
        flex-direction: row;
        position: static;
        width: 100%;
        padding: 0;
        border: none;
        box-shadow: none;
        width: 70%;
    }
    .menu-list li{
        display: flex;
        justify-content: space-around;
        padding: 5px 8px;
        width: 200px;
        border: none;
        color: white;
        font-size: 18px;
    }
    .menu-list li a{
        min-width:100%;
    }
    .menu-list li:hover{
        background-color: transparent;
        outline: 1px dashed rgb(146, 144, 144);
        border-radius: 25% 8%;
    }
    .div-init{
        flex-direction: row;
        justify-content: space-evenly;
        gap: 10px;
    }
    .init-content{
        width: 95%
    }
    .init-text h1, .init-text h3{
        padding-bottom: 20px;
    }
    .init-text h3{
        margin-bottom: 20px;
    }
    .init-image{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .init-image img{
        min-width: 400px;
        width: 100%;
    }
    .profissional-box{
        display: flex;
        flex-direction: row;
        padding: 0 10px;
        gap: 20px;
    }
    .prof-heads{
        order:2;
        width: 60%;
    }
    .prof-heads h2{
        margin: 10px 0;;
    }
    .prof-heads p{
        
        font-size: 20px;
    }
    .carousel{
        order:1;
        width: 70%;
    }
    .div-services{
        width: 80%;
        margin: 20px 0;
        font-size: 20px;
    }
    .div-services a{
        font-size: 26px;
        margin: 10px 0;
    }
}
@media (min-width:1440px){
    .init-content{
        max-width: 1150px;
    }
}
