@charset "UTF-8";
/* Estilos do header */
header {
  width: 100%;
  position: fixed;
  transition: 0.3s ease;
  height: 105px;
  top: 0;
  z-index: 1000;
}

header.scroll {
  transition: 0.4s ease;
  background-color: rgba(20, 143, 139, 0.9);
  border-radius: 0px 0px 40px 40px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

/* Estilos do header-links */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  padding-left: 100px;
  padding-right: 100px;
}

.header-links {
  display: flex;
  gap: 20px;
  font-family: "goldbold", sans-serif;
  font-size: 17px;
  font-weight: bold;
}

.header-links a,
.header.scroll .header-links a {
  padding: 10px;
  border: solid 2px transparent;
  border-radius: 22px;
}

.header-links a:hover,
.header.scroll .header-links a:hover {
  color: #2DD4C8;
  border: solid 2px #2DD4C8;
  transition: all 0.1s ease;
}

.header-logo img {
  width: 180px;
}

/* Estilos do banner principal */
.background-img {
  width: 100%;
  height: calc(100vh - 1px);
  background-color: #F5FFFA;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero {
  color: #F5FFFA;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 130px;
}

.hero h1 {
  line-height: 130%;
  max-width: 600px;
  font-family: "goldbold";
  font-size: 35px;
  margin-bottom: 10px;
  margin-right: 40px;
}

.hero p {
  line-height: 150%;
  max-width: 500px;
  font-size: 22px;
  margin-bottom: 15px;
}

.hero span {
  position: relative;
  display: inline-block;
  line-height: inherit;
  max-width: inherit;
  font-family: inherit;
  font-size: inherit;
  margin-bottom: inherit;
  padding-right: 15px;
}

.hero span:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: -1;
  background-color: #2DD4C8;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* Estilos das redes sociais */
.socials {
  display: flex;
  flex-direction: row;
  margin-top: 10px;
}

.socials img {
  width: 33px;
  margin-right: 20px;
  transition: transform 0.2s ease;
}

.socials img:hover {
  transform: scale(1.1);
}

.hero .agendar {
  background-color: #2DD4C8;
  color: #fff;
  font-family: "goldbold";
  font-size: 17px;
  padding: 7px 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid #2DD4C8;
}

.hero .agendar:hover {
  background-color: transparent;
  color: #2DD4C8;
}

/* Responsividade para telas grandes (2000px +) */
@media screen and (min-width: 2000px) {
  header {
    height: 145px;
  }
  .header-links {
    font-size: 24px;
  }
  .header-logo img {
    width: 100%;
  }
  .hero {
    padding-left: 200px;
  }
  .hero h1 {
    line-height: 150%;
    font-size: 45px;
  }
  .hero p {
    max-width: 550px;
    font-size: 30px;
  }
  .socials {
    margin-top: 15px;
  }
  .socials img {
    width: 45px;
    height: 45px;
    margin-right: 25px;
  }
}
/* Responsividade para telas médias (1500px -) */
@media screen and (max-width: 1500px) {
  .background-img {
    -o-object-position: left;
       object-position: left;
  }
}
/* Responsividade para telas pequenas (1300px -) */
@media screen and (max-width: 1300px) {
  header {
    height: 95px;
  }
  .header-links {
    font-size: 15px;
  }
  .header-logo img {
    width: 150px;
  }
  .background-img {
    -o-object-position: left;
       object-position: left;
  }
  .hero {
    padding-left: 100px;
  }
  .hero h1 {
    line-height: 120%;
    font-size: 32px;
  }
  .hero p {
    max-width: 350px;
    font-size: 20px;
  }
  .socials {
    margin-top: 10px;
  }
  .socials img {
    width: 31px;
    margin-right: 20px;
  }
}
/* Responsividade para telas pequenas (1000px -) */
@media screen and (max-width: 1000px) {
  header {
    height: 93px;
  }
  .header-content {
    padding-left: 70px;
    padding-right: 70px;
  }
  .header-links {
    font-size: 14px;
    gap: 15px;
  }
  .header-logo img {
    width: 150px;
  }
  .background-img {
    -o-object-position: 30% center;
       object-position: 30% center;
  }
  .hero {
    padding-left: 50px;
  }
  .hero h1 {
    line-height: 130%;
    font-size: 30px;
  }
  .hero p {
    max-width: 350px;
    font-size: 19px;
  }
  .socials {
    margin-top: 10px;
  }
  .socials img {
    width: 30px;
    margin-right: 20px;
  }
}
/* Estilos do menu de hambúrguer */
.menu-toggle {
  display: none;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
}

.close-button, .menu-images {
  display: none;
}

/* Responsividade para telas pequenas (850px -) */
@media screen and (max-width: 850px) {
  .menu-toggle {
    display: block;
  }
  .header-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 35%;
    background-color: #128F8B;
    border: solid 1px #F5FFFA;
    z-index: 1000;
    padding-top: 70px;
  }
  .header-links.show-menu {
    display: flex;
  }
  .header-links a,
  .header.scroll .header-links a {
    padding: 20px;
    border: solid 2px transparent;
    border-radius: 0px;
    transition: all 0.1s ease;
    font-size: 18px;
    border-bottom: solid 1px #F5FFFA;
    margin-left: 35px;
    margin-right: 35px;
    margin-top: 20px;
    text-align: center;
  }
  .header-links a:hover,
  .header.scroll .header-links a:hover {
    border-radius: 20px;
  }
  .header-logo {
    order: -1;
  }
  header.scroll {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .close-button {
    display: block;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 35px;
    right: 35px;
  }
  .menu-images {
    display: block;
    margin-top: 45%;
  }
  .menu-images a {
    border: none;
    padding: 0;
  }
  .menu-images a:hover {
    border: none;
  }
  .logoMobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .socialsMobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .socialsMobile a {
    margin: 0px;
    padding: 15px;
  }
  .socialsMobile img {
    margin-top: 10px;
    width: 30px;
  }
  .hero h1 {
    line-height: 130%;
    font-size: 29px;
    max-width: 500px;
  }
  .hero p {
    max-width: 300px;
    font-size: 18px;
  }
}
/* Responsividade para telas pequenas (560px -) */
@media screen and (max-width: 560px) {
  .header-links {
    width: 40%;
    padding-top: 60px;
  }
  .header-links a,
  .header.scroll .header-links a {
    padding: 20px;
    border: solid 2px transparent;
    border-radius: 0px;
    transition: all 0.1s ease;
    font-size: 16px;
    border-bottom: solid 1px #F5FFFA;
    margin-left: 35px;
    margin-right: 35px;
    margin-top: 15px;
    text-align: center;
  }
  .close-button {
    font-size: 26px;
  }
  .menu-images {
    margin-top: 40%;
  }
  .menu-images a {
    border: none;
    padding: 0;
  }
  .menu-images a:hover {
    border: none;
  }
  .logoMobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .socialsMobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .socialsMobile a {
    margin: 0px;
    padding: 15px;
  }
  .socialsMobile img {
    margin-top: 10px;
    width: 25px;
  }
  .hero {
    padding-left: 40px;
  }
  .hero h1 {
    line-height: 130%;
    font-size: 25px;
    max-width: 500px;
  }
  .hero p {
    max-width: 300px;
    font-size: 17px;
  }
  .background-img {
    -o-object-position: 40% center;
       object-position: 40% center;
  }
  .header-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/* Responsividade para telas pequenas (560px -) */
@media screen and (max-width: 560px) {
  .header-links {
    width: 45%;
  }
}
/* Responsividade para telas pequenas (430px -) */
@media screen and (max-width: 430px) {
  .header-links {
    width: 53%;
    padding-top: 60px;
  }
  .header-links a,
  .header.scroll .header-links a {
    padding: 20px;
    font-size: 14px;
  }
  .close-button {
    font-size: 24px;
  }
  .menu-images {
    margin-top: 20%;
  }
  .menu-images a {
    border: none;
    padding: 0;
  }
  .menu-images a:hover {
    border: none;
  }
  .logoMobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .socialsMobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .socialsMobile a {
    margin: 0px;
    padding: 13px;
  }
  .socialsMobile img {
    margin-top: 10px;
    width: 25px;
  }
  header {
    height: 93px;
  }
  .header-logo img {
    width: 150px;
  }
  .hero {
    padding-left: 20px;
  }
  .hero h1 {
    line-height: 130%;
    font-size: 22px;
    max-width: 500px;
  }
  .hero p {
    max-width: 250px;
    font-size: 15px;
  }
  .socials {
    margin-top: 8px;
  }
  .socials img {
    width: 27px;
    margin-right: 20px;
  }
  .agendar {
    font-size: 14px;
    padding: 5px 13px;
  }
}
/* Responsividade para telas pequenas (375px -) */
@media screen and (max-width: 375px) {
  .header-links {
    width: 56%;
    padding-top: 60px;
  }
  .header-links a,
  .header.scroll .header-links a {
    padding: 15px;
    font-size: 14px;
  }
  .close-button {
    font-size: 24px;
  }
  .menu-images {
    margin-top: 20%;
  }
  .menu-images a {
    border: none;
    padding: 0;
  }
  .menu-images a:hover {
    border: none;
  }
  .logoMobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
  }
  .socialsMobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .socialsMobile a {
    margin: 0px;
    padding: 13px;
  }
  .socialsMobile img {
    margin-top: 10px;
    width: 24px;
  }
  header {
    height: 93px;
  }
  .header-logo img {
    width: 145px;
  }
  .hero {
    min-height: 100vh;
    padding-left: 20px;
  }
  .header-content {
    padding-left: 30px;
    padding-right: 40px;
  }
  .hero h1 {
    line-height: 130%;
    font-size: 22px;
    max-width: 500px;
  }
  .hero p {
    max-width: 250px;
    font-size: 15px;
  }
  .socials {
    margin-top: 8px;
  }
  .socials img {
    width: 27px;
    margin-right: 20px;
  }
  .background-img {
    -o-object-position: 45% center;
       object-position: 45% center;
  }
}
.container {
  max-width: 100%;
  margin: 0 auto;
}

.btn-wpp {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
}
.btn-wpp img {
  max-width: 74px;
  transition: transform 0.4s;
}
.btn-wpp img:hover {
  transform: scale(1.1);
}

.btn-wpp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 12px;
  left: -140px;
  padding: 6px;
  border-radius: 10px;
  text-align: center;
  background-color: #128F8B;
  color: #F5FFFA;
  opacity: 0;
  transition: opacity 0.5s;
}

.btn-wpp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #128F8B;
  color: #fff;
  font-size: 15px;
  border: solid 1px #F5FFFA;
  padding: 10px 20px;
  border-radius: 9px;
  z-index: 9999;
  display: none;
}

@media screen and (min-width: 2000px) {
  .btn-wpp img {
    max-width: 85px;
  }
  .btn-wpp .tooltip-text {
    width: 140px;
    top: 12px;
    left: -160px;
    padding: 9px;
    border-radius: 10px;
    font-size: 20px;
  }
  .popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #128F8B;
    color: #fff;
    font-size: 17px;
    border: solid 1px #F5FFFA;
    padding: 10px 20px;
    border-radius: 9px;
    z-index: 9999;
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .btn-wpp img {
    max-width: 64px;
  }
  .popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #128F8B;
    color: #fff;
    font-size: 13px;
    border: solid 1px #F5FFFA;
    padding: 10px 20px;
    border-radius: 9px;
    z-index: 9999;
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #128F8B;
    color: #fff;
    font-size: 11px;
    border: solid 1px #F5FFFA;
    padding: 10px 20px;
    border-radius: 9px;
    z-index: 9999;
    display: none;
  }
}
.about-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #F5FFFA;
  align-items: center;
}

.box-border {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #27BCB1;
  width: 430px;
  height: 380px;
  border-radius: 30px;
}
.box-border h1 {
  font-family: "goldbold";
  font-size: 24px;
  max-width: 340px;
  text-align: center;
  margin-top: 30px;
}
.box-border p {
  text-align: center;
  margin-top: 20px;
  max-width: 350px;
  font-size: 20px;
}
.box-border img {
  width: 60px;
}

.box-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2DD4C8;
  width: 500px;
  height: 450px;
  border-radius: 30px;
}
.box-center h1 {
  font-family: "goldbold";
  font-size: 24px;
  max-width: 340px;
  text-align: center;
  margin-top: 30px;
}
.box-center p {
  text-align: center;
  margin-top: 20px;
  max-width: 350px;
  font-size: 20px;
}
.box-center img {
  width: 80px;
}

@media screen and (min-width: 2000px) {
  .box-border {
    width: 530px;
    height: 480px;
    border-radius: 30px;
  }
  .box-border h1 {
    font-size: 30px;
    max-width: 400px;
    margin-top: 35px;
  }
  .box-border p {
    margin-top: 25px;
    max-width: 400px;
    font-size: 25px;
  }
  .box-border img {
    width: 70px;
  }
  .box-center {
    width: 600px;
    height: 550px;
    border-radius: 30px;
  }
  .box-center h1 {
    font-size: 30px;
    max-width: 400px;
    margin-top: 35px;
  }
  .box-center p {
    margin-top: 25px;
    max-width: 400px;
    font-size: 25px;
  }
  .box-center img {
    width: 90px;
  }
}
@media screen and (max-width: 1300px) {
  .box-border {
    width: 370px;
    height: 320px;
  }
  .box-border h1 {
    font-size: 21px;
    max-width: 300px;
    margin-top: 30px;
  }
  .box-border p {
    margin-top: 20px;
    max-width: 280px;
    font-size: 16px;
  }
  .box-border img {
    width: 50px;
  }
  .box-center {
    width: 400px;
    height: 350px;
  }
  .box-center h1 {
    font-size: 21px;
    max-width: 300px;
    margin-top: 30px;
  }
  .box-center p {
    margin-top: 20px;
    max-width: 280px;
    font-size: 16px;
  }
  .box-center img {
    width: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .box-border {
    width: 350px;
    height: 300px;
    padding: 10px;
  }
  .box-border h1 {
    font-size: 18px;
    max-width: 240px;
    margin-top: 30px;
  }
  .box-border p {
    margin-top: 20px;
    max-width: 210px;
    font-size: 15px;
  }
  .box-border img {
    width: 40px;
  }
  .box-center {
    width: 380px;
    height: 330px;
  }
  .box-center h1 {
    font-size: 19px;
    max-width: 240px;
    margin-top: 30px;
  }
  .box-center p {
    margin-top: 20px;
    max-width: 210px;
    font-size: 15px;
  }
  .box-center img {
    width: 60px;
  }
}
@media screen and (max-width: 900px) {
  .box-border {
    width: 350px;
    height: 300px;
    padding: 10px;
    filter: blur(2px);
    margin-left: 5%;
    margin-right: 5%;
  }
  .box-border h1 {
    font-size: 18px;
    max-width: 240px;
    margin-top: 30px;
  }
  .box-border p {
    margin-top: 20px;
    max-width: 210px;
    font-size: 15px;
  }
  .box-border img {
    width: 40px;
  }
  .box-center {
    width: 380px;
    height: 330px;
    filter: blur(0px);
    position: absolute;
    z-index: 1;
  }
  .box-center h1 {
    font-size: 19px;
    max-width: 240px;
    margin-top: 30px;
  }
  .box-center p {
    margin-top: 20px;
    max-width: 280px;
    font-size: 15px;
  }
  .box-center img {
    width: 60px;
  }
}
@media screen and (max-width: 430px) {
  .box-border {
    width: 300px;
    height: 300px;
    background-color: transparent;
    padding: 0px;
    filter: blur(0px);
    margin-left: 7%;
    margin-right: 7%;
  }
  .box-border h1 {
    font-size: 1px;
    max-width: 240px;
    margin-top: 30px;
  }
  .box-border p {
    margin-top: 20px;
    max-width: 210px;
    font-size: 1px;
  }
  .box-border img {
    width: 1px;
  }
  .box-center {
    width: 380px;
    height: 330px;
    filter: blur(0px);
    background-color: #27BCB1;
    position: absolute;
    z-index: 1;
  }
  .box-center h1 {
    font-size: 19px;
    max-width: 240px;
    margin-top: 30px;
  }
  .box-center p {
    margin-top: 20px;
    max-width: 280px;
    font-size: 16px;
  }
  .box-center img {
    width: 55px;
  }
}
@media screen and (max-width: 380px) {
  .box-center {
    width: 100%;
    filter: blur(0px);
    background-color: #27BCB1;
    position: absolute;
    z-index: 1;
  }
  .box-center h1 {
    font-size: 19px;
    max-width: 240px;
    margin-top: 30px;
  }
  .box-center p {
    margin-top: 20px;
    max-width: 280px;
    font-size: 16px;
  }
  .box-center img {
    width: 55px;
  }
}
.about-clinic {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10%;
  margin-left: 10%;
  margin-top: 150px;
}

.clinic-content {
  background-color: #128F8B;
  color: #F5FFFA;
  border-radius: 50px 0px 0px 50px;
  padding: 90px;
  padding-right: 180px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.clinic-content h1 {
  font-family: "goldbold";
  font-size: 32px;
  margin-bottom: 20px;
}
.clinic-content h2 {
  font-family: "goldbold";
  color: #2DD4C8;
  font-size: 28px;
}
.clinic-content p {
  min-width: 600px;
  font-size: 21px;
  line-height: 1.5;
}
.clinic-content img {
  width: 70px;
  margin-bottom: 20px;
}

.about-clinic iframe, .video-container img {
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  width: 430px;
  height: 760px;
  cursor: pointer;
}

.video-container-mobile {
  display: none;
}

@media screen and (min-width: 2000px) {
  .about-clinic {
    margin-right: 15%;
    margin-left: 15%;
    margin-top: 150px;
  }
  .clinic-content {
    padding-right: 200px;
  }
  .clinic-content h1 {
    font-size: 37px;
    margin-bottom: 25px;
  }
  .clinic-content h2 {
    font-size: 33px;
  }
  .clinic-content p {
    font-size: 25px;
  }
  .clinic-content img {
    width: 80px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1500px) {
  .clinic-content {
    padding-right: 150px;
  }
  .clinic-content h1 {
    font-size: 31px;
    margin-bottom: 20px;
  }
  .clinic-content h2 {
    font-size: 28px;
  }
  .clinic-content p {
    font-size: 20px;
    min-width: 670px;
  }
  .clinic-content img {
    width: 70px;
    margin-bottom: 20px;
  }
  .about-clinic iframe, .video-container img {
    width: 400px;
    height: 710px;
  }
}
@media screen and (max-width: 1300px) {
  .about-clinic {
    margin-right: 10%;
    margin-left: 10%;
  }
  .clinic-content {
    padding-right: 100px;
    padding: 70px;
  }
  .clinic-content h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .clinic-content h2 {
    font-size: 25px;
  }
  .clinic-content p {
    font-size: 17px;
    min-width: 450px;
  }
  .clinic-content img {
    width: 60px;
    margin-bottom: 20px;
  }
  .about-clinic iframe, .video-container img {
    width: 350px;
    height: 620px;
  }
}
@media screen and (max-width: 1000px) {
  .about-clinic {
    margin-right: 5%;
    margin-left: 5%;
  }
  .clinic-content {
    padding-right: 80px;
    padding: 60px;
  }
  .clinic-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .clinic-content h2 {
    font-size: 23px;
  }
  .clinic-content p {
    font-size: 17px;
    min-width: 400px;
  }
  .clinic-content img {
    width: 55px;
    margin-bottom: 20px;
  }
  .about-clinic iframe, .video-container img {
    width: 300px;
    height: 530px;
  }
}
@media screen and (max-width: 850px) {
  .about-clinic {
    margin-right: 3%;
    margin-left: 3%;
    margin-top: 150px;
    background-color: #128F8B;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  }
  .clinic-content {
    color: #F5FFFA;
    background-color: transparent;
    padding: 40px;
    margin: 10px;
    padding-right: 40px;
    box-shadow: none;
  }
  .clinic-content h1 {
    font-size: 25px;
  }
  .clinic-content h2 {
    font-size: 24px;
  }
  .clinic-content p {
    min-width: 250px;
    font-size: 18px;
  }
  .clinic-content img {
    width: 60px;
  }
  .about-clinic iframe, .video-container img {
    width: 300px;
    height: 530px;
    margin-right: 25px;
    margin-top: 3px;
  }
}
@media screen and (max-width: 690px) {
  .clinic-content {
    padding: 40px;
    margin: 10px;
    padding-right: 30px;
  }
  .clinic-content h1 {
    font-size: 24px;
  }
  .clinic-content h2 {
    font-size: 22px;
  }
  .clinic-content p {
    min-width: 250px;
    font-size: 17px;
  }
  .clinic-content img {
    width: 55px;
  }
  .about-clinic iframe, .video-container img {
    width: 250px;
    height: 440px;
  }
}
/* Responsividade para telas pequenas (615px -) */
@media screen and (max-width: 615px) {
  .clinic-content, .video-container {
    display: none;
  }
  .about-clinic {
    background-color: transparent;
    box-shadow: none;
    margin-left: 0px;
    margin-right: 0px;
  }
  .video-container-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .video-container-mobile img {
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    cursor: pointer;
    width: auto;
    height: auto;
    margin-right: 0px;
    margin-top: 0px;
  }
  .video-container-mobile iframe {
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    cursor: pointer;
    width: 351px;
    height: 600px;
    margin-right: 0px;
    margin-top: 0px;
  }
}
/* Responsividade para telas pequenas (365px -) */
@media screen and (max-width: 365px) {
  .video-container-mobile img {
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    cursor: pointer;
    width: 97%;
    height: auto;
    margin-right: 0px;
    margin-top: 0px;
  }
  .video-container-mobile iframe {
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    cursor: pointer;
    width: 310px;
    height: 550px;
    margin-right: 0px;
    margin-top: 0px;
  }
}
.about-janaina {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 130px;
}

.image-janaina {
  max-width: 900px;
}

.janaina-content {
  margin-right: 13%;
  margin-left: 3%;
}
.janaina-content h1 {
  font-family: "goldbold";
  font-size: 32px;
  color: #F5FFFA;
  background-color: #2DD4C8;
  border-radius: 70px;
  padding: 5px;
  padding-left: 50px;
}
.janaina-content h2 {
  padding-left: 60px;
  margin-top: 15px;
  color: #2DD4C8;
  font-size: 22px;
}
.janaina-content h3 {
  color: #1F3D59;
  font-family: "goldbold";
  font-size: 22px;
  padding-left: 60px;
  margin-bottom: 15px;
}
.janaina-content p {
  padding-left: 60px;
  margin-top: 20px;
  font-size: 22px;
  max-width: 650px;
}

.janaina-mobile {
  display: none;
}

.competencias {
  list-style-type: none;
  padding-left: 60px;
  margin-top: 25px;
}

.competencias li {
  display: flex;
  align-items: center;
}

.competencias img {
  width: 30px;
  margin-right: -20px;
}

.competencias p {
  max-width: 570px;
}

@media screen and (min-width: 2450px) {
  .image-janaina {
    max-width: 1050px;
  }
  .janaina-content {
    margin-right: 16%;
    margin-left: 3%;
  }
  .janaina-content h1 {
    font-size: 40px;
  }
  .janaina-content h2 {
    margin-top: 20px;
    font-size: 30px;
  }
  .janaina-content h3 {
    font-size: 30px;
  }
  .janaina-content p {
    margin-top: 25px;
    font-size: 26px;
    max-width: 800px;
  }
  .competencias img {
    width: 40px;
  }
  .competencias p {
    max-width: 700px;
  }
}
@media screen and (min-width: 2000px) and (max-width: 2449px) {
  .image-janaina {
    max-width: 1050px;
  }
  .janaina-content {
    margin-right: 10%;
    margin-left: 3%;
  }
  .janaina-content h1 {
    font-size: 40px;
  }
  .janaina-content h2 {
    margin-top: 20px;
    font-size: 30px;
  }
  .janaina-content h3 {
    font-size: 30px;
  }
  .janaina-content p {
    margin-top: 25px;
    font-size: 26px;
    max-width: 800px;
  }
  .competencias img {
    width: 40px;
  }
  .competencias p {
    max-width: 700px;
  }
}
@media screen and (max-width: 1800px) {
  .image-janaina {
    max-width: 750px;
  }
  .janaina-content {
    margin-right: 10%;
    margin-left: 3%;
  }
  .janaina-content p {
    font-size: 21px;
    max-width: 550px;
  }
}
@media screen and (max-width: 1500px) {
  .image-janaina {
    max-width: 720px;
  }
  .janaina-content h1 {
    font-size: 29px;
  }
  .janaina-content h2 {
    margin-top: 15px;
    font-size: 23px;
  }
  .janaina-content h3 {
    font-size: 21px;
  }
  .janaina-content p {
    font-size: 19px;
    max-width: 550px;
  }
  .competencias img {
    width: 28px;
  }
}
@media screen and (max-width: 1300px) {
  .image-janaina {
    max-width: 500px;
  }
  .janaina-content {
    margin-right: 7%;
    margin-left: 3%;
  }
  .janaina-content h1 {
    font-size: 22px;
  }
  .janaina-content h2 {
    margin-top: 15px;
    font-size: 17px;
  }
  .janaina-content h3 {
    font-size: 15px;
  }
  .janaina-content p {
    font-size: 15px;
    max-width: 450px;
  }
  .competencias img {
    width: 22px;
  }
}
@media screen and (max-width: 950px) {
  .image-janaina {
    max-width: 440px;
  }
  .janaina-content {
    margin-right: 4%;
    margin-left: 3%;
  }
  .janaina-content h1 {
    font-size: 20px;
  }
  .janaina-content h2 {
    margin-top: 15px;
    font-size: 15px;
  }
  .janaina-content h3 {
    font-size: 15px;
  }
  .janaina-content p {
    font-size: 14px;
    max-width: 450px;
  }
  .competencias img {
    width: 20px;
  }
}
@media screen and (max-width: 850px) {
  .about-janaina {
    flex-direction: column;
  }
  .image-janaina {
    max-width: 80%;
    margin-right: 20%;
  }
  .janaina-content h1 {
    display: none;
  }
  .janaina-content h2 {
    padding-left: 60px;
    margin-top: 15px;
    color: #2DD4C8;
    font-size: 23px;
  }
  .janaina-content h3 {
    display: none;
  }
  .janaina-content p {
    padding-left: 60px;
    margin-top: 20px;
    font-size: 19px;
    max-width: 550px;
  }
  .janaina-mobile {
    display: block;
    margin-left: -15%;
  }
  .janaina-mobile h1 {
    font-family: "goldbold";
    font-size: 29px;
    color: #F5FFFA;
    background-color: #2DD4C8;
    border-radius: 70px;
    padding: 5px;
    padding-left: 30px;
    padding-right: 150px;
    margin-bottom: 25px;
    display: block;
  }
  .janaina-mobile h3 {
    color: #1F3D59;
    font-family: "goldbold";
    font-size: 21px;
    padding-left: 30px;
    margin-bottom: 15px;
    display: block;
  }
  .competencias {
    list-style-type: none;
    padding-left: 60px;
    margin-top: 25px;
  }
  .competencias li {
    display: flex;
    align-items: center;
  }
  .competencias img {
    width: 25px;
    margin-right: -20px;
  }
  .competencias p {
    max-width: 520px;
  }
}
@media screen and (max-width: 690px) {
  .janaina-content h2 {
    font-size: 23px;
  }
  .janaina-content p {
    font-size: 17px;
    max-width: 500px;
  }
  .janaina-mobile {
    margin-left: -5%;
  }
  .janaina-mobile h1 {
    font-size: 25px;
  }
  .janaina-mobile h3 {
    font-size: 20px;
  }
  .competencias img {
    width: 23px;
  }
  .competencias p {
    max-width: 450px;
  }
}
@media screen and (max-width: 540px) {
  .janaina-content h2 {
    font-size: 21px;
    padding-left: 30px;
  }
  .janaina-content p {
    font-size: 16px;
    max-width: 400px;
    padding-left: 30px;
  }
  .janaina-mobile h1 {
    font-size: 22px;
  }
  .janaina-mobile h3 {
    font-size: 18px;
  }
  .competencias {
    list-style-type: none;
    padding-left: 30px;
    margin-top: 25px;
  }
  .competencias img {
    width: 24px;
  }
  .competencias p {
    max-width: 380px;
  }
}
@media screen and (max-width: 460px) {
  .janaina-content h2 {
    font-size: 20px;
    padding-left: 30px;
  }
  .janaina-content p {
    font-size: 15px;
    max-width: 350px;
    padding-left: 30px;
  }
  .image-janaina {
    max-width: 95%;
    margin-right: 5%;
  }
  .janaina-mobile {
    margin-left: -5%;
  }
  .janaina-mobile h1 {
    font-size: 20px;
    padding-right: 90px;
  }
  .janaina-mobile h3 {
    font-size: 16px;
  }
  .competencias {
    list-style-type: none;
    padding-left: 30px;
    margin-top: 25px;
  }
  .competencias img {
    width: 22px;
  }
  .competencias p {
    max-width: 320px;
  }
}
@media screen and (max-width: 375px) {
  .janaina-content h2 {
    font-size: 20px;
    padding-left: 30px;
  }
  .janaina-content p {
    font-size: 15px;
    max-width: 330px;
    padding-left: 30px;
  }
  .image-janaina {
    max-width: 99%;
    margin-right: 1%;
  }
  .competencias img {
    width: 21px;
  }
  .competencias p {
    max-width: 300px;
  }
}
@media screen and (max-width: 355px) {
  .janaina-content h2 {
    font-size: 19px;
    padding-left: 30px;
  }
  .janaina-content p {
    font-size: 14px;
    max-width: 330px;
    padding-left: 30px;
  }
  .janaina-mobile {
    margin-left: 0%;
  }
  .janaina-mobile h1 {
    font-size: 19px;
    padding-right: 80px;
  }
  .janaina-mobile h3 {
    font-size: 16px;
  }
  .image-janaina {
    max-width: 99%;
    margin-right: 1%;
  }
  .competencias {
    margin-top: 5px;
  }
  .competencias img {
    width: 20px;
  }
  .competencias p {
    max-width: 300px;
  }
}
.materials {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 180px;
  padding-bottom: 200px;
}
.materials iframe {
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  width: 1200px;
  height: 500px;
}
.materials .video-container-materials img {
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  width: 1200px;
  height: 500px;
  background-size: cover;
  cursor: pointer;
}

.circuloMaterials {
  z-index: -2;
  width: 300px;
  right: 0%;
  margin-bottom: 30%;
}

@media screen and (min-width: 2000px) {
  .materials iframe {
    width: 1800px;
    height: 700px;
  }
  .materials .video-container-materials img {
    width: 1800px;
    height: 700px;
  }
  .circuloMaterials {
    z-index: -2;
    width: 400px;
    right: 0%;
    margin-bottom: 30%;
  }
}
@media screen and (min-width: 1700px) {
  .materials iframe {
    width: 1500px;
    height: 600px;
  }
  .materials .video-container-materials img {
    width: 1500px;
    height: 600px;
  }
  .circuloMaterials {
    z-index: -2;
    width: 300px;
    right: 0%;
    margin-bottom: 30%;
  }
}
@media screen and (max-width: 1300px) {
  .materials iframe {
    width: 900px;
    height: 370px;
  }
  .materials .video-container-materials img {
    width: 900px;
    height: 370px;
  }
  .circuloMaterials {
    z-index: -2;
    width: 250px;
    right: 0%;
    margin-bottom: 30%;
  }
}
@media screen and (max-width: 950px) {
  .materials iframe {
    width: 750px;
    height: 312px;
  }
  .materials .video-container-materials img {
    width: 750px;
    height: 312px;
  }
}
@media screen and (max-width: 850px) {
  .materials iframe {
    width: 650px;
    height: 270px;
    border-radius: 20px;
  }
  .materials .video-container-materials img {
    width: 650px;
    height: 270px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 690px) {
  .materials iframe {
    width: 550px;
    height: 230px;
    border-radius: 13px;
  }
  .materials .video-container-materials img {
    width: 550px;
    height: 230px;
    border-radius: 13px;
  }
  .circuloMaterials {
    width: 200px;
    right: 0%;
  }
}
@media screen and (max-width: 600px) {
  .materials {
    margin-top: 150px;
    padding-bottom: 150px;
  }
  .materials iframe {
    width: 480px;
    height: 220px;
    border-radius: 13px;
  }
  .materials .video-container-materials img {
    width: 480px;
    height: 220px;
    border-radius: 13px;
  }
  .circuloMaterials {
    width: 180px;
    right: 0%;
  }
}
@media screen and (max-width: 510px) {
  .materials {
    margin-top: 150px;
    padding-bottom: 150px;
  }
  .materials iframe {
    width: 430px;
    height: 210px;
    border-radius: 13px;
  }
  .materials .video-container-materials img {
    width: 430px;
    height: 210px;
    border-radius: 13px;
  }
  .circuloMaterials {
    width: 180px;
    right: 0%;
  }
}
@media screen and (max-width: 430px) {
  .materials {
    margin-top: 130px;
    padding-bottom: 130px;
  }
  .materials iframe {
    width: 360px;
    height: 200px;
    border-radius: 13px;
  }
  .materials .video-container-materials img {
    width: 360px;
    height: 180px;
    border-radius: 13px;
  }
  .circuloMaterials {
    width: 180px;
    right: 0%;
    margin-bottom: 40%;
  }
}
@media screen and (max-width: 365px) {
  .materials {
    margin-top: 130px;
    padding-bottom: 130px;
  }
  .materials iframe {
    width: 300px;
    height: 150px;
    border-radius: 12px;
  }
  .materials .video-container-materials img {
    width: 300px;
    height: 160px;
    border-radius: 12px;
  }
  .circuloMaterials {
    width: 160px;
    right: 0%;
  }
}
.review-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  padding-bottom: 200px;
}

.left-content {
  background-color: #128F8B;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  height: 650px;
}
.left-content h1 {
  font-size: 30px;
  color: #F5FFFA;
  font-family: "goldbold";
  margin-bottom: 35px;
}
.left-content h2 {
  font-size: 27px;
  color: #F5FFFA;
  font-family: "goldbold";
}
.left-content #aspas-mobile {
  width: 50px;
}
.left-content #stars {
  width: 130px;
}
.left-content p {
  color: #F5FFFA;
  margin-top: 14px;
}
.left-content #comment {
  font-size: 22px;
  width: 650px;
  margin-bottom: 25px;
}
.left-content #name {
  font-size: 19px;
}
.left-content .review {
  border: solid 1px #F5FFFA;
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.images-review {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-review {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 55px;
}
.menu-review img {
  width: 50px;
  cursor: pointer;
  margin-right: 50px;
}

.right-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-content img {
  height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-mobile h1, .review-mobile h2 {
  display: none;
}

@media screen and (min-width: 2000px) {
  .left-content h1 {
    font-size: 35px;
    margin-bottom: 35px;
  }
  .left-content h2 {
    font-size: 32px;
  }
  .left-content #aspas-mobile {
    width: 70px;
  }
  .left-content #stars {
    width: 150px;
  }
  .left-content p {
    margin-top: 15px;
  }
  .left-content #comment {
    font-size: 27px;
    width: 800px;
  }
  .left-content #name {
    font-size: 23px;
  }
  .menu-review img {
    width: 60px;
  }
}
@media screen and (max-width: 1300px) {
  .left-content {
    height: 650px;
    padding: 50px;
  }
  .left-content h1 {
    font-size: 26px;
    margin-bottom: 35px;
  }
  .left-content h2 {
    font-size: 23px;
  }
  .left-content #aspas-mobile {
    width: 40px;
  }
  .left-content #stars {
    width: 105px;
  }
  .left-content #comment {
    font-size: 19px;
    width: 450px;
  }
  .left-content #name {
    font-size: 17px;
  }
  .menu-review {
    margin-top: 50px;
  }
  .menu-review img {
    width: 45px;
  }
}
@media screen and (max-width: 950px) {
  .left-content {
    height: 650px;
    padding: 50px;
  }
  .left-content h1 {
    font-size: 25px;
    margin-bottom: 35px;
  }
  .left-content h2 {
    font-size: 22px;
  }
  .left-content #aspas-mobile {
    width: 40px;
  }
  .left-content #stars {
    width: 105px;
  }
  .left-content #comment {
    font-size: 19px;
    width: 350px;
  }
  .left-content #name {
    font-size: 17px;
  }
  .menu-review {
    margin-top: 50px;
  }
  .menu-review img {
    width: 45px;
  }
}
@media screen and (max-width: 850px) {
  .review-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-direction: column;
  }
  .right-content {
    order: -1;
  }
  .right-content img {
    height: 450px;
  }
  .review-mobile h1,
  .review-mobile h2 {
    display: block;
  }
  .review-mobile {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    margin-left: 70px;
    margin-bottom: 50px;
    font-family: "goldbold";
  }
  .review-mobile h1 {
    color: #2DD4C8;
    font-size: 25px;
    margin-top: 5px;
  }
  .review-mobile h2 {
    color: #1F3D59;
    font-size: 20px;
  }
  .left-content h1,
  .left-content h2 {
    display: none;
  }
  .left-content {
    padding: 50px;
    height: 500px;
  }
  .left-content .images-review {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .left-content #aspas-mobile {
    width: 50px;
  }
  .left-content #stars {
    width: 140px;
  }
  .left-content #comment {
    font-size: 20px;
    width: 550px;
  }
  .left-content #name {
    font-size: 17px;
  }
  .menu-review {
    justify-content: space-around;
  }
  .menu-review img {
    width: 45px;
    margin-right: 0px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 690px) {
  .right-content img {
    height: 420px;
  }
  .review-mobile h1 {
    font-size: 25px;
    margin-top: 5px;
  }
  .review-mobile h2 {
    color: #1F3D59;
    font-size: 20px;
  }
  .left-content {
    padding: 50px;
    height: 500px;
  }
  .left-content #aspas-mobile {
    width: 45px;
  }
  .left-content #stars {
    width: 130px;
  }
  .left-content #comment {
    font-size: 18px;
    width: 520px;
  }
  .left-content #name {
    font-size: 16px;
  }
  .menu-review img {
    width: 45px;
    margin-right: 0px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 650px) {
  .left-content #comment {
    font-size: 18px;
    width: 430px;
  }
}
@media screen and (max-width: 550px) {
  .left-content #comment {
    font-size: 18px;
    width: 370px;
  }
}
@media screen and (max-width: 490px) {
  .review-content {
    padding-bottom: 150px;
  }
  .right-content img {
    height: 380px;
  }
  .review-mobile {
    margin-left: 40px;
    margin-bottom: 30px;
  }
  .review-mobile h1 {
    font-size: 21px;
  }
  .review-mobile h2 {
    font-size: 17px;
  }
  .left-content {
    padding: 20px;
    height: 500px;
  }
  .left-content #aspas-mobile {
    width: 35px;
  }
  .left-content #stars {
    width: 110px;
  }
  .left-content #comment {
    font-size: 16px;
    width: 310px;
    word-wrap: break-word;
  }
  .left-content #name {
    font-size: 15px;
  }
  .menu-review {
    justify-content: center;
  }
  .menu-review img {
    width: 45px;
    margin-right: 30px;
    margin-left: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 375px) {
  .review-content {
    padding-bottom: 150px;
  }
  .review-mobile h1 {
    font-size: 20px;
  }
  .left-content #comment {
    font-size: 16px;
    width: 290px;
  }
}
@media screen and (max-width: 350px) {
  .review-content {
    padding-bottom: 150px;
  }
  .review-mobile {
    margin-left: 25px;
    margin-bottom: 30px;
  }
  .review-mobile h1 {
    font-size: 20px;
  }
  .left-content #comment {
    font-size: 16px;
    width: 240px;
  }
  .menu-review {
    justify-content: center;
  }
  .menu-review img {
    width: 45px;
    margin-right: 7px;
    margin-left: 7px;
    margin-top: -20px;
  }
}
.services {
  padding-bottom: 200px;
}

.infos {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  margin-left: 150px;
  margin-bottom: 100px;
  font-family: "goldbold";
}
.infos h1 {
  color: #2DD4C8;
  font-size: 30px;
  margin-top: 5px;
}
.infos h2 {
  color: #1F3D59;
  font-size: 25px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  filter: blur(4px);
  background: #F5FFFA;
  border-radius: 30px;
  position: relative;
}

.swiper-slide img {
  display: block;
  width: 100%;
  border-radius: 30px;
}

.swiper-slide-active {
  filter: blur(0px);
}

.swiper-slide-shadow-coverflow {
  border-radius: 30px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #F5FFFA;
  text-align: center;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  width: 80%;
  padding-top: 2%;
  padding-bottom: 0.7%;
  border-radius: 20px;
}

.card-content img {
  width: 50px;
}

.card-content p {
  margin-bottom: 10px;
  font-family: "goldbold";
  font-size: 28px;
  margin: 12px;
  width: 500px;
}

.card-content button {
  opacity: 0;
  /* Inicialmente, o botão está oculto */
  transform: translateY(100%);
  /* Inicialmente, o botão está abaixo do conteúdo */
  transition: opacity 0.3s, transform 0.3s;
  background-color: #2DD4C8;
  color: #fff;
  font-family: "goldbold";
  font-size: 18px;
  padding: 7px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid #2DD4C8;
}

.card-content button:hover {
  background-color: transparent;
  color: #2DD4C8;
}

.swiper-slide:hover .card-content button {
  opacity: 1;
  transform: translateY(0);
  /* Quando hover, o botão se move para cima */
}

.modal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal.show-modal {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 85%;
  max-height: 85%;
  background-color: #128F8B;
  text-align: center;
  border-radius: 20px;
  box-sizing: border-box;
  border: solid 1px #ccc;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow-y: auto;
  /* Estilizando a barra de rolagem para ficar oculta */
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

.close {
  color: #F5FFFA;
  float: right;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.1s ease;
}

.close:hover {
  transform: scale(1.1);
}

.content-modal-up {
  padding: 40px;
}

.content-modal-down {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #F5FFFA;
  padding: 40px;
}

#modalImage {
  max-width: 60%;
  max-height: 60%;
  margin-bottom: 45px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#modalTitle {
  color: #128F8B;
  font-size: 26px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ccc;
  padding-bottom: 20px;
  font-family: "goldbold";
  width: 100%;
}

#modalText {
  color: #128F8B;
  font-size: 22px;
  font-family: "goldmedium";
  padding-top: 30px;
  line-height: 1.5;
  max-width: 90%;
  text-align: justify;
  word-wrap: break-word;
  overflow: auto;
}

.modal-content::-webkit-scrollbar {
  width: 0px;
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: transparent;
}

@media screen and (min-width: 2000px) {
  .infos h1 {
    font-size: 35px;
    margin-top: 10px;
  }
  .infos h2 {
    font-size: 30px;
  }
  .card-content img {
    width: 65px;
  }
  .card-content p {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .card-content button {
    font-size: 25px;
    padding: 10px 25px;
    border-radius: 25px;
  }
}
@media screen and (max-width: 1440px) {
  .card-content {
    top: 65%;
  }
  .card-content p {
    margin-bottom: 10px;
    font-size: 25px;
  }
  .card-content img {
    width: 50px;
  }
  .modal-content {
    min-width: 700px;
  }
}
@media screen and (max-width: 1300px) {
  .infos {
    margin-left: 100px;
  }
  .infos h1 {
    font-size: 27px;
  }
  .infos h2 {
    font-size: 22px;
  }
  .card .image-serv {
    height: 300px;
  }
  .card-content {
    top: 70%;
  }
  .card-content img {
    width: 38px;
  }
  .card-content p {
    font-size: 23px;
    margin: 12px;
    width: 400px;
  }
  .card-content button {
    font-size: 15px;
  }
  .modal-content {
    min-width: 700px;
  }
  .close {
    font-size: 42px;
  }
  #modalImage {
    max-width: 75%;
    max-height: 75%;
    margin-bottom: 10px;
    border-radius: 20px;
  }
  #modalTitle {
    font-size: 24px;
  }
  #modalText {
    font-size: 20px;
    padding-top: 20px;
    max-width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .card .image-serv {
    height: 250px;
  }
  .infos {
    margin-left: 60px;
  }
  .infos h1 {
    font-size: 25px;
  }
  .infos h2 {
    font-size: 22px;
  }
  .card-content {
    top: 65%;
  }
  .card-content img {
    width: 38px;
  }
  .card-content p {
    font-size: 21px;
    margin: 12px;
    width: 350px;
  }
  .card-content button {
    font-size: 15px;
  }
  .modal-content {
    min-width: 650px;
  }
}
@media screen and (max-width: 800px) {
  .card .image-serv {
    height: 220px;
    border-radius: 17px;
  }
  .card-content {
    top: 62%;
  }
  .card-content img {
    width: 37px;
  }
  .card-content p {
    font-size: 20px;
    width: 300px;
  }
  .modal-content {
    min-width: 650px;
  }
  #modalImage {
    max-width: 70%;
    max-height: 70%;
  }
}
@media screen and (max-width: 690px) {
  .card-content {
    top: 65%;
  }
  .card-content img {
    width: 36px;
  }
  .card-content p {
    font-size: 19px;
  }
  .modal-content {
    min-width: 550px;
  }
  #modalImage {
    max-width: 65%;
    max-height: 65%;
  }
  .swiper-3d .swiper-slide-shadow-left {
    display: none;
  }
}
@media screen and (max-width: 615px) {
  .card .image-serv {
    height: auto;
  }
  .infos {
    margin-left: 50px;
    margin-bottom: 80px;
  }
  .infos h1 {
    font-size: 24px;
  }
  .infos h2 {
    font-size: 19px;
  }
  .card-content {
    top: 65%;
  }
  .card-content img {
    width: 45px;
  }
  .card-content p {
    font-size: 24px;
    margin: 12px;
    width: 400px;
  }
  .card-content button {
    font-size: 17px;
  }
  .modal-content {
    min-width: 450px;
  }
  #modalImage {
    max-width: 100%;
    max-height: 100%;
  }
  .content-modal-up {
    padding-top: 10px;
  }
  #modalTitle {
    font-size: 22px;
  }
  #modalText {
    font-size: 20px;
  }
}
@media screen and (max-width: 430px) {
  .card .image-serv {
    height: 250px;
  }
  .infos {
    margin-left: 50px;
    margin-bottom: 80px;
  }
  .infos h1 {
    font-size: 21px;
  }
  .infos h2 {
    font-size: 17px;
  }
  .card-content {
    top: 65%;
  }
  .card-content img {
    width: 40px;
  }
  .card-content p {
    font-size: 19px;
    margin: 12px;
    width: 280px;
  }
  .card-content button {
    font-size: 16px;
  }
  .modal-content {
    min-width: 350px;
  }
  #modalImage {
    max-width: 100%;
    max-height: 100%;
  }
  .content-modal-up {
    padding-top: 10px;
  }
  #modalTitle {
    font-size: 20px;
  }
  #modalText {
    font-size: 17px;
    text-align: justify;
    word-wrap: break-word;
    overflow: auto;
  }
}
@media screen and (max-width: 375px) {
  .card .image-serv {
    height: 230px;
  }
  .infos {
    margin-left: 50px;
    margin-bottom: 80px;
  }
  .infos h1 {
    font-size: 21px;
  }
  .infos h2 {
    font-size: 17px;
  }
  .card-content {
    top: 65%;
    width: 100%;
  }
  .card-content img {
    width: 35px;
  }
  .card-content p {
    font-size: 18px;
    margin: 10px;
    width: 260px;
  }
  .card-content button {
    font-size: 15px;
  }
  .modal-content {
    min-width: 350px;
  }
  #modalImage {
    max-width: 100%;
    max-height: 100%;
  }
  .content-modal-up {
    padding-top: 10px;
  }
  #modalTitle {
    font-size: 20px;
  }
  #modalText {
    font-size: 17px;
    text-align: justify;
    word-wrap: break-word;
    overflow: auto;
  }
}
@media screen and (max-width: 335px) {
  .card .image-serv {
    height: 220px;
  }
  .infos {
    margin-left: 25px;
    margin-bottom: 80px;
  }
  .infos h1 {
    font-size: 20px;
  }
  .infos h2 {
    font-size: 17px;
  }
  .card-content {
    top: 65%;
    width: 100%;
  }
  .card-content img {
    width: 34px;
  }
  .card-content p {
    font-size: 18px;
    margin: 10px;
  }
  .card-content button {
    font-size: 14px;
  }
  .modal-content {
    min-width: 300px;
  }
  #modalImage {
    max-width: 100%;
    max-height: 100%;
  }
  .content-modal-up {
    padding-top: 10px;
  }
  #modalTitle {
    font-size: 19px;
  }
  #modalText {
    font-size: 17px;
    text-align: justify;
    word-wrap: break-word;
    overflow: auto;
  }
}
.faq {
  margin-bottom: 200px;
}

.faq-list {
  margin-top: -30px;
  margin-left: 150px;
  margin-right: 150px;
}

.faq-item {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  border-bottom: solid 2px #ccc;
  padding-bottom: 20px;
  color: #1F3D59;
  margin-bottom: 50px;
}

.answer {
  display: none;
  margin-top: 15px;
  font-size: 19px;
}

.question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.question h2 {
  margin-right: 5px;
}

.question img {
  width: 16px;
  height: 16px;
}

.padronagem {
  position: absolute;
}

.interrogacao {
  display: flex;
  width: 300px;
  right: 0;
  margin-right: 180px;
}

@media screen and (min-width: 2000px) {
  .answer {
    font-size: 24px;
  }
  .question img {
    width: 20px;
    height: 20px;
  }
  .question h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1500px) {
  .answer {
    font-size: 17px;
  }
  .question img {
    width: 15px;
    height: 15px;
  }
  .question h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .answer {
    font-size: 18px;
  }
  .question img {
    width: 15px;
    height: 15px;
  }
  .question h2 {
    font-size: 21px;
  }
  .faq-list {
    margin-left: 10%;
    margin-right: 10%;
  }
  .interrogacao {
    width: 250px;
    margin-right: 130px;
  }
}
@media screen and (max-width: 690px) {
  .answer {
    font-size: 17px;
  }
  .question img {
    width: 14px;
    height: 14px;
  }
  .question h2 {
    font-size: 19px;
  }
}
@media screen and (max-width: 580px) {
  .answer {
    font-size: 16px;
  }
  .question img {
    width: 14px;
    height: 14px;
  }
  .question h2 {
    font-size: 17px;
  }
  .interrogacao {
    width: 220px;
    margin-right: 100px;
  }
}
@media screen and (max-width: 540px) {
  .answer {
    font-size: 16px;
  }
  .question img {
    width: 14px;
    height: 14px;
  }
  .question h2 {
    font-size: 17px;
  }
  .interrogacao {
    width: 220px;
    margin-right: 100px;
  }
}
@media screen and (max-width: 430px) {
  .answer {
    font-size: 15px;
  }
  .question img {
    width: 12px;
    height: 12px;
  }
  .question h2 {
    font-size: 16px;
  }
  .interrogacao {
    width: 250px;
    margin-right: 80px;
  }
  .faq-list {
    margin-left: 13%;
    margin-right: 13%;
  }
}
@media screen and (max-width: 350px) {
  .answer {
    font-size: 14px;
  }
  .question img {
    width: 11px;
    height: 11px;
  }
  .question h2 {
    font-size: 15px;
  }
  .interrogacao {
    width: 230px;
    margin-right: 50px;
  }
  .faq-list {
    margin-left: 16%;
    margin-right: 16%;
  }
}
@media screen and (max-width: 335px) {
  .faq-list {
    margin-left: 19%;
    margin-right: 19%;
  }
}
.instagram {
  display: flex;
  justify-content: center;
  position: relative;
  box-sizing: border-box; /* Inclui padding e borda no tamanho total do elemento */
  padding-bottom: 150px;
}

.infos-insta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  font-family: "goldbold";
  padding-top: 90px;
}
.infos-insta h1 {
  color: #F5FFFA;
  font-size: 37px;
  margin-top: 5px;
}
.infos-insta h2 {
  color: #1F3D59;
  font-size: 30px;
}
.infos-insta .insta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.infos-insta .insta img {
  width: 35px;
  height: 35px;
  margin-left: 20px;
}

.rectangle {
  position: absolute;
  z-index: -1;
  width: 100%;
}

.list-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 250px;
  max-width: 1200px;
}

.post {
  max-width: 300px;
  margin: 10px;
  overflow: hidden;
  border-radius: 20px;
  box-sizing: border-box; /* Inclui padding e borda no tamanho total do elemento */
}

.post img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease; /* Adiciona uma transição suave ao passar o mouse */
}

.post:hover img {
  transform: scale(1.1); /* Aumenta a escala da imagem ao passar o mouse */
}

.circuloCima {
  width: 300px;
  top: 35%;
  right: 0;
  z-index: -2;
}

.circuloBaixo {
  width: 400px;
  bottom: 0;
  left: 0;
  z-index: -2;
}

@media screen and (min-width: 2000px) {
  .infos-insta h1 {
    font-size: 40px;
    margin-top: 5px;
  }
  .infos-insta h2 {
    font-size: 35px;
  }
  .infos-insta .insta img {
    width: 40px;
    height: 40px;
  }
  .list-posts {
    max-width: 1450px;
  }
  .post {
    max-width: 350px;
    border-radius: 25px;
  }
  .circuloCima {
    width: 300px;
    top: 42%;
    right: 0;
    z-index: -2;
  }
  .circuloBaixo {
    width: 400px;
    bottom: 0;
    left: 0;
    z-index: -2;
  }
}
@media screen and (max-width: 1300px) {
  .infos-insta h1 {
    font-size: 35px;
    margin-top: 2px;
  }
  .infos-insta h2 {
    font-size: 30px;
  }
  .infos-insta .insta img {
    width: 35px;
    height: 35px;
  }
  .list-posts {
    max-width: 1000px;
    padding-top: 220px;
  }
  .post {
    max-width: 260px;
  }
  .circuloCima {
    width: 260px;
    top: 25%;
  }
  .circuloBaixo {
    width: 290px;
  }
}
@media screen and (max-width: 1000px) {
  .infos-insta h1 {
    font-size: 33px;
    margin-top: 2px;
  }
  .infos-insta h2 {
    font-size: 28px;
  }
  .infos-insta .insta img {
    width: 35px;
    height: 35px;
  }
  .list-posts {
    max-width: 900px;
    padding-top: 200px;
  }
  .post {
    max-width: 220px;
  }
}
@media screen and (max-width: 800px) {
  .infos-insta {
    padding-top: 50px;
  }
  .infos-insta h1 {
    font-size: 31px;
    margin-top: 2px;
  }
  .infos-insta h2 {
    font-size: 26px;
  }
  .infos-insta .insta img {
    width: 32px;
    height: 32px;
  }
  .list-posts {
    max-width: 900px;
    padding-top: 150px;
  }
  .post {
    max-width: 210px;
  }
}
@media screen and (max-width: 690px) {
  .infos-insta {
    padding-top: 50px;
  }
  .infos-insta h1 {
    font-size: 31px;
    margin-top: 2px;
  }
  .infos-insta h2 {
    font-size: 26px;
  }
  .infos-insta .insta img {
    width: 32px;
    height: 32px;
  }
  .list-posts {
    max-width: 690px;
    padding-top: 150px;
  }
  .post {
    max-width: 220px;
  }
  .rectangle img {
    height: 220px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .circuloCima {
    width: 250px;
    top: 25%;
  }
  .circuloBaixo {
    width: 250px;
  }
}
@media screen and (max-width: 500px) {
  .instagram {
    padding-bottom: 100px;
  }
  .infos-insta {
    padding-top: 50px;
  }
  .infos-insta h1 {
    font-size: 30px;
    margin-top: 2px;
  }
  .infos-insta h2 {
    font-size: 25px;
  }
  .infos-insta .insta img {
    width: 31px;
    height: 31px;
  }
  .post {
    max-width: 190px;
  }
  .circuloCima {
    width: 230px;
    top: 25%;
  }
  .circuloBaixo {
    width: 230px;
  }
}
@media screen and (max-width: 430px) {
  .infos-insta {
    padding-top: 50px;
  }
  .infos-insta h1 {
    font-size: 26px;
    margin-top: 2px;
  }
  .infos-insta h2 {
    font-size: 21px;
  }
  .infos-insta .insta img {
    width: 26px;
    height: 26px;
  }
  .post {
    max-width: 160px;
    border-radius: 15px;
    margin: 5px;
  }
  .post img {
    border-radius: 15px;
  }
  .circuloCima {
    width: 180px;
    top: 25%;
  }
  .circuloBaixo {
    width: 180px;
  }
}
@media screen and (max-width: 340px) {
  .post {
    max-width: 140px;
    border-radius: 10px;
    margin: 5px;
  }
  .post img {
    border-radius: 10px;
  }
  .circuloCima {
    width: 160px;
    top: 25%;
  }
  .circuloBaixo {
    width: 160px;
  }
}
.team {
  padding-bottom: 200px;
}

.myGlide {
  background-color: #128F8B;
  width: 100%;
  height: 750px;
  background-size: cover;
  background-position: start;
  background-repeat: no-repeat;
  padding-top: 200px;
}

.infos-team {
  top: 0;
  margin: 70px;
  position: absolute;
  font-family: "goldbold";
}
.infos-team h1 {
  color: #1F3D59;
  font-size: 32px;
  margin-top: 5px;
}
.infos-team h2 {
  color: #F5FFFA;
  font-size: 27px;
}

.card-team {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #F5FFFA;
}
.card-team h1 {
  font-family: "goldbold";
  font-size: 27px;
  margin-top: 25px;
}
.card-team p {
  font-size: 23px;
  margin-top: 5px;
}

.card-team img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  -o-object-fit: fill;
     object-fit: fill;
  transition: transform 0.3s ease;
  padding: 18px;
}

.card-team:hover img {
  transform: scale(1.1);
}

.glide__arrow {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  top: 47%;
  position: absolute;
  transition: transform 0.2s ease;
}

.glide__arrow:hover {
  transform: scale(1.1);
}

.glide__arrow--left {
  left: 8px;
}

.glide__arrow--right {
  right: 8px;
}

@media screen and (min-width: 2000px) {
  .infos-team h1 {
    font-size: 35px;
  }
  .infos-team h2 {
    font-size: 30px;
  }
  .card-team h1 {
    font-size: 30px;
  }
  .card-team p {
    font-size: 27px;
    margin-top: 7px;
  }
}
@media screen and (max-width: 1300px) {
  .myGlide {
    height: 700px;
    background-position: center;
  }
  .infos-team h1 {
    font-size: 28px;
  }
  .infos-team h2 {
    font-size: 24px;
  }
  .card-team h1 {
    font-size: 25px;
    margin-top: 20px;
  }
  .card-team p {
    font-size: 21px;
  }
  .card-team img {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    padding: 18px;
  }
}
@media screen and (max-width: 500px) {
  .infos-team {
    margin: 50px;
  }
  .infos-team h1 {
    font-size: 24px;
  }
  .infos-team h2 {
    font-size: 20px;
  }
  .card-team h1 {
    font-size: 23px;
    margin-top: 20px;
  }
  .card-team p {
    font-size: 19px;
  }
}
@media screen and (max-width: 430px) {
  .infos-team {
    margin: 50px;
  }
  .infos-team h1 {
    font-size: 23px;
  }
  .infos-team h2 {
    font-size: 19px;
  }
  .card-team h1 {
    font-size: 21px;
    margin-top: 20px;
  }
  .card-team p {
    font-size: 18px;
  }
  .card-team img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    padding: 18px;
  }
  .glide__arrow img {
    width: 25px;
  }
}
@media screen and (max-width: 340px) {
  .myGlide {
    height: 650px;
  }
  .glide__arrow {
    top: 49%;
  }
  .infos-team {
    margin: 40px;
  }
  .infos-team h1 {
    font-size: 22px;
  }
  .infos-team h2 {
    font-size: 18px;
  }
  .card-team h1 {
    font-size: 20px;
    margin-top: 20px;
  }
  .card-team p {
    font-size: 17px;
  }
  .card-team img {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    padding: 18px;
  }
  .glide__arrow img {
    width: 22px;
  }
}
.location {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}

.infos-location {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-image: url("../../assets/images/backlocation.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 55%;
  height: 100%;
  padding-left: 25%;
  padding-right: 10px;
}

.infos-location h1 {
  color: #F5FFFA;
  font-size: 32px;
  margin-bottom: 10px;
  font-family: "goldbold";
  margin-bottom: 35px;
}

.infos-location h2 {
  color: #2DD4C8;
  font-size: 28px;
  font-family: "goldbold";
}

.info-content {
  display: flex;
  align-items: center;
  color: #F5FFFA;
  margin-top: 20px;
}

.info-content img {
  width: 27px;
}

.info-content p {
  font-size: 20px;
  margin-left: 10px;
}

.maps {
  width: 35%;
  height: 100%;
}

.maps iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.circuloLocation {
  z-index: -2;
  width: 400px;
  left: 0;
  margin-bottom: 450px;
}

@media screen and (min-width: 2000px) {
  .infos-location h1 {
    font-size: 36px;
  }
  .infos-location h2 {
    font-size: 31px;
  }
  .info-content img {
    width: 33px;
  }
  .info-content p {
    font-size: 26px;
    margin-left: 10px;
  }
  .circuloLocation {
    margin-bottom: 750px;
  }
}
@media screen and (max-width: 1300px) {
  .infos-location h1 {
    font-size: 24px;
  }
  .infos-location h2 {
    font-size: 22px;
  }
  .info-content img {
    width: 22px;
  }
  .info-content p {
    font-size: 17px;
  }
  .circuloLocation {
    width: 310px;
  }
}
@media screen and (max-width: 950px) {
  .infos-location {
    padding-left: 15%;
    padding-right: 40px;
  }
  .infos-location h1 {
    font-size: 26px;
  }
  .infos-location h2 {
    font-size: 24px;
  }
  .info-content img {
    width: 25px;
  }
  .info-content p {
    font-size: 18px;
  }
}
@media screen and (max-width: 850px) {
  .infos-location {
    padding-left: 10%;
    padding-right: 20px;
  }
  .infos-location h1 {
    font-size: 23px;
  }
  .infos-location h2 {
    font-size: 21px;
  }
  .info-content img {
    width: 22px;
  }
  .info-content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 720px) {
  .location {
    flex-direction: column;
    height: 80vh;
  }
  .infos-location {
    padding-left: 10%;
    padding-right: 20px;
    width: 80%;
  }
  .infos-location h1 {
    font-size: 24px;
  }
  .infos-location h2 {
    font-size: 22px;
  }
  .info-content img {
    width: 24px;
  }
  .info-content p {
    font-size: 17px;
  }
  .maps {
    width: 80%;
    height: 90%;
  }
  .circuloLocation {
    z-index: -2;
    width: 250px;
    left: 0;
    margin-bottom: 650px;
  }
}
@media screen and (max-width: 435px) {
  .infos-location {
    padding-left: 10%;
    padding-right: 20px;
    width: 80%;
  }
  .infos-location h1 {
    font-size: 21px;
  }
  .infos-location h2 {
    font-size: 19px;
  }
  .info-content img {
    width: 20px;
  }
  .info-content p {
    font-size: 16px;
  }
  .circuloLocation {
    z-index: -2;
    width: 200px;
    left: 0;
    margin-bottom: 650px;
  }
}
@media screen and (max-width: 385px) {
  .infos-location {
    padding-left: 8%;
    padding-right: 20px;
    width: 85%;
  }
  .maps {
    width: 85%;
    height: 90%;
  }
  .infos-location h1 {
    font-size: 21px;
  }
  .infos-location h2 {
    font-size: 19px;
  }
  .info-content img {
    width: 20px;
  }
  .info-content p {
    font-size: 16px;
  }
  .circuloLocation {
    z-index: -2;
    width: 180px;
    left: 0;
    margin-bottom: 650px;
  }
}
@media screen and (max-width: 358px) {
  .infos-location h1 {
    font-size: 19px;
  }
  .infos-location h2 {
    font-size: 18px;
  }
  .info-content img {
    width: 20px;
  }
  .info-content p {
    font-size: 16px;
  }
  .circuloLocation {
    z-index: -2;
    width: 180px;
    left: 0;
    margin-bottom: 650px;
  }
}
.form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 250px;
  padding-bottom: 200px;
}

.form-content {
  margin-right: 4%;
  margin-left: 1%;
  padding: 70px;
  padding-top: 75px;
  padding-bottom: 65px;
  border-radius: 35px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.form-content form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.form-content form .inputs {
  width: 100%;
  border: none;
  border-bottom: solid 1px #ccc;
  font-size: 17px;
  padding: 5px;
  margin-bottom: 50px;
  color: #1F3D59;
  background-color: #F5FFFA;
}
.form-content form .inputs:focus {
  border-radius: 5px;
}
.form-content form textarea {
  height: 100px;
}

.infos-form {
  font-family: "goldbold";
}
.infos-form h1 {
  color: #2DD4C8;
  font-size: 31px;
  margin-bottom: 70px;
}
.infos-form h2 {
  color: #1F3D59;
  font-size: 23px;
}

.button-form {
  width: 100%;
  height: 45px;
  color: #F5FFFA;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border-radius: 10px;
  border: 2px solid #2DD4C8;
  background: #2DD4C8;
  font-family: "goldbold";
  font-size: 18px;
  margin-top: 50px;
}

.button-form:hover {
  background: #F5FFFA;
  color: #2DD4C8;
}

.form-photo img {
  border-radius: 35px;
  width: 700px;
  height: 740px;
  -o-object-fit: fill;
     object-fit: fill;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.circuloForm {
  z-index: -2;
  width: 400px;
  right: 7%;
  margin-bottom: 33%;
}

@media screen and (min-width: 2000px) {
  .form {
    padding-top: 400px;
    padding-bottom: 350px;
  }
  .form-content {
    padding: 75px;
    padding-top: 85px;
    padding-bottom: 75px;
  }
  .form-content form .inputs {
    font-size: 22px;
  }
  .form-content form textarea {
    height: 130px;
  }
  .infos-form h1 {
    font-size: 38px;
    margin-bottom: 70px;
  }
  .infos-form h2 {
    font-size: 28px;
  }
  .button-form {
    height: 45px;
    border-radius: 10px;
    font-size: 23px;
  }
  .form-photo img {
    width: 780px;
    height: 820px;
    border-radius: 40px;
  }
  .circuloForm {
    right: 11%;
    margin-bottom: 33%;
  }
}
@media screen and (max-width: 1500px) {
  .circuloForm {
    right: 0%;
    margin-bottom: 40%;
  }
}
@media screen and (max-width: 1300px) {
  .form-content {
    margin-right: 3%;
    margin-left: 1%;
    padding: 55px;
    padding-top: 65px;
    padding-bottom: 55px;
  }
  .form-content form .inputs {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .form-content textarea {
    height: 100px;
  }
  .form-content .infos-form h1 {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .form-content .infos-form h2 {
    font-size: 19px;
  }
  .form-content .button-form {
    font-size: 16px;
    margin-top: 20px;
  }
  .form-photo img {
    width: 500px;
    height: 605px;
  }
  .circuloForm {
    width: 280px;
    right: 0%;
    margin-bottom: 45%;
  }
}
@media screen and (max-width: 950px) {
  .form-content {
    margin-right: 3%;
    margin-left: 1%;
    padding: 40px;
    padding-top: 65px;
    padding-bottom: 55px;
  }
  .form-content form .inputs {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .form-content textarea {
    height: 100px;
  }
  .form-content .infos-form h1 {
    font-size: 26px;
    margin-bottom: 50px;
  }
  .form-content .infos-form h2 {
    font-size: 19px;
  }
  .form-content .button-form {
    font-size: 16px;
    margin-top: 20px;
  }
  .form-photo img {
    width: 380px;
    height: 470px;
  }
  .circuloForm {
    width: 280px;
    right: 0%;
    margin-bottom: 40%;
  }
}
@media screen and (max-width: 850px) {
  .form-content {
    margin-right: 4%;
    margin-left: 4%;
    padding: 60px;
    padding-top: 70px;
    padding-bottom: 70px;
    border-radius: 40px;
    background-size: cover;
    background-image: url("../../assets/images/fotoForm.jpg");
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  }
  .form-content form {
    width: 400px;
    height: 600px;
  }
  .form-content form .inputs {
    font-size: 17px;
    padding: 5px;
    color: #F5FFFA;
    background-color: transparent;
    font-weight: bold;
  }
  .form-content form .inputs::-moz-placeholder {
    color: #F5FFFA;
    font-weight: bold;
  }
  .form-content form .inputs::placeholder {
    color: #F5FFFA;
    font-weight: bold;
  }
  .form-content form .inputs:focus {
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
    border-radius: 5px;
  }
  .form-content .infos-form h1 {
    font-size: 32px;
    margin-bottom: 80px;
  }
  .form-content .infos-form h2 {
    font-size: 24px;
  }
  .button-form:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #2DD4C8;
    -webkit-backdrop-filter: blur(7px);
            backdrop-filter: blur(7px);
  }
  .form-photo {
    display: none;
  }
  .circuloForm {
    z-index: -2;
    width: 300px;
    right: 0%;
    margin-bottom: 90%;
  }
}
@media screen and (max-width: 660px) {
  .form-content {
    margin-right: 4%;
    margin-left: 4%;
    padding: 55px;
    padding-top: 70px;
    padding-bottom: 70px;
    border-radius: 40px;
    background-image: url("../../assets/images/fotoForm.jpg");
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  }
  .form-content form {
    width: auto;
    height: auto;
  }
  .form-content form .inputs {
    font-size: 16px;
    padding: 5px;
  }
  .form-content .infos-form h1 {
    font-size: 30px;
    margin-bottom: 80px;
  }
  .form-content .infos-form h2 {
    font-size: 22px;
  }
  .circuloForm {
    width: 250px;
    right: 0%;
    margin-bottom: 95%;
  }
}
@media screen and (max-width: 530px) {
  .form-content {
    margin-right: 4%;
    margin-left: 4%;
    padding: 50px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .form-content .button-form {
    font-size: 15px;
  }
  .form-content form .inputs {
    font-size: 15px;
    padding: 5px;
  }
  .form-content .infos-form h1 {
    font-size: 27px;
    margin-bottom: 80px;
  }
  .form-content .infos-form h2 {
    font-size: 20px;
  }
  .circuloForm {
    width: 200px;
    right: 0%;
    margin-bottom: 120%;
  }
}
@media screen and (max-width: 470px) {
  .form {
    padding-top: 160px;
    padding-bottom: 150px;
  }
  .form-content {
    margin-right: 4%;
    margin-left: 4%;
    padding: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-position: 10% center;
  }
  .form-content .button-form {
    font-size: 15px;
    height: 40px;
  }
  .form-content form .inputs {
    font-size: 15px;
    padding: 5px;
  }
  .form-content .infos-form h1 {
    font-size: 24px;
    margin-bottom: 70px;
  }
  .form-content .infos-form h2 {
    font-size: 18px;
  }
  .circuloForm {
    width: 180px;
    right: 0%;
    margin-bottom: 150%;
  }
}
@media screen and (max-width: 410px) {
  .form-content .infos-form h1 {
    font-size: 21px;
    margin-bottom: 60px;
  }
  .form-content .infos-form h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 374px) {
  .form-content .infos-form h1 {
    font-size: 20px;
    margin-bottom: 50px;
  }
  .form-content .infos-form h2 {
    font-size: 15px;
  }
}
@media screen and (max-width: 352px) {
  .form {
    padding-top: 150px;
    padding-bottom: 130px;
  }
  .form-content {
    margin-right: 4%;
    margin-left: 4%;
    padding: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    background-position: 10% center;
  }
  .form-content .button-form {
    font-size: 14px;
    height: 40px;
  }
  .form-content form .inputs {
    font-size: 14px;
    padding: 5px;
  }
  .form-content .infos-form h1 {
    font-size: 19px;
    margin-bottom: 40px;
  }
  .form-content .infos-form h2 {
    font-size: 14px;
  }
  .circuloForm {
    width: 180px;
    right: 0%;
    margin-bottom: 160%;
  }
}
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
  background-color: #128F8B;
}

.logoFooter {
  width: 210px;
}

.socialsForm {
  display: flex;
  flex-direction: row;
  margin-top: 25px;
}
.socialsForm img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}
.socialsForm #insta {
  margin-left: 25px;
  margin-right: 25px;
}

.socialsForm img:hover {
  transform: scale(1.1);
}

.copy {
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  border-top: solid 1px #ccc;
  margin-bottom: -40px;
  margin-top: 40px;
  padding-top: 10px;
  text-align: center;
}

.copy p {
  font-size: 16px;
}

.copy strong {
  color: #F5FFFA;
  transition: 0.2s ease;
}

.copy strong:hover {
  color: #1a1a1a;
}

@media screen and (min-width: 2000px) {
  .footer {
    padding: 50px;
  }
  .logoFooter {
    width: 260px;
  }
  .socialsForm {
    margin-top: 30px;
  }
  .socialsForm img {
    width: 35px;
    height: 35px;
  }
  .copy p {
    font-size: 19px;
  }
}
@media screen and (max-width: 1300px) {
  .logoFooter {
    width: 190px;
  }
  .socialsForm img {
    width: 29px;
    height: 29px;
  }
  .copy p {
    font-size: 15px;
  }
}
@media screen and (max-width: 800px) {
  .logoFooter {
    width: 180px;
  }
  .socialsForm img {
    width: 27px;
    height: 27px;
  }
  .copy p {
    font-size: 14px;
  }
}
@media screen and (max-width: 675px) {
  .footer {
    padding-left: 30px;
    padding-right: 30px;
  }
  .logoFooter {
    width: 180px;
  }
  .socialsForm img {
    width: 26px;
    height: 26px;
  }
  .copy p {
    font-size: 13px;
  }
}
@media screen and (max-width: 590px) {
  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }
  .copy p {
    font-size: 13px;
  }
}
@media screen and (max-width: 550px) {
  .footer {
    padding-left: 0px;
    padding-right: 0px;
  }
  .logoFooter {
    width: 160px;
  }
  .socialsForm img {
    width: 25px;
    height: 25px;
  }
  .copy p {
    padding-left: 2px;
    padding-right: 2px;
    font-size: 13px;
  }
}
*, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

body {
  font-family: "goldmedium", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #F5FFFA;
}

button {
  font-family: "goldmedium", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #F5FFFA;
}

@font-face {
  font-family: "goldbold";
  src: url("../assets/fonts/Goldplay-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "goldmedium";
  src: url("../assets/fonts/Goldplay-Medium.ttf") format("truetype");
}/*# sourceMappingURL=style.css.map */