@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  resize: none;
  outline: none;
  list-style: none;
  text-decoration: none;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "Raleway", sans-serif;
}

p {
  font-size: 18px;
}

h2 {
  font-size: 26px;
  font-weight: 600;
  color: #774859;
}

button {
  background-color: #774859;
  font-size: 15px;
  width: 172px;
  height: 46px;
  border-radius: 10px;
  border: none;
  transition: all 0.75s ease;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}
button:hover {
  transform: scale(0.95);
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.0901960784);
  color: #fff;
  border-radius: 30px;
  padding: 8px 15px;
  border-bottom: 1px solid #774859;
}

::-webkit-scrollbar {
  background-color: #774859;
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #fff;
  width: 15px;
  border-radius: 10px;
}

section {
  display: grid;
  place-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5% 0;
  margin-top: -1px;
  background: #EFEFEF;
}

body {
  background: #EFEFEF;
}

.container {
  width: 80%;
}

@media (max-width: 800px) {
  section {
    padding: 10% 0;
  }
  h2 {
    font-size: 26px;
  }
  p {
    font-size: 16px;
  }
}
#header {
  top: -5%;
  opacity: 0;
  visibility: hidden;
}
#header[data-active=true] {
  top: 0;
  opacity: 1;
  visibility: visible;
}

header {
  background-color: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  height: 12%;
  border-radius: 0 0 0 50px;
  display: flex;
  transition: all 0.3s ease-in;
  z-index: 99;
}
header[data-active=true] {
  height: 15%;
  background-color: #774859;
}
header nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav .cont {
  width: 75%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header nav .cont .logo img {
  width: auto;
  height: 45px;
  -o-object-fit: cover;
     object-fit: cover;
}
header nav .cont .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 0.7rem;
  cursor: pointer;
}
header nav .cont .icon img {
  width: 35px;
  height: auto;
  transition: all 0.3s ease-in;
}
header nav .cont .icon img:hover {
  transform: scale(0.9);
}
header nav .cont ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style-type: none;
  align-items: center;
  gap: 0 3rem;
  /* Não mexer*/
  /* Não mexer ^^ */
}
header nav .cont ul .a2 {
  display: none;
}
header nav .cont ul a {
  color: #ffffff;
  display: block;
  text-align: start;
  font-size: 13px;
  padding: 5px 0;
  transition: all 0.5s ease;
  position: relative;
  opacity: 0.8;
}
header nav .cont ul a::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 0;
  bottom: 0;
  transition: all 0.5s ease;
  background: #ffffff;
}
header nav .cont ul a:hover {
  opacity: 0.9;
}
header nav .cont ul a:hover::after {
  width: 100%;
}
header nav .cont ul .active {
  opacity: 1;
}
header nav .cont ul .active::after {
  width: 100%;
}
header nav .cont ul .active:hover {
  opacity: 1;
}
header nav .cont ul .active:hover::after {
  width: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

#home {
  background: url(../assets/img/home.webp);
  height: 100vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
#home .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#home .text h1 {
  color: #ffffff;
  font-size: 35px;
}
#home .text p {
  width: 90%;
  color: #ffffff;
  font-size: 16px;
  padding: 0 0 1rem;
}

@media (min-width: 800px) {
  #home .mob,
  #home .header-mob,
  #home #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home {
    background: url(../assets/img/home-mob.webp);
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: end;
  }
  #home .header-mob {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #home .header-mob .logo {
    position: relative;
    top: 10%;
  }
  #home .header-mob .logo img {
    width: 90%;
  }
  #home .header-mob #menu__btn {
    position: fixed;
    height: auto;
    width: 26px;
    top: 4%;
    right: 6%;
    z-index: 99999;
    display: grid;
    place-items: center;
    gap: 4px 0;
  }
  #home .header-mob #menu__btn .boll {
    width: 25px;
    height: 4px;
    border: 1px solid #ffffff;
    border-radius: 2.5px;
    background: #774859;
  }
  #home .header-mob #menu__btn[data-active=true] svg g path {
    fill: #774859;
  }
  #home #sidebar__nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(29, 29, 27, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  #home #sidebar__nav[data-active=true] {
    visibility: visible;
    opacity: 1;
  }
  #home #sidebar__nav[data-active=true] ul {
    right: 0;
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;
  }
  #home #sidebar__nav ul {
    position: absolute;
    width: 80%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    bottom: 0;
    background: #774859;
    transition: all 0.2s ease;
  }
  #home #sidebar__nav ul li a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #ffffff;
  }
  #home #sidebar__nav ul #close__btn {
    position: absolute;
    top: -25.5%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #home #sidebar__nav ul #close__btn svg {
    width: 15px;
  }
  #home .text {
    width: 100%;
    height: 50%;
    align-items: center;
  }
  #home .text p {
    width: 100%;
  }
}
#differ {
  padding: 0 0 2%;
  background: #E1D9DD;
}
#differ .container {
  position: relative;
  top: -15%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 0 2rem;
  height: 100%;
}
#differ .container .cont {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
  background: #774859;
  padding: 15% 0;
  border-radius: 19px;
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.0549019608);
}
#differ .container .cont h2 {
  width: 70%;
  font-size: 18px;
  color: #ffffff;
}
#differ .container .cont p {
  width: 70%;
  font-size: 15px;
  line-height: 1.3rem;
  opacity: 0.8;
  color: #ffffff;
}

@media (max-width: 800px) {
  #differ {
    padding: 15% 0;
  }
  #differ .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
    top: auto;
  }
}
#banner .container {
  width: 100%;
  display: grid;
  place-items: center;
}
#banner .container .cont {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  background: #774859;
}
#banner .container .cont .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
}
#banner .container .cont .text h2, #banner .container .cont .text p {
  width: 80%;
  color: #ffffff;
}
#banner .container .cont .text h2 {
  font-size: 26px;
}
#banner .container .cont .text p {
  opacity: 0.8;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
#banner .container .cont .img {
  width: 100%;
  display: grid;
  place-items: center;
}
#banner .container .cont .img img {
  width: 100%;
}

@media (max-width: 800px) {
  #banner .container .cont {
    grid-template-columns: repeat(1, 1fr);
  }
  #banner .container .cont .text {
    order: 1;
    padding: 20% 0;
  }
  #banner .container .cont .img {
    order: 2;
  }
}
#sobre {
  width: 100%;
  padding: 5% 0;
}
#sobre .container {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 2rem;
}
#sobre .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1.5rem 0;
}
#sobre .container .text h2 {
  width: 95%;
}
#sobre .container .text h2 strong {
  font-size: 26px;
  color: #D2CFCF;
  font-weight: 500;
}
#sobre .container .text p {
  width: 95%;
  font-size: 15px;
  color: #545454;
  line-height: 24px;
}
#sobre .container .img {
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
}
#sobre .container .img::after {
  content: "";
  position: absolute;
  display: block;
  width: 45%;
  height: 20%;
  background: #774859;
  top: -8%;
  left: 8%;
  z-index: 0;
}
#sobre .container .img img {
  width: 70%;
  z-index: 1;
}
#sobre .btn-flut {
  height: 55px;
  width: 55px;
  position: fixed;
  bottom: 10%;
  right: -5%;
  opacity: 0;
  display: grid;
  place-items: center;
  transition: all 0.4s ease-in;
  z-index: 9;
  cursor: pointer;
}
#sobre .btn-flut:hover {
  transform: scale(0.9);
}
#sobre .btn-flut[data-active=true] {
  right: 5%;
  opacity: 1;
}
#sobre .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 800px) {
  #sobre {
    padding: 15% 0;
    position: relative;
  }
  #sobre::after {
    content: "";
    position: absolute;
    display: block;
    width: 45%;
    height: 85px;
    background: #774859;
    top: 5%;
    left: 0;
    z-index: 0;
  }
  #sobre .btn-flut {
    display: none;
  }
  #sobre .container {
    padding: 5% 0 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
  }
  #sobre .container .img {
    width: 100%;
  }
  #sobre .container .img::after {
    display: none;
  }
  #sobre .container .img img {
    width: 100%;
  }
  #sobre .container .text h2 {
    font-size: 26px;
  }
}
#implantes .container {
  display: grid;
  place-items: center;
  gap: 4rem 0;
}
#implantes .container .text {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#implantes .container .conts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 2rem;
}
#implantes .container .conts .cont {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
  background: #E1D9DD;
  padding: 10% 0;
  border-radius: 27px;
  transition: all 0.5s ease;
}
#implantes .container .conts .cont svg {
  height: 50px;
  width: auto;
  transition: all 0.5s ease;
}
#implantes .container .conts .cont h3 {
  width: 80%;
  font-size: 18px;
  transition: all 0.5s ease;
}
#implantes .container .conts .cont p {
  width: 80%;
  font-size: 15px;
  transition: all 0.5s ease;
}
#implantes .container .conts .cont:hover {
  background: #774859;
}
#implantes .container .conts .cont:hover svg defs clipPath rect {
  fill: #ffffff;
  stroke: #ffffff;
}
#implantes .container .conts .cont:hover svg path {
  fill: #ffffff;
  stroke: #ffffff;
}
#implantes .container .conts .cont:hover svg#implante-carga-imediata path {
  stroke: transparent;
}
#implantes .container .conts .cont:hover h3, #implantes .container .conts .cont:hover p {
  color: #ffffff;
}

@media (max-width: 800px) {
  #implantes {
    padding: 5% 0 10%;
  }
  #implantes .container {
    gap: 3rem 0;
  }
  #implantes .container .text {
    width: 100%;
  }
  #implantes .container .conts {
    grid-template-columns: repeat(1, 1fr);
  }
}
#banner2 {
  background: #774859;
}
#banner2 .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 4rem;
}
#banner2 .container .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#banner2 .container .text h2 {
  width: 80%;
  color: #ffffff;
}
#banner2 .container .btn {
  width: 40%;
  display: grid;
  place-items: center start;
}
#banner2 .container .btn button {
  width: 277px;
  height: 67px;
  background: #E1D9DD;
  color: #774859;
  font-size: 18px;
}

@media (max-width: 800px) {
  #banner2 {
    padding: 15% 0;
  }
  #banner2 .container {
    flex-direction: column;
    gap: 2rem 0;
  }
  #banner2 .container .text {
    width: 100%;
    text-align: center;
  }
  #banner2 .container .text h2 {
    width: 95%;
    line-height: 2rem;
  }
  #banner2 .container .btn {
    width: 100%;
    place-items: center;
  }
}
#depoiments {
  background: #ffffff;
}
#depoiments .container {
  display: grid;
  place-items: center;
  gap: 4rem 0;
}
#depoiments .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#depoiments .container #car {
  width: 80vw;
  display: grid;
  place-items: center;
}
#depoiments .container #car .swiper {
  width: 100%;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 225px;
  display: flex;
  flex-direction: column;
  background: #E1D9DD;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  gap: 1rem 0;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide h3 {
  width: 80%;
  font-size: 18px;
  font-weight: 700;
  color: #774859;
}
#depoiments .container #car .swiper .swiper-wrapper .swiper-slide p {
  width: 80%;
  font-size: 15px;
}

@media (max-width: 800px) {
  #depoiments .container .text {
    width: 80%;
  }
}
#form {
  background: #ffffff;
}
#form .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  position: relative;
}
#form .container .cont-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
}
#form .container .cont-text h2 {
  font-size: 28px;
}
#form .container .cont-text p {
  width: 65%;
}
#form .container .cont-text .icon {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 0.6rem;
}
#form .container .cont-text .icon img {
  width: 45px;
  height: auto;
}
#form .container .cont-form {
  width: 100%;
  background: #774859;
  z-index: 2;
  display: grid;
  place-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 7% 0;
  border-radius: 19px;
}
#form .container .cont-form form {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem 0;
}
#form .container .cont-form form h2 {
  font-size: 20px;
  color: #1D1D1B;
}
#form .container .cont-form form textarea,
#form .container .cont-form form input {
  width: 100%;
  height: 40px;
  overflow: hidden;
  resize: none;
  background: #ffffff;
  color: #774859;
  font-size: 13px;
  border: none;
  outline: none;
  padding: 5%;
  border-radius: 11px;
}
#form .container .cont-form form textarea::-moz-placeholder, #form .container .cont-form form input::-moz-placeholder {
  color: #1D1D1B;
  opacity: 0.8;
}
#form .container .cont-form form textarea::placeholder,
#form .container .cont-form form input::placeholder {
  color: #1D1D1B;
  opacity: 0.8;
}
#form .container .cont-form form textarea {
  height: 169px;
}
#form .container .cont-form form button {
  width: 120px;
  height: 35px;
  margin: 5% 0 0;
  background: #E1D9DD;
  color: #774859;
  cursor: pointer;
}

@media (max-width: 800px) {
  #form .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
  }
  #form .container .cont-text {
    align-items: center;
    text-align: center;
  }
  #form .container .cont-text p {
    width: 90%;
  }
  #form .container .cont-text .icon {
    gap: 0 1rem;
  }
  #form .container .cont-text .icon img {
    width: 55px;
  }
  #form .container .cont-form {
    padding: 10% 0;
  }
}
#mapa {
  padding: 6% 0;
  position: relative;
}
#mapa::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #774859;
  opacity: 0.7;
  z-index: 2;
}
#mapa .container {
  display: grid;
  place-items: center;
}
#mapa .container .mapa {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#mapa .container .mapa iframe {
  width: 100%;
  height: 100%;
}
#mapa .container .text {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#mapa .container .text a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 0.5rem;
}
#mapa .container .text a img {
  width: auto;
  height: 100%;
}
#mapa .container .text a p {
  color: #ffffff;
}

@media (max-width: 800px) {
  #mapa {
    padding: 15% 0;
  }
  #mapa .container .text {
    width: 80%;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3% 0 1% 0;
  background: #E1D9DD;
}
footer .container {
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
footer .container img {
  width: 15%;
  height: auto;
}
footer .container .copyrights {
  display: grid;
  place-items: center;
  text-align: center;
}
footer .container .copyrights .copy {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 0.45rem;
  opacity: 1;
  color: #774859;
}
footer .container .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media screen and (max-width: 64rem) {
  footer {
    padding: 8% 0 2%;
  }
  footer .container img {
    width: 50%;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

#home-sobre {
  background: url(../assets/img/home-sobre.webp);
  min-height: 70vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
#home-sobre .img-fundo {
  width: 100%;
  height: 100%;
  display: none;
}

@media (min-width: 800px) {
  #home-sobre .mob,
  #home-sobre .header-mob,
  #home-sobre #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home-sobre {
    background: #ffffff;
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    min-height: auto;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: end;
  }
  #home-sobre .img-fundo {
    display: block;
  }
  #home-sobre .header-mob {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #home-sobre .header-mob .logo {
    position: relative;
    top: 10%;
  }
  #home-sobre .header-mob .logo img {
    width: 90%;
  }
  #home-sobre .header-mob #menu__btn {
    position: fixed;
    height: auto;
    width: 26px;
    top: 4%;
    right: 6%;
    z-index: 99999;
    display: grid;
    place-items: center;
    gap: 4px 0;
  }
  #home-sobre .header-mob #menu__btn .boll {
    width: 25px;
    height: 4px;
    border: 1px solid #ffffff;
    border-radius: 2.5px;
    background: #774859;
  }
  #home-sobre .header-mob #menu__btn[data-active=true] svg g path {
    fill: #774859;
  }
  #home-sobre #sidebar__nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(29, 29, 27, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  #home-sobre #sidebar__nav[data-active=true] {
    visibility: visible;
    opacity: 1;
  }
  #home-sobre #sidebar__nav[data-active=true] ul {
    right: 0;
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;
  }
  #home-sobre #sidebar__nav ul {
    position: absolute;
    width: 80%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    bottom: 0;
    background: #774859;
    transition: all 0.2s ease;
  }
  #home-sobre #sidebar__nav ul li a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #ffffff;
  }
  #home-sobre #sidebar__nav ul #close__btn {
    position: absolute;
    top: -25.5%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #home-sobre #sidebar__nav ul #close__btn svg {
    width: 15px;
  }
}
#sobre-pg {
  width: 100%;
  padding: 5% 0;
  background: #ffffff;
}
#sobre-pg .container {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
#sobre-pg .container .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#sobre-pg .container .text h2 {
  width: 95%;
}
#sobre-pg .container .text h2 strong {
  font-size: 26px;
  color: #d2cfcf;
  font-weight: 500;
}
#sobre-pg .container .text p {
  width: 100%;
  font-size: 15px;
  color: #545454;
  line-height: 22px;
}
#sobre-pg .container .img {
  width: 40%;
  display: grid;
  place-items: center;
  position: relative;
}
#sobre-pg .container .img::after {
  content: "";
  position: absolute;
  display: block;
  width: 45%;
  height: 20%;
  background: #936B7F;
  top: -8%;
  left: 0;
  z-index: 0;
}
#sobre-pg .container .img img {
  width: 90%;
  z-index: 1;
}
#sobre-pg .btn-flut {
  height: 58px;
  width: 58px;
  position: fixed;
  bottom: 10%;
  right: -5%;
  opacity: 0;
  display: grid;
  place-items: center;
  transition: all 0.4s ease-in;
  z-index: 9;
  cursor: pointer;
}
#sobre-pg .btn-flut:hover {
  transform: scale(0.9);
}
#sobre-pg .btn-flut[data-active=true] {
  right: 5%;
  opacity: 1;
}
#sobre-pg .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 800px) {
  #sobre-pg {
    padding: 15% 0;
    position: relative;
  }
  #sobre-pg::after {
    content: "";
    position: absolute;
    display: block;
    width: 45%;
    height: 85px;
    background: #774859;
    top: 4%;
    left: 0;
    z-index: 0;
  }
  #sobre-pg .btn-flut {
    display: none;
  }
  #sobre-pg .container {
    padding: 5% 0 0;
    flex-direction: column;
    gap: 3rem 0;
  }
  #sobre-pg .container .img {
    width: 100%;
  }
  #sobre-pg .container .img::after {
    display: none;
  }
  #sobre-pg .container .img img {
    width: 100%;
  }
  #sobre-pg .container .text {
    width: 100%;
  }
  #sobre-pg .container .text h2 {
    font-size: 26px;
  }
}
#text-sobre {
  background: #ffffff;
}
#text-sobre .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 2rem 0;
}
#text-sobre .container .text .title {
  width: 50%;
  position: relative;
  padding: 1% 0;
}
#text-sobre .container .text .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 100%;
  top: 0;
  left: 0;
  background: #936B7F;
  opacity: 0.4;
}
#text-sobre .container .text .title h2 {
  position: relative;
  left: 4%;
  z-index: 1;
}

@media (max-width: 800px) {
  #text-sobre .container .text .title {
    width: 100%;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

#home-implante {
  background: url(../assets/img/home-implante.webp);
  min-height: 70vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
#home-implante .container {
  display: grid;
  place-items: center end;
}
#home-implante .container .text {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#home-implante .container .text h1 {
  color: #ffffff;
  font-size: 35px;
}
#home-implante .container .text p {
  width: 80%;
  color: #ffffff;
  font-size: 18px;
}

@media (min-width: 800px) {
  #home-implante .mob,
  #home-implante .header-mob,
  #home-implante #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home-implante {
    background: url(../assets/img/home-implante-mob.webp);
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: end;
  }
  #home-implante .container {
    place-items: center;
  }
  #home-implante .container .header-mob {
    width: 100%;
    height: auto;
    padding: 5% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #home-implante .container .header-mob .logo {
    position: relative;
    top: 10%;
  }
  #home-implante .container .header-mob .logo img {
    width: 40%;
  }
  #home-implante .container .header-mob #menu__btn {
    position: fixed;
    height: auto;
    width: 26px;
    top: 4%;
    right: 6%;
    z-index: 99999;
    display: grid;
    place-items: center;
    gap: 4px 0;
  }
  #home-implante .container .header-mob #menu__btn .boll {
    width: 25px;
    height: 4px;
    border: 1px solid #ffffff;
    border-radius: 2.5px;
    background: #774859;
  }
  #home-implante .container .header-mob #menu__btn[data-active=true] svg g path {
    fill: #774859;
  }
  #home-implante .container #sidebar__nav {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(29, 29, 27, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
  }
  #home-implante .container #sidebar__nav[data-active=true] {
    visibility: visible;
    opacity: 1;
  }
  #home-implante .container #sidebar__nav[data-active=true] ul {
    right: 0;
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;
  }
  #home-implante .container #sidebar__nav ul {
    position: absolute;
    width: 80%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    bottom: 0;
    background: #774859;
    transition: all 0.2s ease;
  }
  #home-implante .container #sidebar__nav ul li a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #ffffff;
  }
  #home-implante .container #sidebar__nav ul #close__btn {
    position: absolute;
    top: -25.5%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #home-implante .container #sidebar__nav ul #close__btn svg {
    width: 15px;
  }
  #home-implante .container .text {
    width: 100%;
    align-items: center;
    padding: 0 0 20%;
  }
  #home-implante .container .text p {
    width: 100%;
  }
}
#banner-pg {
  background: #774859;
  position: relative;
}
#banner-pg::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 30px;
  background: #774859;
  bottom: -25px;
  left: 10%;
  -webkit-clip-path: polygon(0% 0, 100% 0%, 50% 100%, 0 0%);
          clip-path: polygon(0% 0, 100% 0%, 50% 100%, 0 0%);
}
#banner-pg .container {
  height: 100%;
  display: grid;
  place-items: center start;
}
#banner-pg .container .text {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#banner-pg .container .text h2 {
  color: #ffffff;
}

@media (max-width: 800px) {
  #banner-pg::after {
    left: auto;
  }
  #banner-pg .container {
    place-items: center;
  }
  #banner-pg .container .text {
    width: 100%;
    text-align: center;
  }
}
#text-pg {
  background: #ffffff;
  padding: 6% 0;
}
#text-pg .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
#text-pg .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1.5rem 0;
}
#text-pg .container .text p {
  line-height: 24px;
}

@media (max-width: 800px) {
  #text-pg {
    padding: 15% 0;
  }
}
#img-pg {
  padding: 0 0 6%;
  background: #ffffff;
}
#img-pg .container {
  display: grid;
  place-items: center;
}
#img-pg .container .img {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 0.5rem;
}
#img-pg .container .img img {
  width: 33%;
}
#img-pg .btn-flut {
  height: 55px;
  width: 55px;
  position: fixed;
  bottom: 10%;
  right: -5%;
  opacity: 0;
  display: grid;
  place-items: center;
  transition: all 0.4s ease-in;
  z-index: 9;
  cursor: pointer;
}
#img-pg .btn-flut:hover {
  transform: scale(0.9);
}
#img-pg .btn-flut[data-active=true] {
  right: 5%;
  opacity: 1;
}
#img-pg .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 800px) {
  #img-pg {
    padding: 0;
  }
  #img-pg .container {
    width: 100%;
  }
  #img-pg .container .img {
    width: 100%;
    gap: 0;
  }
  #img-pg .btn-flut {
    display: none;
  }
}
#sec-video {
  background: #ffffff;
  padding: 6% 0;
}
#sec-video .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
#sec-video .container .video {
  width: 50%;
  display: grid;
  place-items: center;
}
#sec-video .container .video video {
  height: 320px;
  width: 100%;
}

@media (max-width: 800px) {
  #sec-video {
    padding: 15% 0;
  }
  #sec-video .container .video {
    width: 100%;
  }
}
#duvids .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
#duvids .container .conts {
  width: 100%;
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
#duvids .container .conts #cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
  background: #E1D9DD;
  padding: 3% 0;
  text-align: center;
  border-radius: 19px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
}
#duvids .container .conts #cont img {
  width: 25px;
  height: auto;
  position: absolute;
  display: block;
  top: 35px;
  left: 3%;
  transition: all 0.5s ease;
}
#duvids .container .conts #cont h3 {
  width: 80%;
  font-size: 20px;
}
#duvids .container .conts #cont p {
  width: 80%;
  font-size: 0;
  opacity: 0;
  display: none;
  transition: all 0.5s ease;
}
#duvids .container .conts #cont[data-active=true] img {
  top: 25px;
  transform: rotateZ(180deg);
}
#duvids .container .conts #cont[data-active=true] p {
  animation: animation1 0.5s;
  display: block;
  opacity: 1;
  font-size: 18px;
}
#duvids .container .conts #cont[data-active=false] p {
  animation: animation2 0.5s;
  display: none;
  opacity: 0;
  font-size: 0;
}
@keyframes animation1 {
  0% {
    display: none;
    opacity: 0;
    font-size: 0;
  }
  50% {
    display: block;
    opacity: 0.5;
    font-size: 18px;
  }
  100% {
    display: block;
    opacity: 1;
    font-size: 18px;
  }
}
@keyframes animation2 {
  0% {
    display: block;
    opacity: 1;
    font-size: 18px;
  }
  50% {
    display: block;
    opacity: 0.5;
    font-size: 18px;
  }
  100% {
    display: none;
    opacity: 0;
    font-size: 0;
  }
}

@media (max-width: 800px) {
  #duvids .container .conts #cont {
    padding: 5% 0;
  }
  #duvids .container .conts #cont img {
    width: 18px;
  }
  #duvids .container .conts #cont h3 {
    width: 75%;
    font-size: 17px;
  }
  #duvids .container .conts #cont[data-active=true] {
    padding: 10% 0;
  }
  #duvids .container .conts #cont[data-active=true] img {
    left: 5%;
  }
  #duvids .container .conts #cont[data-active=true] p {
    font-size: 15px;
  }
  @keyframes animation1 {
    0% {
      display: none;
      opacity: 0;
      font-size: 0;
    }
    50% {
      display: block;
      opacity: 0.5;
      font-size: 15px;
    }
    100% {
      display: block;
      opacity: 1;
      font-size: 15px;
    }
  }
  @keyframes animation2 {
    0% {
      display: block;
      opacity: 1;
      font-size: 15px;
    }
    50% {
      display: block;
      opacity: 0.5;
      font-size: 15px;
    }
    100% {
      display: none;
      opacity: 0;
      font-size: 0;
    }
  }
}
/* instagram dinamico */
#instagram-dinamico {
  position: relative;
}
#instagram-dinamico .container {
  width: 80%;
  display: grid;
  place-items: center;
  gap: 3.5rem 0;
}
#instagram-dinamico .container .text {
  width: 55%;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.4rem 0;
}
#instagram-dinamico .container .posts__wrapper {
  width: 60%;
  display: grid;
  place-items: center;
  gap: 0 1.5rem;
}
#instagram-dinamico .container .posts__wrapper figure {
  width: 100%;
  border-radius: 9px;
}
#instagram-dinamico .container .posts__wrapper figure .behold-grid-posts {
  width: 100% !important;
  max-width: 100% !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 800px) {
  #instagram-dinamico .container .text {
    width: 100%;
  }
  #instagram-dinamico .container .posts__wrapper {
    width: 100%;
  }
}
/* instagram com fotos */
#instagram {
  position: relative;
}
#instagram .container {
  width: 80%;
  display: grid;
  place-items: center;
  gap: 3.5rem 0;
}
#instagram .container .text {
  width: 55%;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.4rem 0;
}
#instagram .container .img {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 1rem;
}
#instagram .container .img img {
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  #instagram .container .text {
    width: 100%;
  }
  #instagram .container .img {
    width: 100%;
  }
}/*# sourceMappingURL=styles.css.map */