@import url("https://use.typekit.net/poe3tce.css");
@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Noto+Emoji:wght@300..700&family=Space+Grotesk:wght@300..700&family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Italianno&family=Noto+Emoji:wght@300..700&family=Space+Grotesk:wght@300..700&family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');


:root {
    --cor-header:white;
    --cor-texto-header: rgb(66, 66, 66);
    --cor-fundo: rgb(255, 239, 239);
    --cor-fundo-2:rgb(222, 223, 221);
    --cor-fundo-3:rgb(255, 216, 218); 
    --cor-fundo-4:rgb(255, 231, 231); 
    --cor-footer: rgb(201, 214, 216);
    --cor-linha-agendar:rgb(160, 180, 177);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 14px; /* Largura da barra de rolagem */
}

/* Estilizando o fundo da barra */
::-webkit-scrollbar-track {
    background: whitesmoke; /* Cor do fundo */
    border-radius: 5px;  /* Cantos arredondados */
}

/* Estilizando a parte que se move (o scroll) */
::-webkit-scrollbar-thumb {
    background: rgb(255, 158, 190); /* Cor da barra */
    border-radius: 10px; /* Cantos arredondados */
    border: solid 4px whitesmoke;
}

/* Efeito ao passar o mouse na barra */
::-webkit-scrollbar-thumb:hover {
    background: rgb(221, 123, 156); /* Cor mais escura ao passar o mouse */
}


a {
    text-decoration: none;
    font-family: "Space Grotesk", serif;
    color: var(--cor-texto-header);
    animation: fadeIn .7s ease-in-out forwards;
}
p{
    font-family: "Space Grotesk", serif;
    color: var(--cor-texto-header);
    animation: fadeIn .7s ease-in-out forwards;
  
}
h4{
    font-family: "Space Grotesk", serif;
    color: var(--cor-texto-header);
    animation: fadeIn 2s ease-in-out forwards;
    animation: fadeIn .7s ease-in-out forwards;
}
h2{
    font-family: "Space Grotesk", serif;
    color: var(--cor-texto-header);
    animation: fadeIn 2s ease-in-out forwards;
    animation: fadeIn .7s ease-in-out forwards;
    margin-top: 30px;
}
body{
    position: relative;
    z-index: -100;
}
main{
    position: relative;
    z-index: -100;
}
.dis-flex-colum{
    display: flex;
    flex-direction: column;
}
.dis-flex-row{
    display: flex;
    flex-direction: row;
}
.jus-ali-center {
    justify-content: center;
    align-items: center;
}
.icon {
    position: fixed;
    bottom: 60px;
    right: 30px;
    font-size: 40px;
    background-color: #01e675;
    color: #ffffff;
    border-radius: 50%;
    padding: 3px;
    width: 70px;
    height: 70px;
    text-align: center;
    text-decoration: none;
    z-index: -1;
    box-shadow: 2px 2px 2px #c0bddd;
  }
  .icon i {
    color: #ffffff;
  }
  
  .icon .fab {
    padding-top: 15px;
    font-size: 35px;
  }
.header {
    background: var(--cor-header) ;
    padding-inline: 16px;
    position: fixed;
    width: 100%;
    /*border-bottom: 1px solid var(--cor-texto-header);*/
}
.header-translatey{
    transform: translateY(-60px);
    transition: 0.3s ease-in-out;
}
.header-untranslatey{
    transform: translateY( 0px);
}

.main{
    padding-top: 197px;
}
.nav {
    max-width: 1280px;
    height: 135px;
    margin-inline: auto;
}
#logo {
    font-size: 60px;
    color: var(--cor-texto-header);
    font-family: "brush-script-std", sans-serif;
    text-shadow: rgba(0,0,0,.01) 0 0 1px;
}
.logo {
    padding-top: 15px;
    padding-bottom: 15px;
}
.nav-list {
    display: flex;
    gap: 70px;
    list-style: none;
    padding-bottom: 16px;
}
.nav-list a {
    font-size: 18px;
    color: var(--cor-texto-header);
    padding-block: 0px;
    position: relative;
}
.nav-list a::after{
    content: '';
    width: 0%;
    height: 1px;
    background-color: var(--cor-texto-header);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .5s ease-in-out;
}

.hamburger {
    display: none;
    border: none;
    background: none;
    border-top: 3px solid var(--cor-texto-header);
    cursor: pointer;
}
.hamburger::before,
.hamburger::after {
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background: var(--cor-texto-header);
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}
.hamburger-roll {
    display: none;
    border: none;
    background: none;
    border-top: 3px solid var(--cor-texto-header);
    cursor: pointer;
}
.hamburger-roll::before,
.hamburger-roll::after {
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background: var(--cor-texto-header);
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}






.nav-redes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 0;

}
.nav-redes-none{
    display: none;
}





.nav-list-email {
    display: flex;
}
.nav-list-email a {
    margin: 5px;
    color: var(--cor-texto-header);
}
.nav-list-email #email {
    position: relative;
    top: 7px;
    font-size: 14px;
    font-weight: bold;
}

.nav-list-redes a {
    margin: 5px;
}
.nav-redes img {
    width: 25px;
    height: 25px;
}
i{
    font-size: 25px;
    color: var(--cor-texto-header);
    animation: fadeIn 2s ease-in-out forwards;
    
}
hr {
    margin: 0;
    color: var(--cor-texto-header);
    animation: fadeIn 2s ease-in-out forwards;
}

img {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 2s ease-in-out forwards;
    z-index: 0;
    width: 100%;
    height: 100%;
  }
.img{
    width: 100%;
    height: 100%;
}
.video{
    width: 100%;
    height: 100%;
}
.video video{
    width: 100%;
    height: 100%;
}


  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
   } 

.fundo-img {
    background-image: url("../files/salao.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    background-position: center;
    justify-content: start;
    align-items: center;
    position: relative;
    z-index: 0;
}
.texto-h2 {
    padding-bottom: 0px;
    padding-top: 20px;
}
.texto-h2 h2 {
    color: white;
    font-size: 40px;
    font-family: "Italiana", serif;
    font-weight: 5px;
}
.texto-p p {
    color: white;
    text-align: center;
    font-size: 20px;
    font-family: "Space Grotesk", serif;
}
.texto-p {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 60px;
    padding-right: 60px;
}

.buttons button {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px ;
    padding: 23px;
    padding-block: 12px;
    background-color: transparent;
    color: white;
    border:1px solid white;
    font-size: large;
    font-weight: normal;
    cursor: pointer;
    font-family: "Space Grotesk", serif;
    position: relative;
    transition: .5s;
    border-radius: 30px;
}
.buttons button::before  {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transform: scaleX(0);
    transition: transform .4s;
    border-radius: 30px;
}

.fundo-2 {
    background-color:var(--cor-fundo-2);
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.fundo-2-child{ 
    background-color:var(--cor-fundo-2);
    width: 80%;
    min-height: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border:1px solid var(--cor-texto-header);
}
.img-retrato{
    height:550px;
    width: 320px;
    border:1px solid var(--cor-texto-header);
    background-color:var(--cor-fundo-2);
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    
}
.img-retrato img {
    width: 100%;
    height: 100%;
}
.texto-num {
    height:450px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.informacao-mega {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}
.texto-h3 h3 {
    color: var(--cor-texto-header);
    font-size: 30px;
    font-family: "Italiana", serif;
    font-weight: lighter;
    margin-block: 10px;
}
.num-mega {
    height: 100%;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.num-mega button {
    
    padding: 8px;
    background-color: var(--cor-texto-header);
    color: var(--cor-fundo-2);
    border: none;
    border-radius: 4px;
    font-weight: bolder;
}
#numerador-1{
    margin-top: 30px;
}
#numerador-3{
    margin-bottom: 60px;
}
.texto-mega {
    height: 100%;
    width: 80%;
    display: flex;
    flex-direction: column;
}
.texto-mega-child {
    width: 100%;
    height: calc(100% / 3);
    padding: 12px;
}
.saiba-mais a{
    text-decoration: underline;
}
.espaco {
    width: 100%;
    height: 10px;
    background-color: var(--cor-fundo);
    /*border: var(--cor-texto-header) solid 1px;
    border-inline: none;*/
}
.fundo-3 {
    background-color:var(--cor-fundo-3);
    width: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.fundo-3-child{ 
    background-color: var(--cor-fundo-3);
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border:1px solid var(--cor-texto-header);
    border-left: none;
    border-right: none;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    
}
.imagems-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.img-retrato-2 {
    width: 310px;
    height: 310px;
    border: 0.5px solid var(--cor-texto-header);
    background-color: var(--cor-fundo);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}
.img-retrato-2 img {
    width: 100%;
    height: 100%;
}
.container-img-retrato-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: underline;
    margin: 10px;
    width: 330px;
    height: 400px;
    background-color: whitesmoke;
    padding-bottom: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.container-img-retrato-2 p {
    font-weight: bold;
}
.drjunior{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 170px;
    padding: 10px;
    margin: 5px 15px 50px 15px;

    background-color: whitesmoke;
    cursor: pointer;
    position: relative;
    transition: background 2s ease-in-out;
    border-radius: 30px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    scale: 1.1;
}
.drjunior::before  {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff6a00, #ee0979, #7f00ff, #4400ff);
    border-radius: 30px;
    z-index: -1;
    transform: scaleX(0);
}
.drjunior i  {
    font-size: x-large;
    color: var(--cor-texto-header);
}
.fundo-4{
    background-color:var(--cor-fundo-4);
    width: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.fundo-4-child{
    background-color:var(--cor-fundo-4);
    width: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    
}
.img-retrato-3{
    height:560px;
    width: 330px;
    border:1px solid var(--cor-texto-header);
    background-color:var(--cor-fundo-4);
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
}
.img-retrato-3 img {
    width: 100%;
    height: 100%;
}
.info-infa {
    height:500px;
    width: 50%;
}
.info-infa-child {
    height:calc(100% - 72px);
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.text-icons{
    height: 80%;
    padding: 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--cor-texto-header);
    border-left: none;
    border-right: none;
}
.text-icon {
    margin-bottom: 20px;
}
.container-container-slider{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.container-slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.container-slider-review {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    scale: 0.9;
    margin-bottom: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: solid black 1px;
}
.container-slides{
    width: 720px;
    overflow: hidden;
}
.container-slides-review{
    width: 870px;
    height: 230px;
    overflow: hidden;
    scale: 0.9;
    
}
.slides{
    display: flex;
    gap: 20px;
    transition: .7s;
}
.translateX1{
    transform: translateX(-370px);
}
.translateX2{
    transform: translateX(-740px);
}
.translateX3{
    transform: translateX(-1110px);
}
.translateX4{
    transform: translateX(-1480px);
}



.retranslateX1{
    transform: translateX(-440px);
}
.retranslateX2{
    transform: translateX(-880px);
}
.retranslateX3{
    transform: translateX(-1320px);
}
.retranslateX4{
    transform: translateX(-1760px);
}
.slider{
    display: flex;
    align-items: center;
    justify-content: center;
}


.container-review {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1%;
    width: 400px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.pessoa-review{
    width: 80%;
    display: flex;
    flex-direction: row;
}
.pessoa-review a{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.pessoa-review p{
    position: relative;
    top: 10px;
}
.pessoa-review img{
    width: 40px;
    height: 40px;
}
.nota-review{
    width: 80%;
    margin: 10px;
    margin-left: 0px;
    
}
.nota-review i{
    font-size: medium;
    color: rgb(255, 238, 0);
}
.nota-salao{
    font-size: xx-large;
    margin-top: 20px;
    text-align: center;
}
.nota-salao  p{
    font-size: xx-large;
}
.nota-salao i {
    font-size: x-large;
    color: rgb(255, 238, 0);
}
.text-review{
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
}

.slider-review {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity .2s ;
}
.review-card{
    display: flex;
    flex-direction: column;
    padding: 15px;
    width: 420px;
    align-content: center;
    height: 220px;
    border-radius: 7px;
    background-color: rgb(237, 237, 237);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.fundo-4-2{
    background-color:var(--cor-fundo-4);
    width: 100%;
    min-height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.on {
    opacity: 1;
}
#prev-button,
#next-button {
    width: 50px;
    height: 50px;
    border:none;
    background-color:rgb(237, 237, 237);
    cursor: pointer;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    left: 40px;
    border: solid var(--cor-texto-header) 1px;
}
#prev-button{
    position: relative;
    left: 17px;
    z-index: 2;
}
#next-button{
    position: relative;
    left: -20px;
}

#prev-button i, #next-button i {
   font-size: 40px;
   position: relative;
   top: 2px;
}
.button-google {
    border-radius: 40px;
    background-color: rgb(25, 123, 255);
    color: white;
    font-weight: bold;
    padding: 15px;
    padding-inline: 60px;
    border:none;
    cursor: pointer;
}
.sla{
    width: 256px;
}
.fundo-local {
    background-color:  var(--cor-fundo-3);
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-block: 40px;
}
.container-container-local{
    justify-content: center;
    align-items: center;
    display: flex;
    height: 400px;
    width: 70%;
    background-color: var(--cor-fundo-4);
    padding: 10px;
}
.container-local{
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: var(--cor-fundo-4);
    border: 1px solid white;
    padding: 10px;
}
.container-container-pop{
    justify-content: center;
    align-items: center;
    display: flex;
    height: 520px;
    width: 80%;
    background-color: var(--cor-fundo-3);
    padding: 10px;
    margin: 30px;
}
.container-pop{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    display: flex;
    background-color: var(--cor-fundo-3);
    border: 1px solid white;
    padding: 10px;
}
.container-local iframe {
    width: 100%;
    height: 100%;
}
.container-como-chegar{
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.linha-agendar{
    background-color:var(--cor-linha-agendar);
    width: 100%;
    height: 25px;
}
footer{
    background-color: var(--cor-footer);
    width: 100%;
    padding: 40px;
    padding-bottom: 5px;
    padding-top: 30px;
    justify-content: center;
    align-items: center;
}
.footer-infos-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-infos{
    display: flex;
    flex-direction: row;
    gap: 30px;
}
.footer-infos a{
    font-size: small;
    text-decoration: underline;
}
.footer-infos p{
    font-size: small;
}
.all-social-medias{
    display: flex;
    background-color: var(--cor-footer);
    width: 10%;
    margin: auto;
    width: 154px;
    margin-top: 10px ;
    margin-bottom: 5px;
}
.all-social-medias i{
    letter-spacing: 3px;
    font-size: 27px;
}
.logo-footer {
    margin-bottom: 40px;
    color: var(--cor-texto-header);
    padding-block: 20px;
    margin-left: auto;
}
.logo-footer h1 {
    font-size: 40px;
    font-weight: lighter;
    font-family: "brush-script-std", sans-serif;
}

.container-all-accordions{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.container-accordion{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    
}
.accordion {
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    margin: 7px;
    cursor: pointer;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    max-width: 95%;
    width: 100%;
    position: relative;
}

.accordion-header {
    width: 100%;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    cursor: pointer;
}
.titulo-accordion{
    margin: 10px;
    font-size: larger;
}
.accordion-header span {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.accordion-body {
    color: #444;
    font-size: 14px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .3s;
}

.accordion-body.active {
    height: 100%;
    opacity: 1;
    padding: 5px 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: var(--cor-texto-header) solid 1px;
    margin: 10px;
}
.accordion-body.active img {
    width: 100%;
    height: 100%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
.text-accordion {
    margin: 30px;
    text-align: center;
}
.text-accordion p{
    text-align: left;
}
.text-accordion span{
    font-size: 30px;
    color: palevioletred;
}
.arrow-acc {
    transition: transform .2s linear;
}
.rotate-acc {
    transform: rotate(180deg);
}
.buttons #buttons-accordion {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 10px ;
    padding: 23px;
    padding-block: 12px;
    background-color: transparent;
    color: var(--cor-texto-header);
    border:1px solid var(--cor-texto-header);
    font-size: large;
    font-weight: normal;
    cursor: pointer;
    font-family: "Space Grotesk", serif;
    position: relative;
    transition: .5s;
    border-radius: 30px;
    scale: 0.8;
}
.buttons #buttons-accordion::before  {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:var(--cor-fundo-4);
    z-index: -1;
    transform: scaleX(0);
    transition: transform .4s;
    border-radius: 30px;
}
.img-accordion{
    width: 650px;
    max-width:290px;
    min-width: 290px;
    margin: 30px ;
    border: solid 1px var(--cor-texto-header);
    padding: 10px;
}
.titulo-arccodion{
    font-weight: 700;
    color: var(--cor-texto-header);
    padding-left: 15px;
}

@media (min-width: 764px){ /*hovers*/
    .icon:hover i{
        color: #029e3b;
      }
      #linkedin-icon:hover{
        color:#0072ff;
        transition: .8s;
       }
       #insta-icon:hover{
           background: linear-gradient(90deg, #ff6a00, #ee0979, #7f00ff, #0072ff);
           background-clip: text;
           -webkit-text-fill-color: transparent;
           transition: .8s;
       }
       #e-mail:hover{
       color: rgb(124, 124, 124);
        transition: .8s;
       }
       #youtube:hover{
       color: red;
        transition: .8s;
       }
       #zapzap:hover{
           color:green;
        transition: .8s;
       }
       #facebook:hover{
           color: #0072ff;
        transition: .8s;
       }
       .icon:hover {
        background-color: #fff;
        color: #029e3b;
        font-weight: 900;
        box-shadow: 2px 2px 20px #5fe690;
      }
      .nav-list a:hover::after {
        width: 100%;
      }
        .buttons button:hover {
            color: black;
        }
        .buttons button:hover::before {
            transform: scaleX(1); 
        }
        .buttons #buttons-accordion:hover::before {
            transform: scaleX(1); 
        }
        .drjunior:hover::before {
            transform: scaleX(1); 
        }
        .drjunior:hover i{
            color: white;
            font-weight: bolder;
            transition: 0.6s;
        }
        .drjunior:hover p{
            color: white;
            font-weight: bolder;
            transition: 0.6s;
        }
        .button-google:hover{
            background-color: rgb(82, 155, 250);
        }
        img:hover {
            scale: 1.2;
            transition: 1s ease-out;
            border-radius: 5px;
        }
        img:not(:hover){
            scale: 1;
            transition: .5s ease-out;

        }
        .img:not(:hover){
            overflow: hidden;
            width: 100%;
            height: 100%;
        }
        .img:hover{
            overflow: hidden;
            width: 100%;
            height: 100%;
        }


        .rotate-hor:hover{
            transform: rotate(2deg);
            transition: .5s ease-in-out;
        }
        .rotate-anti-hor:hover{
            transform: rotate(-2deg);
            transition: .5s ease-in-out;
        }
        /*.rotate-hor{
            animation: rotate-hor 25s infinite;
            transition: 1s ease-in-out;
        }
        .rotate-anti-hor{
            animation: rotate-anti-hor 40s infinite;
            transition: 1s ease-in-out;
        }
        @keyframes rotate-anti-hor {
            0%, 100% { transform: rotate(0deg); }
            60% { transform: rotate(-2deg); }
        }
        @keyframes rotate-hor {
            0%, 100% { transform: rotate(0deg); }
            60% { transform: rotate(2deg); }
        }
        */
}


    @media (max-width: 760px){

        .main{
            padding-top: 162px;
        }
        .footer-infos-container{
            flex-direction: column;
        }
        #logo {
            font-size: 40px;
        }
        .nav {
            height: 100px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }
        .hamburger {
            display: block;
            position: absolute;
            left: 85%;
            z-index: 100;
        }
        .hamburger-roll {
            display: block;
            position: absolute;
            left: 85%;
            z-index: 100;
        }
        .nav-list {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 110vh;
            background: var(--cor-header);
            clip-path: circle(100px at 90% -15%);
            transition: 1s ease-out;
            flex-direction: column;
            justify-content: space-around;
            align-items: center;
            gap: 0;
            padding-bottom: 70px;
            padding-top: 60px;
            pointer-events: none;
            overflow: hidden;
            z-index: 99;
        }
        .nav-list a {
            font-size: 24px;
            opacity: 0;
        }
        .nav-list li:nth-child(1) a {
            transition: o.5s 0.2s;
        }
        .nav-list li:nth-child(2) a {
            transition: o.5s 0.4s;
        }
        .nav-list li:nth-child(3) a {
            transition: o.5s 0.6s;
        }
        .nav-list li:nth-child(4) a {
            transition: o.5s 0.8s;
        }

        .nav.active .nav-list{
            clip-path: circle(1500px at 90% -15%);
            pointer-events: all;
        }
        .nav.active .nav-list a {
            opacity: 1;
        }



        .container-container-pop{
            height: 370px;
        }

        .nav.active .hamburger {
            position: fixed;
            top: 100px;
            right: 16px;
            border-top-color: transparent;
        }
        .nav.active .hamburger-roll {
            position: fixed;
            top: 40px;
            right: 16px;
            border-top-color: transparent;
        }






        .nav.active .hamburger::before {
            transform: rotate(135deg);
        }
        .nav.active .hamburger::after {
            transform: rotate(-135deg);
            top: -7px;
        }
        .nav.active .hamburger-roll::before {
            transform: rotate(135deg);
        }
        .nav.active .hamburger-roll::after {
            transform: rotate(-135deg);
            top: -7px;
        }
        .fundo-img {
            height: 320px;
        }
        .texto-p p {
            font-size: 15px;
        }
        .texto-p {
            margin: 30px;
            padding: 0;
        }
        .buttons button {
            margin-left: 15px;
            margin-right: 15px;
            padding: 10px;
            padding-inline: 5px;
        }
        .fundo-2 {
            background-color:var(--cor-fundo-2);
            width: 100%;
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            justify-content: center;
        }
        .texto-h3 h3 {
            text-align: center;
            font-size: x-large;
        }
        .fundo-2-child{ 
            background-color:var(--cor-fundo-2);
            width: 100%;
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            justify-content: center;
            border: none;
        }
        .fundo-4-child{
            background-color:var(--cor-fundo-4);
            width: 100%;
            min-height: 550px;
            display: flex;
            flex-direction: column-reverse;
            align-items: center;
            justify-content: center;
        }
        .info-infa {
            width: 100%;
        }
        .text-icon p {
            font-size: small;
        }
        .text-icons{
            height: 350px;
        }
        .text-icon{
            height: 100%;
        }
        .info-infa-child{
            height: 50%;
        }
        .info-infa{
            height: 50%;
        }
        .container-local{
            flex-direction: column;
        }
      
        .container-slider-review{
            
            scale: 0.8;
        }
        .logo-footer {
            margin: auto;
        }
        .nav-list-email #email {
            font-size: 10px;
            font-weight: bold;
        }
        .footer-infos{
            flex-direction: column;
            gap: 30px;
        }
        .accordion-body.active {
            height: 100%;
            opacity: 1;
            padding: 5px 0px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .accordion-body.active {
            border: none;
        }
        .container-slides{
            width: 350px;
            overflow: hidden;
        }
        .container-slides-review{
            width: 430px;
            overflow: hidden;
        }
        .img-retrato-3{
            scale: 0.9;
        }
    }
    @media (max-width: 386px){
        .container-container-slider{
            scale: 0.9;
        }
        .buttons button {
            padding: 10px;
            padding-block: 6px;
            font-size: 15px;
        }
        .nav-list-email #email {
            font-size: 8px;
        }
    }
    @media (max-width: 800px){
        .container-slider {
            scale: 0.7;
        }
        .container-slider-review{
            scale: 0.65;
        }
    }
    @media (max-width: 1200px){
        .imagems-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            scale: 0.9;
        }

        .container-slider {
            scale: 0.7;
        }
    }