@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&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";
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 80%;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5% 0;
  background-color: #f1f1f1;
}

button {
  background-color: #CEA65B;
  font-size: 15px;
  width: 172px;
  height: 46px;
  border-radius: 12px;
  border: none;
  transition: all 0.75s ease;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}
button:hover {
  transform: scale(0.9);
}

h2 {
  color: #fff;
  font-size: 26px;
}

p {
  font-size: 15px;
  color: #fff;
}

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

::-webkit-scrollbar-thumb {
  background-color: #f1f1f1;
  border-radius: 10px;
}

.seta-mob {
  display: none;
}

@media (max-width: 800px) {
  button:hover {
    transform: scale(1);
    background-color: #CEA65B;
    color: #fff;
    border-bottom: none;
  }
  h2 {
    font-size: 20px;
  }
}
#header {
  background: rgba(0, 0, 0, 0.1529411765);
  top: -10%;
  opacity: 0;
}
#header[data-active=true] {
  opacity: 1;
  top: 0;
  box-shadow: 0px 12px 6px rgba(255, 255, 255, 0.1294117647);
  background-color: #1D1D1B;
}

header {
  background: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  height: 15%;
  border-radius: 0 0 0 50px;
  display: flex;
  transition: all 0.3s ease-in;
  z-index: 99;
}
header[data-active=true] {
  box-shadow: 0px 12px 6px rgba(255, 255, 255, 0.1294117647);
  background-color: #1D1D1B;
}
header nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header nav .cont {
  width: 85%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0 2rem;
}
header nav .cont .logo {
  display: flex;
  justify-content: end;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
header nav .cont .logo img {
  width: 90px;
  transition: all 0.3s ease-in;
}
header nav .cont ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style-type: none;
  align-items: center;
  gap: 0 5rem;
}
header nav .cont ul .a2 {
  opacity: 0;
  visibility: hidden;
  display: none;
}
header nav .cont ul a {
  color: #ffffff;
  position: relative;
  display: block;
  text-align: start;
  font-size: 14px;
  padding: 5px 0px;
  transition: all 0.5s ease;
  opacity: 0.6;
}
header nav .cont ul a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  bottom: 0;
  background: #ffffff;
  transition: all 0.5s ease;
}
header nav .cont ul a:hover {
  color: #ffffff;
  opacity: 0.8;
}
header nav .cont ul a:hover::after {
  width: 100%;
}
header nav .cont ul .active {
  color: #ffffff;
  opacity: 1;
}
header nav .cont ul .active::after {
  width: 100%;
}
header nav .cont ul .active:hover {
  opacity: 1;
}
header nav .cont .icon {
  width: 8%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
}
header nav .cont .icon img {
  cursor: pointer;
  width: 25px;
  height: 25px;
  transition: all 0.3s ease-in;
}
header nav .cont .icon img:hover {
  transform: scale(0.9);
}

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

#home {
  background: url(../assets/img/home.jpg);
  height: 100vh;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
#home h1 {
  color: #CEA65B;
  font-size: 30px;
}
#home p {
  color: #ffffff;
  font-size: 16px;
}
#home .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 1.5rem 0;
}

@media (min-width: 800px) {
  #home .header-mob,
  #home #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home {
    background: url(../assets/img/home-mob.jpg);
    height: 100vh;
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: start;
  }
  #home h1 {
    font-size: 22px;
  }
  #home .container {
    height: 35%;
    display: grid;
    place-items: center;
  }
  #home .text {
    align-items: center;
    width: 100%;
  }
  #home .header-mob .logo {
    position: absolute;
    width: 40%;
    top: 3%;
    left: 5%;
  }
  #home .header-mob .logo img {
    width: 80%;
  }
  #home .header-mob #menu__btn {
    position: fixed;
    right: 7%;
    top: 5%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem 0;
    z-index: 10;
  }
  #home .header-mob #menu__btn .boll {
    width: 30px;
    height: 5px;
    background: #1D1D1B;
    border: 2px solid #CEA65B;
    border-radius: 5px;
  }
  #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: #1D1D1B;
    transition: all 0.2s ease;
  }
  #home #sidebar__nav ul li a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 18px;
    padding: 5px 0px;
    color: #ffffff;
    transition: all 0.5s ease;
    border-bottom: 1px solid transparent;
    border-radius: 50%;
    opacity: 0.6;
  }
  #home #sidebar__nav ul li .active {
    color: #ffffff;
    border-radius: 0px;
    border-bottom: 1px solid #ffffff;
    opacity: 1;
  }
  #home #sidebar__nav ul li .active:hover {
    color: #ffffff;
    border-bottom: 1px solid #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;
  }
}
#diferenciais {
  background-color: #1D1D1B;
}
#diferenciais .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 2rem;
}
#diferenciais .container .cont {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 0.5rem 0;
}
#diferenciais .container .cont img {
  width: -moz-fit-content;
  width: fit-content;
  height: 34px;
}
#diferenciais .container .cont h5 {
  width: 90%;
  font-size: 12px;
  color: #CEA65B;
  font-weight: 500;
}
#diferenciais .container .cont p {
  width: 90%;
  line-height: 1rem;
  font-size: 12px;
  color: #ffffff;
  opacity: 0.7;
}

@media (max-width: 800px) {
  #diferenciais .container {
    flex-direction: column;
    gap: 2rem 0;
  }
  #diferenciais .container .cont {
    width: 90%;
  }
}
#dental-treatments {
  background-color: #1D1D1B;
}
#dental-treatments .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0rem 0;
}
#dental-treatments .container .text {
  text-align: center;
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem 0;
}
#dental-treatments .container .text p {
  opacity: 0.8;
}
#dental-treatments .container .text h2,
#dental-treatments .container .text p {
  color: #ffffff;
}
#dental-treatments .container #car {
  width: 80vw;
  position: relative;
}
#dental-treatments .container #car .mySwiper {
  width: 100%;
  height: 350px;
  position: relative;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: start;
  height: 60%;
  box-shadow: none;
  gap: 1rem 0;
  border-radius: 10px;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container {
  width: 100%;
  height: 100%;
  perspective: 1000px;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container .flipper {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  position: relative;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container .flipper .front,
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container .flipper .back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container .flipper .front {
  align-items: center;
  display: flex;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container .flipper .front .h3 {
  position: absolute;
  background-color: rgba(112, 112, 112, 0.5058823529);
  padding: 5%;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border-radius: 10px;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container .flipper .front .h3 h3 {
  color: #ffffff;
  font-size: 18px;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container .flipper .front img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container .flipper .back {
  transform: rotateY(180deg);
  padding: 5%;
  background-color: #CEA65B;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem 0;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container .flipper .back h3 {
  font-size: 18px;
  width: 100%;
  color: #ffffff;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide .flip-container .flipper .back p {
  font-size: 12px;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  height: 80%;
  transition: all 0.5s ease;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container[data-active=true] .flipper {
  transform: rotateY(180deg);
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front {
  cursor: pointer;
  transition: all 0.3s ease-in;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front .h3 {
  background: transparent;
}
#dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-next .flip-container .flipper .front:hover {
  transform: scale(0.95);
}
#dental-treatments .container #car .seta .swiper-button-prev1,
#dental-treatments .container #car .seta .swiper-button-next1 {
  position: absolute;
  width: 30px;
  height: -moz-fit-content;
  height: fit-content;
  top: 5%;
  cursor: pointer;
  z-index: 1;
}
#dental-treatments .container #car .seta .swiper-button-prev1 {
  right: 5%;
  transform: rotateY(180deg);
}
#dental-treatments .container #car .seta .swiper-button-next1 {
  right: 0%;
}
#dental-treatments .container .btn {
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 800px) {
  #dental-treatments .container {
    gap: 2rem 0;
  }
  #dental-treatments .container .text {
    width: 100%;
  }
  #dental-treatments .container .text h2 {
    font-size: 22px;
  }
  #dental-treatments .container #car {
    display: flex;
    flex-direction: column;
    gap: 2rem 0;
  }
  #dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide {
    height: 100%;
  }
  #dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    height: 100%;
    transition: all 0.5s ease;
  }
  #dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container[data-active=true] .flipper {
    transform: rotateY(180deg);
  }
  #dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front {
    cursor: pointer;
  }
  #dental-treatments .container #car .mySwiper .swiper-wrapper .swiper-slide.swiper-slide-active .flip-container .flipper .front .h3 {
    background: transparent;
  }
  #dental-treatments .container #car .seta {
    display: none;
  }
  #dental-treatments .container #car .seta-mob {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
  }
  #dental-treatments .container #car .seta-mob .swiper-button-prev1,
  #dental-treatments .container #car .seta-mob .swiper-button-next1 {
    width: 40px;
    height: -moz-fit-content;
    height: fit-content;
  }
  #dental-treatments .container #car .seta-mob .swiper-button-prev1 {
    transform: rotateY(180deg);
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5% 0 1%;
  background: #1D1D1B;
}
footer .container {
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
footer .container img {
  width: 12%;
}
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: #fff;
}
footer .container .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media screen and (max-width: 64rem) {
  footer .container img {
    width: 55%;
  }
}
#modal_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
#modal_container[data-active=true] {
  opacity: 1;
  visibility: visible;
}
#modal_container[data-active=true] .modal {
  margin-top: 0;
  opacity: 1;
}
#modal_container .modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #1D1D1B;
  z-index: 10;
  width: 70%;
  height: 70%;
  max-width: 80%;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  margin-top: 2rem;
}
#modal_container .modal img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}
#modal_container .modal .fechar {
  width: 10%;
  height: 10%;
  background-color: transparent;
  top: 0;
  margin-top: -12.5%;
}
#modal_container .modal .fechar svg {
  width: 100%;
}
#modal_container .modal .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 5%;
}
#modal_container .modal .text h2, #modal_container .modal .text p {
  color: #CEA65B;
}
#modal_container .modal .text p {
  padding: 10% 0;
}

@media (max-width: 800px) {
  #modal_container .modal {
    flex-direction: column;
    width: 90%;
    height: 74%;
  }
  #modal_container .modal .fechar {
    width: 6%;
    position: absolute;
    padding: 0;
    top: -10%;
    right: 5%;
  }
  #modal_container .modal .fechar svg {
    z-index: 999;
  }
  #modal_container .modal .text h2 {
    text-align: center;
    width: 100%;
    padding-top: 5%;
  }
}
#dentista-em-santo-andre {
  flex-direction: column;
  background-color: #1D1D1B;
}
#dentista-em-santo-andre .container {
  padding: 5% 0;
  background-color: #CEA65B;
  border-radius: 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#dentista-em-santo-andre .container .text {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 1rem 0;
}
#dentista-em-santo-andre .container .text h2 {
  font-size: 24px;
}
#dentista-em-santo-andre .container .text p {
  width: 95%;
  font-size: 15px;
}

@media (max-width: 800px) {
  #dentista-em-santo-andre .container {
    width: 100%;
    border-radius: 0;
    padding: 10% 0;
  }
  #dentista-em-santo-andre .container .text {
    width: 80%;
  }
}
#sobre {
  background: #1D1D1B;
}
#sobre .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#sobre .container .img img {
  width: 90%;
}
#sobre .container .img button {
  display: none;
}
#sobre .container .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem 0;
}
#sobre .container .text p {
  line-height: 1.2rem;
}
#sobre .btn-flut {
  height: 50px;
  width: 50px;
  position: fixed;
  z-index: 9;
  bottom: 10%;
  right: -5%;
  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%;
}
#sobre .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (max-width: 800px) {
  #sobre {
    padding: 10% 0;
  }
  #sobre .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
  }
  #sobre .container .img, #sobre .container .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #sobre .btn-flut {
    display: none;
  }
}
#depoiments {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #1D1D1B;
}
#depoiments .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem 0;
}
#depoiments #car {
  width: 55vw;
  position: relative;
}
#depoiments #car .mySwiper3 {
  width: 100%;
}
#depoiments #car .mySwiper3 .swiper-wrapper .swiper-slide {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
  height: 323px;
  background-color: #CEA65B;
  gap: 1rem 0;
  border-radius: 0 0 40px 0;
  padding: 0 10%;
  border: 10px solid #1D1D1B;
}
#depoiments #car .mySwiper3 .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: flex;
  height: 100%;
  width: 100%;
  right: 5px;
  border-radius: 0 0 30px 0;
  background-color: #ffffff;
  bottom: 5px;
}
#depoiments #car .mySwiper3 .swiper-wrapper .swiper-slide h3 {
  color: #CEA65B;
  z-index: 9;
}
#depoiments #car .mySwiper3 .swiper-wrapper .swiper-slide p {
  z-index: 9;
  color: #1D1D1B;
}
#depoiments #car .mySwiper3 .swiper-wrapper .swiper-slide img {
  z-index: 9;
  height: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
#depoiments #car .seta .swiper-button-prev3,
#depoiments #car .seta .swiper-button-next3 {
  position: absolute;
  width: 30px;
  height: -moz-fit-content;
  height: fit-content;
  top: 10%;
  cursor: pointer;
  z-index: 1;
}
#depoiments #car .seta .swiper-button-prev3 {
  right: 12%;
  transform: rotateY(180deg);
}
#depoiments #car .seta .swiper-button-next3 {
  right: 5%;
}

@media (max-width: 800px) {
  #depoiments .container {
    gap: 2rem 0;
  }
  #depoiments .container .text {
    width: 100%;
    text-align: center;
  }
  #depoiments .container #car {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem 0;
  }
  #depoiments .container #car .seta {
    display: none;
  }
  #depoiments .container #car .seta-mob {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
  }
  #depoiments .container #car .seta-mob .swiper-button-prev3,
  #depoiments .container #car .seta-mob .swiper-button-next3 {
    width: 40px;
    height: -moz-fit-content;
    height: fit-content;
  }
  #depoiments .container #car .seta-mob .swiper-button-prev3 {
    transform: rotateY(180deg);
  }
}
#result {
  background-color: #1D1D1B;
}
#result .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#result .container .text {
  text-align: start;
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
#result .container .text h2,
#result .container .text p {
  width: 80%;
  color: #ffffff;
}
#result .container .text .seta {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
  padding: 5% 0;
}
#result .container .text .seta .swiper-button-prev4,
#result .container .text .seta .swiper-button-next4 {
  width: 30px;
  cursor: pointer;
}
#result .container .text .seta .swiper-button-prev4 {
  transform: rotateY(180deg);
}
#result .container #car {
  width: 40vw;
  position: relative;
}
#result .container #car .mySwiper4 {
  width: 100%;
  height: 350px;
  position: relative;
}
#result .container #car .mySwiper4 .swiper-wrapper {
  display: flex;
  align-items: center;
}
#result .container #car .mySwiper4 .swiper-wrapper .swiper-slide {
  height: 70%;
}
#result .container #car .mySwiper4 .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
#result .container #car .mySwiper4 .swiper-wrapper .swiper-slide.swiper-slide-active {
  height: 80%;
  transition: all 0.5s ease;
}

@media (max-width: 800px) {
  #result .container {
    flex-direction: column;
    gap: 2rem 0;
  }
  #result .container .text {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #result .container .text h2 {
    width: 100%;
    font-size: 22px;
  }
  #result .container .text p {
    width: 100%;
  }
  #result .container .text .seta {
    display: none;
  }
  #result .container #car {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #result .container #car .mySwiper2 .swiper-wrapper .swiper-slide {
    height: 100%;
  }
  #result .container #car .mySwiper2 .swiper-wrapper .swiper-slide.swiper-slide-active {
    height: 100%;
  }
  #result .container #car .seta-mob {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
  }
  #result .container #car .seta-mob .swiper-button-prev4,
  #result .container #car .seta-mob .swiper-button-next4 {
    width: 40px;
    height: -moz-fit-content;
    height: fit-content;
  }
  #result .container #car .seta-mob .swiper-button-prev4 {
    transform: rotateY(180deg);
  }
}
#form {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#form .container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#form .container .cont-text {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #1D1D1B;
  gap: 2rem 0;
}
#form .container .cont-text .cont {
  width: 60%;
  display: grid;
  gap: 0.5rem 0;
}
#form .container .cont-text .cont h2 {
  font-size: 22px;
}
#form .container .cont-text .links {
  width: 60%;
  display: grid;
  gap: 1.2rem 0;
}
#form .container .cont-text .links .icon {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
  cursor: pointer;
}
#form .container .cont-text .links .icon img {
  width: -moz-fit-content;
  width: fit-content;
  height: 25px;
  transition: all 0.3s ease-in;
}
#form .container .cont-text .links .icon img:hover {
  transform: scale(0.9);
}
#form .container .cont-form {
  padding: 5% 0;
  background-color: #CEA65B;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
#form .container .cont-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem 0;
}
#form .container .cont-form form .title {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0;
}
#form .container .cont-form form .title h2 {
  font-size: 20px;
}
#form .container .cont-form form .title p {
  opacity: 0.8;
  width: 90%;
  font-size: 12px;
}
#form .container .cont-form form .cont {
  width: 80%;
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
#form .container .cont-form form .cont textarea,
#form .container .cont-form form .cont input,
#form .container .cont-form form .cont select {
  width: 100%;
  overflow: hidden;
  resize: none;
  background: transparent;
  border: 1px solid #1D1D1B;
  color: #ffffff;
  font-size: 13px;
}
#form .container .cont-form form .cont textarea::-moz-placeholder, #form .container .cont-form form .cont input::-moz-placeholder, #form .container .cont-form form .cont select::-moz-placeholder {
  color: #ffffff;
  opacity: 0.8;
}
#form .container .cont-form form .cont textarea::placeholder,
#form .container .cont-form form .cont input::placeholder,
#form .container .cont-form form .cont select::placeholder {
  color: #ffffff;
  opacity: 0.8;
}
#form .container .cont-form form .cont select {
  padding: 3% 3.5%;
  border-radius: 9px;
  cursor: pointer;
}
#form .container .cont-form form .cont select option {
  color: #000;
}
#form .container .cont-form form .cont .ip {
  padding: 3% 5%;
  border-radius: 9px;
  outline: none;
}
#form .container .cont-form form .cont .ip3 {
  padding: 3% 5% 20%;
  border-radius: 9px;
  height: 0px;
  outline: none;
}
#form .container .cont-form form .cont button {
  width: 110px;
  height: 35px;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #1D1D1B;
}
#form .container .cont-form form .cont button:hover {
  transform: scale(0.9);
  background-color: transparent;
  color: #ffffff;
}

@media (max-width: 800px) {
  #form .container {
    grid-template-columns: repeat(1, 1fr);
  }
  #form .container .cont-text {
    width: 100%;
    align-items: center;
    padding: 5% 0;
  }
  #form .container .cont-text .links {
    width: 70%;
    place-items: center;
  }
  #form .container .cont-text .links p {
    width: 100%;
    text-align: center;
  }
  #form .container .cont-text .links .icon svg {
    height: 30px;
  }
  #form .container .cont-text .links .icon svg:hover {
    transform: none;
  }
  #form .container .cont-text .cont {
    width: 80%;
    text-align: center;
  }
  #form .container .cont-form {
    width: 100%;
  }
}
#home-pg {
  background: url(../assets/img/home-pg.jpg);
  height: 75vh;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
#home-pg .container {
  display: flex;
  align-items: center;
  justify-content: end;
}
#home-pg h1 {
  color: #CEA65B;
  font-size: 25px;
}
#home-pg .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: end;
  justify-content: center;
  gap: 1.5rem 0;
}

@media (min-width: 800px) {
  #home-pg .header-mob,
  #home-pg #sidebar__nav {
    display: none !important;
  }
}
@media (max-width: 800px) {
  header {
    display: none !important;
  }
  #home-pg {
    background: url(../assets/img/home-mob.jpg);
    display: flex;
    width: 100%;
    position: relative;
    background-size: cover;
    flex-direction: column;
    text-align: center;
    justify-content: start;
    height: 80vh;
  }
  #home-pg h1 {
    font-size: 22px;
  }
  #home-pg .text {
    align-items: center;
    position: relative;
    text-align: center;
    width: 100%;
    top: 100%;
  }
  #home-pg .header-mob .logo {
    position: absolute;
    width: 40%;
    top: 3%;
    left: 5%;
  }
  #home-pg .header-mob .logo img {
    width: 80%;
  }
  #home-pg .header-mob #menu__btn {
    position: fixed;
    right: 7%;
    top: 5%;
    display: flex;
    flex-direction: column;
    gap: 0.3rem 0;
    z-index: 10;
  }
  #home-pg .header-mob #menu__btn .boll {
    width: 30px;
    height: 5px;
    background: #1D1D1B;
    border: 2px solid #CEA65B;
    border-radius: 5px;
  }
  #home-pg #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-pg #sidebar__nav[data-active=true] {
    visibility: visible;
    opacity: 1;
  }
  #home-pg #sidebar__nav[data-active=true] ul {
    right: 0;
    transition: all 0.3s ease-out;
    transition-delay: 0.5s;
  }
  #home-pg #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: #1D1D1B;
    transition: all 0.2s ease;
  }
  #home-pg #sidebar__nav ul li a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #ffffff;
  }
  #home-pg #sidebar__nav ul #close__btn {
    position: absolute;
    top: -25.5%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
  }
  #home-pg #sidebar__nav ul #close__btn svg {
    width: 15px;
  }
}
#sobre-pg {
  background: #1D1D1B;
}
#sobre-pg .container {
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
#sobre-pg .container .text {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 1rem 0;
}
#sobre-pg .container .text p {
  line-height: 1.2rem;
}
#sobre-pg .container .icon {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 1rem;
}
#sobre-pg .container .icon img {
  cursor: pointer;
  width: 25px;
  height: 25px;
  transition: all 0.3s ease-in;
}
#sobre-pg .container .icon img:hover {
  transform: scale(0.9);
}
#sobre-pg .btn-flut {
  height: 50px;
  width: 50px;
  position: fixed;
  z-index: 9;
  bottom: 10%;
  right: -5%;
  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%;
}
#sobre-pg .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (max-width: 800px) {
  #sobre-pg {
    padding: 10% 0;
  }
  #sobre-pg .container {
    gap: 3rem 0;
  }
  #sobre-pg .container .text {
    width: 100%;
  }
  #sobre-pg .container .icon svg {
    width: 35px;
  }
  #sobre-pg .btn-flut {
    display: none;
  }
}
#insta {
  flex-direction: column;
  background-color: #1D1D1B;
  align-items: center;
  text-align: center;
  gap: 3rem 0;
}
#insta .text {
  display: flex;
  flex-direction: column;
  gap: 0.6rem 0;
}
#insta .text h2, #insta .text p {
  color: #ffffff;
}

@media (min-width: 800px) {
  #insta .img-mob {
    display: none;
  }
}
@media (max-width: 800px) {
  #insta {
    padding: 10% 0 0;
  }
  #insta .imgs {
    display: none;
  }
}
#enfase {
  height: -moz-fit-content;
  height: fit-content;
  padding: 5% 0;
  display: grid;
  place-items: center;
  background: #1D1D1B;
}
#enfase .container {
  display: grid;
  place-items: center;
  gap: 5rem 0;
}
#enfase .container .cont-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem 0;
}
#enfase .container .cont-text h2 {
  text-align: center;
  font-weight: 400;
  width: 90%;
}
#enfase .container .cont-text .btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
}
#enfase .container .cont-text .btn button {
  background: transparent;
  color: #ffffff;
  border: 1px solid #CEA65B;
  position: relative;
  transition: all 0.5s ease;
}
#enfase .container .cont-text .btn button[data-active=true] {
  background: #CEA65B;
}
#enfase .container .cont-trats {
  display: grid;
  place-items: center;
  position: relative;
}
#enfase .container .cont-trats .cont {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  top: 0;
  left: -50%;
  transition: all 0.5s ease;
}
#enfase .container .cont-trats .cont[data-active=true] {
  opacity: 1;
  visibility: visible;
  position: relative;
  left: 0;
}
#enfase .container .cont-trats .cont .img {
  display: grid;
  place-items: center;
}
#enfase .container .cont-trats .cont .img img {
  width: 100%;
  height: 100;
}
#enfase .container .cont-trats .cont .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
}
#enfase .container .cont-trats .cont .text h2, #enfase .container .cont-trats .cont .text p {
  width: 90%;
}
#enfase .container .cont-trats .cont .text p {
  line-height: 1.3rem;
}

@media (max-width: 800px) {
  #enfase .container .cont-text .btn {
    flex-direction: column;
    gap: 1rem 0;
  }
  #enfase .container .cont-trats .cont {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
  }
  #enfase .container .cont-trats .cont .text h2, #enfase .container .cont-trats .cont .text p {
    width: 100%;
  }
  #enfase .container .cont-trats .cont .text p {
    line-height: 1.5rem;
  }
}
#curriculo {
  padding: 0;
  background: #1D1D1B;
}
#curriculo .container {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#curriculo .container .img {
  width: 100%;
  display: grid;
  place-items: center end;
  position: relative;
}
#curriculo .container .img::after {
  content: "";
  position: absolute;
  display: block;
  width: 10%;
  height: 100%;
  right: 0;
  background: #CEA65B;
  z-index: 0;
}
#curriculo .container .img img {
  width: 100%;
  height: auto;
  border-radius: 19px;
  z-index: 1;
}
#curriculo .container .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #CEA65B;
  gap: 1rem 0;
  border-radius: 0 19px 19px 0;
}
#curriculo .container .text h2, #curriculo .container .text p {
  width: 80%;
}
#curriculo .container .text p {
  line-height: 1.5rem;
}

@media (max-width: 800px) {
  #curriculo {
    padding: 0 0 10%;
  }
  #curriculo .container {
    grid-template-columns: repeat(1, 1fr);
  }
  #curriculo .container .img::after {
    bottom: 0;
    right: auto;
    width: 100%;
    height: 10%;
  }
  #curriculo .container .text {
    padding: 10% 0;
    border-radius: 0 0 19px 19px;
  }
}/*# sourceMappingURL=styles.css.map */