@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400&display=swap");

* {
  padding: 0px;
  margin: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

body {
  background-color: #1b263b;
}

ul {
  list-style: none;
}

/*CONSTRUCTION PAGE*/
.construction {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.construction h1 {
  margin-top: 3rem;
  font-family: "Nunito", sans-serif;
  font-size: 48px;
  font-weight: 660;
  text-align: center;
}

.construction-button {
  background-color: #1b263b;
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  margin-bottom: 7rem;
  width: 500px;
  height: auto;
  border: #fff 3px solid;
  border-radius: 25px;
  cursor: pointer;
}

.hidden {
  overflow: hidden;
}

.page-container {
  position: relative;
  min-height: 100vh;
}

.content-wrap {
  padding-bottom: 2.5rem;
  background-color: #fff; /* Footer height*/
}

header {
  height: 130px;
  width: 100%;
  background-color: #1b263b;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  padding-top: 20px;
  position: relative;
}

.menu-master {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 27px;
}

.flag {
  padding-top: 4px;
  width: 22px;
  height: 22px;
  visibility: hidden;
}
/* MENU HAMBURGUER */

.checkbox-container {
  position: relative;
}

.checkbox {
  height: 130px;
  width: 130px;
  /* position: absolute;
  top: 15px;
  right: 15px; */
  display: flex;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: 0.5s ease-in-out 0s;
  background-color: #1b263b;
}

.checkbox .trace {
  width: 45px;
  height: 4px;
  background-color: #d3d3d3;
  position: absolute;
  border-radius: 4px;
  transition: 0.5s ease-in-out;
  z-index: 999;
}

.checkbox .trace:nth-child(1) {
  top: 52px;
  transform: rotate(0);
}

.checkbox .trace:nth-child(2) {
  top: 62px;
  transform: rotate(0);
}

.checkbox .trace:nth-child(3) {
  top: 72px;
  transform: rotate(0);
}

#toggle {
  display: none;
}

#toggle:checked + .checkbox .trace:nth-child(1) {
  transform: rotate(45deg);
  top: 47px;
}

#toggle:checked + .checkbox .trace:nth-child(2) {
  transform: translateX(-100px);
  width: 30px;
  visibility: hidden;
  opacity: 0;
}

#toggle:checked + .checkbox .trace:nth-child(3) {
  transform: rotate(-45deg);
  top: 48px;
}

#toggle:checked + .checkbox {
  background-color: #1b263b;
}

#toggle:checked ~ .menu {
  box-shadow: 0px 0px 0px 100vmax #1b263b;
  z-index: 1;
}

#toggle:checked ~ .menu-items {
  visibility: visible;
  opacity: 1;
}

/* MENU */

.menu {
  position: absolute;
  height: 40px;
  box-shadow: 0px 0px 0px 0px #1b263b;
  z-index: -1;
  transition: all 0.5s ease-in-out;
  background-color: #1b263b;
}

.menu-items {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  background-color: #1b263b;
}

.menu-items li a {
  margin: 10px 0;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 22px;
  font-family: "Nunito", sans-serif;
  line-height: 1.7rem;
  transition: 0.4s;
  transition-timing-function: cubic-bezier(0.45, 0, 0.4, 1);
}

.menu-items li a:hover {
  letter-spacing: 4px;
}

.menu-title {
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-decoration: underline 3px;
  text-underline-offset: 5.5px;
  letter-spacing: 1.2px;
  list-style-type: none;
}

.menu-title-about {
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 40px;
  font-weight: bold;
  text-decoration: underline 3px;
  text-underline-offset: 5.5px;
  letter-spacing: 1.2px;
  list-style-type: none;
  cursor: pointer;
}

/* FOOTER */

footer {
  width: 100%;
  height: 15rem;
  background-color: #1b263b;
  display: inline-flex;
  justify-content: flex-end;
  flex-direction: column;
  font-family: "Nunito", sans-serif;
  font-weight: lighter;
}

footer p {
  color: #fff;
  align-self: center;
  font-size: 20px;
  letter-spacing: 0.8px;
  padding: 0;
  margin: 0;
}

.social-footer ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 4.8rem;
}

.social-footer a {
  background-image: linear-gradient(to right, #d3d3d3, #d3d3d3 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.social-footer a:before {
  content: "";
  background: #d3d3d3;
  display: block;
  position: absolute;
  bottom: 1.5px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.social-footer a:hover {
  background-position: 0;
}

.social-footer a:hover::before {
  width: 100%;
}

.footer-info {
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  justify-content: space-evenly;
  line-height: 1.5rem;
  width: 100%;
  height: 6.3rem;
}

.footer-info a {
  background-image: linear-gradient(to right, #d3d3d3, #d3d3d3 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.footer-info a:before {
  content: "";
  background: #d3d3d3;
  display: block;
  position: absolute;
  bottom: 1.5px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.footer-info a:hover {
  background-position: 0;
}

.footer-info a:hover::before {
  width: 100%;
}

.list-title {
  font-size: 18px;
  font-weight: bold;
}

/*WHATSAPP BUTTON*/

.wpp-button-container {
  right: 30px;
  bottom: 15px;
  position: fixed;
  z-index: 1;
  cursor: pointer;
  transition: transform 330ms ease-in-out;
}

.wpp-button svg {
  width: 70px;
  height: 70px;
  filter: drop-shadow(5px 5px 10px #504949);
}

.wpp-button-container:hover {
  filter: grayscale(0.5);
  transform: scale(0.7, 0.7);
  transition: transform 330ms ease-in-out;
}

/*WELCOME IMAGE*/

.welcome {
  position: relative;
  width: auto;
  height: calc(100vh - 130px);
  max-height: calc(100vh - 130px);
  background-position: center;
  background-size: cover;
}

/*.welcome video {
  position: relative;
  width: 100%;
  object-fit: cover;
  height: calc(100vh - 130px);
  max-height: calc(100vh - 130px);
  background-position: center;
  background-size: cover;
}*/

.welcome img {
  position: relative;
  width: 100%;
  object-fit: cover;
  height: calc(100vh - 130px);
  max-height: calc(100vh - 130px);
  background-position: center;
  background-size: cover;
}

a.button {
  position: absolute;
  top: 80%;
  left: 45%;
  padding: 0.5em 3em;
  border: 0.16em solid #ffffff;
  margin: 0 0.3em 0.3em 0;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  transition: all 0.15s;
}
a.button:hover {
  color: #dddddd;
  border-color: #dddddd;
}

a.button:active {
  color: #bbbbbb;
  border-color: #bbbbbb;
}
@media all and (max-width: 768px) {
  a.button {
    display: block;
    margin: 0.4em auto;
  }
}

h2 {
  font-size: 32px;
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

h2:nth-of-type(1) {
  margin-bottom: 0.5rem;
}
h2:nth-of-type(2) {
  margin-top: 0rem;
}

h4 {
  font-size: 32px;
  margin-top: 6rem;
  margin-left: 2.5rem;
}

/*SOBRE*/
.about {
  color: #444;
  background-color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 0fr);
  grid-column-gap: 20px;
  grid-row-gap: 15px;
}

.div1 {
  grid-area: 1 / 1 / 3 / 2;
  color: black;
  font-size: 24px;
  margin-left: 2.5rem;
  margin-top: 6rem;
  width: 50%;
  font-weight: 550;
  justify-self: center;
}
.div2 {
  grid-area: 1 / 2 / 2 / 3;
  font-size: 22px;
  color: #444;
  width: 75%;
  font-weight: light;
}
.div3 {
  grid-area: 2 / 2 / 3 / 3;
  font-size: 22px;
  color: #444;
  width: 75%;
  font-weight: light;
}
.div4 {
  grid-area: 1 / 3 / 2 / 4;
  font-size: 22px;
  color: #444;
  width: 75%;
  font-weight: light;
}
.div5 {
  grid-area: 2 / 3 / 3 / 4;
  font-size: 22px;
  color: #444;
  width: 75%;
  font-weight: light;
}

.about h2 {
  color: black;
  text-align: center;
  font-weight: 550;
}
.about h2:nth-of-type(2) {
  margin-bottom: 6rem;
}
/*EQUIPA*/

.team {
  background-color: #fff;
  color: #444;
  display: flex;
  justify-content: space-evenly;
}

.team div {
  align-items: center;
  text-align: center;
  width: 200px;
}

.team div h3 {
  font-size: 24px;
}

.team img {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  margin-top: 30px;
}
/*TRATAMENTOS*/

.treatments-parent {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 20%);
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

/*.treatments-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}*/

/*.treatments-card {
height: 150px;
width: 150px;
  background-image: url("./image.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}*/

.treatments-container-1 {
  grid-area: 1 / 1 / 2 / 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}
.treatments-container-2 {
  grid-area: 1 / 2 / 2 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}
.treatments-container-3 {
  grid-area: 1 / 3 / 2 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}
.treatments-container-4 {
  grid-area: 1 / 4 / 2 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}

.card1 {
  height: 200px;
  width: 200px;
  background-image: url("/img/square/endodontia.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}

.card2 {
  height: 200px;
  width: 200px;
  background-image: url("/img/square/ortodontia.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}
.card3 {
  height: 200px;
  width: 200px;
  background-image: url("/img/square/rehab.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}
.card4 {
  height: 200px;
  width: 200px;
  background-image: url("/img/square/implantologia.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}
.card5 {
  height: 200px;
  width: 200px;
  background-image: url("/img/square/branqueamento.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}
.card6 {
  height: 200px;
  width: 200px;
  background-image: url("/img/square/_DSF2911.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}
.card7 {
  height: 200px;
  width: 200px;
  background-image: url("/img/square/dentisteria.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}
.card8 {
  height: 200px;
  width: 200px;
  background-image: url("/img/square/perio.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
}

.treatments-card-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.treatments-card-wrapper::before {
  content: "";
  position: absolute;
  height: 200px;
  width: 200px;
  display: block;
  border: 3px solid #d3d3d3;
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}

.treatments-card-wrapper h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
  transition: 0.3s;
}

.card1:hover {
  filter: grayscale(0.5);
}

.card1:hover > .treatments-card-wrapper::before {
  height: 200px;
  width: 200px;
  opacity: 1;
}

.card2:hover {
  filter: grayscale(0.5);
}

.card2:hover > .treatments-card-wrapper::before {
  height: 200px;
  width: 200px;
  opacity: 1;
}

.card3:hover {
  filter: grayscale(0.5);
}

.card3:hover > .treatments-card-wrapper::before {
  height: 200px;
  width: 200px;
  opacity: 1;
}

.card4:hover {
  filter: grayscale(0.5);
}

.card4:hover > .treatments-card-wrapper::before {
  height: 200px;
  width: 200px;
  opacity: 1;
}

.card5:hover {
  filter: grayscale(0.5);
}

.card5:hover > .treatments-card-wrapper::before {
  height: 200px;
  width: 200px;
  opacity: 1;
}

.card6:hover {
  filter: grayscale(0.5);
}

.card6:hover > .treatments-card-wrapper::before {
  height: 200px;
  width: 200px;
  opacity: 1;
}

.card7:hover {
  filter: grayscale(0.5);
}

.card7:hover > .treatments-card-wrapper::before {
  height: 200px;
  width: 200px;
  opacity: 1;
}

.card8:hover {
  filter: grayscale(0.5);
}

.card8:hover > .treatments-card-wrapper::before {
  height: 200px;
  width: 200px;
  opacity: 1;
}

/*MOBILE VERSION*/

@media only screen and (max-width: 768px) {
  * {
    max-width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
  }

  h2 {
    font-size: 26px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0;
  }

  h4 {
    font-size: 26px;
  }

  /*HEADER*/
  .logo {
    width: 250px;
  }
  /*FLAGS*/
  .flag {
    height: 20px;
    width: 20px;
    visibility: hidden;
  }

  .menu-master {
    gap: 2px;
    margin-right: 10px;
  }

  /*MENU HAMBURGER*/
  .checkbox {
    height: 50px;
    width: 50px;
  }

  .checkbox .trace {
    width: 35px;
  }

  .checkbox .trace:nth-child(1) {
    top: 22px;
    transform: rotate(0);
  }

  .checkbox .trace:nth-child(2) {
    top: 32px;
    transform: rotate(0);
  }

  .checkbox .trace:nth-child(3) {
    top: 42px;
    transform: rotate(0);
  }

  #toggle:checked + .checkbox .trace:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
  }

  #toggle:checked + .checkbox .trace:nth-child(2) {
    transform: translateX(-100px);
    width: 30px;
    visibility: hidden;
    opacity: 0;
  }

  #toggle:checked + .checkbox .trace:nth-child(3) {
    transform: rotate(-45deg);
    top: 22px;
  }

  /*MENU*/

  .menu {
    position: absolute;
    height: 40px;
    box-shadow: 0px 0px 0px 0px #1b263b;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    background-color: #1b263b;
  }

  .menu-items {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    background-color: #1b263b;
  }

  .menu-items li a {
    margin: 10px 0;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 20px;
    font-family: "Nunito", sans-serif;
    line-height: 1.7rem;
    transition: 0.4s;
    transition-timing-function: cubic-bezier(0.45, 0, 0.4, 1);
  }

  .menu-items li a:hover {
    letter-spacing: 4px;
  }

  .menu-title {
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 26px;
    font-weight: bold;
    text-decoration: underline 3px;
    text-underline-offset: 5.5px;
    letter-spacing: 1.2px;
    list-style-type: none;
    text-align: center;
    margin-bottom: 10px;
  }

  .menu-title-about {
    color: #fff;
    font-family: "Nunito", sans-serif;
    font-size: 26px;
    font-weight: bold;
    text-decoration: underline 3px;
    text-underline-offset: 5.5px;
    letter-spacing: 1.2px;
    list-style-type: none;
    cursor: pointer;
  }

  /*FOOTER*/
  footer {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 22rem;
  }

  .list-title {
    margin-left: 5px;
    margin-right: 5px;
  }

  footer p {
    text-align: center;
  }

  .footer-info {
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    text-align: center;
    gap: 40px;
  }

  .footer-info ul {
    height: 2.5rem;
  }

  .footer-info li {
    gap: 0;
  }

  .footer-info ul li:last-of-type {
    margin-bottom: 5px;
  }

  .social-footer {
    align-items: center;
    align-self: center;
    margin-bottom: 2.5rem;
  }
  /*WELCOME IMAGE*/
  a.button {
    top: 75%;
    left: 25%;
  }

  /*SOBRE*/
  h2:nth-of-type(2) {
    margin-top: 0rem;
    margin-bottom: 0;
  }
  .about-grid {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin-left: 5px;
    margin-right: 5px;
  }

  .div1 {
    color: black;
    font-size: 22px;
    width: 75%;
    text-align: center;
    letter-spacing: 2px;
    margin: 0;
    margin-top: 2rem;
    align-self: center;
  }
  .div2 {
    font-size: 20px;
    color: #444;
    width: 75%;
    font-weight: light;
    text-align: center;
    margin: 0;
    width: 100%;
    margin-top: 2rem;
  }
  .div3 {
    font-size: 20px;
    color: #444;
    width: 75%;
    font-weight: light;
    text-align: center;
    margin: 0;
    width: 100%;
  }
  .div4 {
    font-size: 20px;
    color: #444;
    width: 75%;
    font-weight: light;
    text-align: center;
    margin: 0;
    width: 100%;
  }
  .div5 {
    font-size: 20px;
    color: #444;
    width: 75%;
    font-weight: light;
    text-align: center;
    margin: 0;
    width: 100%;
  }

  /*EQUIPA*/
  .team {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /*TRATAMENTOS*/
  .treatments-parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
    width: 100%;
  }

  .treatments-container {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  .treatments-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .card1 {
    height: 150px;
    width: 150px;
    background-image: url("/img/square/endodontia.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    margin: 20px;
  }

  .card2 {
    height: 150px;
    width: 150px;
    background-image: url("/img/square/ortodontia.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    margin: 20px;
  }
  .card3 {
    height: 150px;
    width: 150px;
    background-image: url("/img/square/rehab.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    margin: 20px;
  }
  .card4 {
    height: 150px;
    width: 150px;
    background-image: url("/img/square/implantologia.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    margin: 20px;
  }
  .card5 {
    height: 150px;
    width: 150px;
    background-image: url("/img/square/branqueamento.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    margin: 20px;
  }
  .card6 {
    height: 150px;
    width: 150px;
    background-image: url("/img/square/_DSF2911.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    margin: 20px;
  }
  .card7 {
    height: 150px;
    width: 150px;
    background-image: url("/img/square/dentisteria.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    margin: 20px;
  }
  .card8 {
    height: 150px;
    width: 150px;
    background-image: url("/img/square/perio.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 50%;
    margin: 20px;
  }

  .treatments-card-wrapper {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .treatments-card-wrapper::before {
    content: "";
    position: absolute;
    height: 100px;
    width: 100px;
    display: block;
    border: 3px solid #d3d3d3;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s;
  }

  .treatments-card-wrapper h2 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    transition: 0.3s;
  }

  .card1:hover {
    filter: grayscale(0.5);
  }

  .card1:hover > .treatments-card-wrapper::before {
    height: 150px;
    width: 150px;
    opacity: 1;
  }

  .card2:hover {
    filter: grayscale(0.5);
  }

  .card2:hover > .treatments-card-wrapper::before {
    height: 150px;
    width: 150px;
    opacity: 1;
  }

  .card3:hover {
    filter: grayscale(0.5);
  }

  .card3:hover > .treatments-card-wrapper::before {
    height: 150px;
    width: 150px;
    opacity: 1;
  }

  .card4:hover {
    filter: grayscale(0.5);
  }

  .card4:hover > .treatments-card-wrapper::before {
    height: 150px;
    width: 150px;
    opacity: 1;
  }

  .card5:hover {
    filter: grayscale(0.5);
  }

  .card5:hover > .treatments-card-wrapper::before {
    height: 150px;
    width: 150px;
    opacity: 1;
  }

  .card6:hover {
    filter: grayscale(0.5);
  }

  .card6:hover > .treatments-card-wrapper::before {
    height: 150px;
    width: 150px;
    opacity: 1;
  }

  .card7:hover {
    filter: grayscale(0.5);
  }

  .card7:hover > .treatments-card-wrapper::before {
    height: 150px;
    width: 150px;
    opacity: 1;
  }

  .card8:hover {
    filter: grayscale(0.5);
  }

  .card8:hover > .treatments-card-wrapper::before {
    height: 150px;
    width: 150px;
    opacity: 1;
  }

  /*WHATSAPP BUTTON*/

  .wpp-button-container {
    right: 15px;
    bottom: 10px;
    position: fixed;
    z-index: 1;
    cursor: pointer;
    transition: transform 330ms ease-in-out;
  }

  .wpp-button svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(5px 5px 10px #504949);
  }

  .wpp-button-container:hover {
    filter: none;
    transform: none;
    transition: none;
  }
}
