@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;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;
  background-size: cover !important;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "Lato", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  display: grid;
  place-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 5% 0;
  position: relative;
  background-position: center;
}

body {
  background: #F5F5F5;
}

.container {
  width: 80%;
  display: grid;
  place-items: center;
}

a {
  width: -moz-fit-content;
  width: fit-content;
}

button {
  background: transparent;
  font-size: 14px;
  width: 160px;
  height: 45px;
  border-radius: 9px;
  border: none;
  color: #00214A;
  border: 1px solid #00214A;
  transition: all 0.75s ease;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: all 0.5s ease;
  background: #6791A0;
  z-index: -1;
}
button:hover {
  transform: scale(0.95);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  color: #fff;
}
button:hover::after {
  width: 100%;
}

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

p {
  color: #8B8B8B;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

::-webkit-scrollbar {
  background: #00214A;
  width: 12px;
}

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

@media (max-width: 800px) {
  section {
    padding: 10% 0;
  }
  button {
    width: 172px;
    height: 45px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.0509803922);
    color: #fff;
    border: none;
  }
  button::after {
    width: 100%;
  }
  button:hover {
    color: #fff;
  }
  h2 {
    font-size: 24px;
  }
  p {
    font-size: 16px !important;
  }
}
#header {
  background: #00214A;
}

header {
  background: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: all 0.5s ease-in;
  overflow: hidden;
}
header[data-active=true] {
  background: rgba(0, 33, 74, 0.6);
  -webkit-backdrop-filter: blur(80px);
          backdrop-filter: blur(80px);
  box-shadow: 0px 3px 6px rgba(255, 255, 255, 0.1607843137);
}
header[data-active=true] nav {
  border-radius: 0;
}
header[data-active=true] nav .cont #sidebar__nav {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  background: transparent;
}
header[data-active=true] nav .cont .icon {
  opacity: 1;
  visibility: visible;
}
header nav {
  transition: all 0.3s ease-in;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 0 0 50px 50px;
}
header nav .cont {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
header nav .cont .logo {
  width: 15%;
  display: grid;
  place-items: center start;
}
header nav .cont .logo img {
  width: 100%;
  height: auto;
  transition: all 0.8s ease;
}
header nav .cont #menu__btn {
  display: none;
}
header nav .cont #sidebar__nav {
  display: grid;
  place-items: center;
  position: relative;
  padding: 10px 50px;
  border-radius: 50px;
  transition: all 0.5s ease;
}
header nav .cont #sidebar__nav ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 0 2rem;
  /* Não mexer */
  /* Não mexer ^^ */
}
header nav .cont #sidebar__nav ul .a2 {
  display: none;
}
header nav .cont #sidebar__nav ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5% 8px;
  align-items: center;
  text-decoration: none;
  border-radius: 2px;
  overflow: hidden;
}
header nav .cont #sidebar__nav ul li a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 100%;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: all 0.5s ease;
  z-index: -1;
}
header nav .cont #sidebar__nav ul li a:hover {
  color: #00214A;
}
header nav .cont #sidebar__nav ul li a:hover::after {
  width: 100%;
}
header nav .cont #sidebar__nav ul li a.active {
  color: #00214A;
}
header nav .cont #sidebar__nav ul li a.active::after {
  width: 100%;
}
header nav .cont .icon {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
header nav .cont .icon img {
  width: 35px;
  height: auto;
  transition: all 0.5s ease;
  cursor: pointer;
}
header nav .cont .icon img:hover {
  transform: scale(0.9);
}

@media (max-width: 800px) {
  header {
    height: 10%;
    background: #00214A;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  header[data-active=true] {
    background: #00214A;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    height: 10%;
    width: 100%;
    top: 0;
  }
  header nav {
    width: 100%;
    border-radius: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
  }
  header nav .cont {
    width: 80%;
    justify-content: space-between;
  }
  header nav .cont .logo {
    width: 30%;
  }
  header nav .cont .logo img {
    width: 100%;
  }
  header nav .cont .icon {
    display: none;
  }
  header nav .cont #menu__btn {
    position: fixed;
    right: 10%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.3rem 0;
    z-index: 10;
    cursor: pointer;
    transition: all 0.5s ease-out;
  }
  header nav .cont #menu__btn .boll {
    width: 25px;
    height: 4px;
    background: #fff;
    border-radius: 50px;
    transition: all 0.5s ease-out;
  }
  header nav .cont #menu__btn .boll:nth-child(2) {
    width: 15px;
  }
  header nav .cont #menu__btn[data-active=true] {
    right: 50%;
  }
  header nav .cont #menu__btn[data-active=true] .boll {
    transition: all 0.8s ease-out;
    border: none;
    background: #fff;
    width: 25px;
    height: 4px;
    position: absolute;
  }
  header nav .cont #menu__btn[data-active=true] .boll:nth-child(1) {
    transform: rotateZ(45deg);
  }
  header nav .cont #menu__btn[data-active=true] .boll:nth-child(3) {
    top: 5%;
    transform: rotateZ(-45deg);
  }
  header nav .cont #menu__btn[data-active=true] .boll:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  header nav .cont #sidebar__nav {
    position: fixed;
    width: 100%;
    inset: 0;
    right: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-out;
    border-radius: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  header nav .cont #sidebar__nav::after {
    display: none;
  }
  header nav .cont #sidebar__nav[data-active=true] {
    visibility: visible;
    opacity: 1;
  }
  header nav .cont #sidebar__nav[data-active=true] ul {
    right: 0;
    transition: all 0.5s ease;
  }
  header nav .cont #sidebar__nav ul {
    position: absolute;
    width: 60%;
    right: -80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    top: 0;
    background: #00214A;
    transition: all 0.2s ease;
  }
  header nav .cont #sidebar__nav ul li a {
    display: block;
    width: 100%;
    text-align: start;
    font-size: 1.2rem;
    color: #fff !important;
    position: relative;
  }
  header nav .cont #sidebar__nav ul li a::after {
    content: "";
    position: absolute;
    display: grid;
    width: 0;
    height: 1px;
    background: #fff;
    transition: all 0.5s ease;
  }
  header nav .cont #sidebar__nav ul li a:hover::after {
    width: 100%;
  }
}
#home {
  height: 100vh;
  place-items: center;
  background: url(../assets/img/home.webp);
  background-position: 50% 30%;
  position: relative;
}
#home::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 15px;
  bottom: 0;
  background: linear-gradient(90deg, #AC7B3F, #F2E5CC, #AC7B3F);
  z-index: 1;
}
#home::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 33, 74, 0.2), rgba(0, 33, 74, 0.6));
  z-index: 0;
}
#home .seta-baixo {
  position: absolute;
  display: grid;
  place-items: center;
  bottom: -1px;
  z-index: 3;
}
#home .seta-baixo img {
  width: 50px;
  height: auto;
}
#home .container {
  height: 100%;
  display: grid;
  place-items: center end;
  gap: 4rem 0;
  z-index: 2;
}
#home .container .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 2rem 0;
}
#home .container .text h1 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
}
#home .container .text button {
  font-weight: 600;
  font-size: 15px;
  border-color: #fff;
  color: #fff;
}
#home .container .text button:hover {
  color: #fff;
  border-color: #AC7B3F;
}
#home .btn-flut {
  height: 50px;
  width: 50px;
  position: fixed;
  z-index: 9;
  bottom: 5%;
  right: -5%;
  opacity: 0;
  display: grid;
  place-items: center;
  transition: all 0.5s ease-in;
  z-index: 9;
}
#home .btn-flut:hover {
  transform: scale(0.9);
}
#home .btn-flut[data-active=true] {
  right: 5%;
  opacity: 1;
}
#home .btn-flut img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

@media (max-width: 800px) {
  #home {
    background-position: 20% 50%;
    padding: 0 0 20%;
    place-items: center;
  }
  #home::before {
    background: linear-gradient(0deg, #00214A, transparent);
    opacity: 0.7;
  }
  #home .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }
  #home .container .text {
    width: 80%;
    text-align: center;
    align-items: center;
    justify-content: end;
    gap: 1rem 0;
  }
  #home .container .text h1 {
    width: 100%;
    font-size: 24px;
  }
  #home .container .icon {
    width: 80%;
    height: auto;
    place-items: center;
  }
  #home .container .icon .cont {
    flex-direction: row;
  }
  #home .container .icon .cont .cont-after {
    display: none;
  }
}
#differ {
  background: #00214A;
}
#differ .container {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
}
#differ .container .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
#differ .container .title h2 {
  width: 60%;
  color: #fff;
}
#differ .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}
#differ .container .text p {
  width: 100%;
  color: #fff;
}

@media (max-width: 800px) {
  #differ .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem 0;
  }
  #differ .container .title h2 {
    width: 100%;
  }
}
#sobre {
  background: #00214A;
}
#sobre .container {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 1rem;
  background: #6791A0;
  border-radius: 19px 19px 0 0;
  overflow: hidden;
  position: relative;
}
#sobre .container::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 15px;
  bottom: 0;
  background: linear-gradient(90deg, #AC7B3F, #F2E5CC, #AC7B3F);
  z-index: 1;
}
#sobre .container .img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center start;
}
#sobre .container .img img {
  width: 90%;
  height: 100%;
}
#sobre .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 2rem 0;
  padding: 10% 0;
}
#sobre .container .text .title {
  width: 90%;
}
#sobre .container .text .title h2 {
  color: #fff;
}
#sobre .container .text p {
  width: 90%;
  color: #fff;
}
#sobre .container .text .btn {
  width: 90%;
}
#sobre .container .text .btn button {
  border-color: #fff;
  color: #fff;
}
#sobre .container .text .btn button::after {
  background: #fff;
}
#sobre .container .text .btn button:hover {
  color: #00214A;
  border-color: transparent;
}

@media (max-width: 800px) {
  #sobre {
    place-items: center;
    padding: 15% 0;
  }
  #sobre .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 1rem 0;
  }
  #sobre .container .img img {
    width: 100%;
  }
  #sobre .container .text {
    align-items: center;
    text-align: center;
    order: 1;
    width: 100%;
    gap: 2rem 0;
    padding: 10% 0 15%;
  }
  #sobre .container .text .btn button {
    color: #00214A;
    background: #fff;
  }
}
#banner {
  background: url(../assets/img/banner1.webp);
  position: relative;
  padding: 10% 0;
  background-position: 80% 30%;
}
#banner::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(70deg, rgba(172, 123, 63, 0.5), rgba(0, 33, 74, 0.9));
  opacity: 0.8;
  z-index: 1;
}
#banner .container {
  z-index: 2;
  place-items: center end;
}
#banner .container .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  text-align: end;
  gap: 1rem 0;
}
#banner .container .text h2 {
  width: 90%;
  color: #fff;
}
#banner .container .text p {
  width: 90%;
  color: #fff;
}

@media (max-width: 800px) {
  #banner {
    padding: 80% 0 20%;
    background-position: center;
  }
  #banner::after {
    background: linear-gradient(180deg, rgba(172, 123, 63, 0.4), #00214a);
  }
  #banner .container {
    place-items: center;
  }
  #banner .container .text {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #banner .container .text h2 {
    width: 100%;
    font-size: 26px;
    font-weight: 400;
  }
  #banner .container .text p {
    width: 100%;
    font-size: 18px;
  }
  #banner .container .text button {
    border: none;
  }
}
#tecnologia .container {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 1rem;
}
#tecnologia .container .img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center end;
}
#tecnologia .container .img .title {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#tecnologia .container .img img {
  width: 90%;
  height: 100%;
  border-radius: 19px;
}
#tecnologia .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 2rem 0;
}
#tecnologia .container .text .title {
  width: 90%;
}
#tecnologia .container .text p {
  width: 90%;
}

@media (max-width: 800px) {
  #tecnologia {
    place-items: center;
  }
  #tecnologia .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 2rem 0;
  }
  #tecnologia .container .img {
    place-items: center;
    gap: 2rem 0;
  }
  #tecnologia .container .img .title {
    display: flex;
  }
  #tecnologia .container .img img {
    width: 100%;
  }
  #tecnologia .container .text {
    align-items: center;
    text-align: center;
    order: 1;
    width: 100%;
    gap: 2rem 0;
  }
  #tecnologia .container .text .title {
    display: none;
  }
  #tecnologia .container .text p {
    width: 100%;
  }
  #tecnologia .container .text .btn button {
    color: #00214A;
    background: #fff;
  }
}
#treatments {
  position: relative;
  place-items: center start;
  padding: 0;
  background: #00214A;
}
#treatments .container {
  width: 90%;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  z-index: 2;
}
#treatments .container .img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
#treatments .container .img img {
  width: 100%;
  height: 100%;
}
#treatments .container .conts {
  width: 100%;
  display: grid;
  place-items: center end;
  padding: 10% 0;
}
#treatments .container .conts .cont-trat {
  width: 80%;
  display: grid;
  place-items: center start;
  gap: 2rem 0;
}
#treatments .container .conts .cont-trat .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#treatments .container .conts .cont-trat .text h2 {
  color: #fff;
}
#treatments .container .conts .cont-trat .text p {
  font-size: 18px;
  color: #fff;
}
#treatments .container .conts .cont-trat .seta {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0 1rem;
  z-index: 1;
}
#treatments .container .conts .cont-trat .seta img {
  width: 35px;
  height: auto;
  cursor: pointer;
}
#treatments .container .conts .cont-trat .seta .swiper-button-prev1 {
  transform: rotateZ(180deg);
}
#treatments .container .conts .cont-trat #car {
  width: 35vw;
  height: 100%;
  display: grid;
  place-items: center;
}
#treatments .container .conts .cont-trat #car .swiper {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
#treatments .container .conts .cont-trat #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
}
#treatments .container .conts .cont-trat #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
#treatments .container .conts .cont-trat #car .swiper .swiper-wrapper .swiper-slide:hover {
  transform: scale(0.9);
}
#treatments .container .conts .cont-trat #car .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 10px;
  bottom: 0;
  background: linear-gradient(90deg, #AC7B3F, #F2E5CC, #AC7B3F);
  z-index: 1;
}
#treatments .container .conts .cont-trat #car .swiper .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: #00214A;
  opacity: 0.5;
  z-index: 1;
}
#treatments .container .conts .cont-trat #car .swiper .swiper-wrapper .swiper-slide .cont {
  width: 80%;
  bottom: 15%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
  z-index: 2;
}
#treatments .container .conts .cont-trat #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  font-size: 15px;
  color: #fff;
}
#treatments .container .conts .cont-trat #car .swiper .swiper-wrapper .swiper-slide .cont p {
  font-size: 12px;
  line-height: 20px;
  color: #fff;
}

@media (max-width: 800px) {
  #treatments .container {
    width: 100%;
    place-items: center;
    grid-template-columns: repeat(1, 1fr);
  }
  #treatments .container .img img {
    width: 100%;
  }
  #treatments .container .conts {
    place-items: center;
  }
  #treatments .container .conts .cont-trat {
    width: auto;
    place-items: center;
  }
  #treatments .container .conts .cont-trat .text {
    order: 1;
    align-items: center;
    text-align: center;
  }
  #treatments .container .conts .cont-trat #car {
    order: 2;
    width: 80vw;
  }
  #treatments .container .conts .cont-trat .seta {
    order: 3;
    justify-content: center;
  }
  #treatments .container .conts .cont-trat .seta img {
    width: 40px;
  }
}
#modal_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  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: #00214A;
  z-index: 999;
  width: 70%;
  height: 70%;
  max-width: 80%;
  border-radius: 20px;
  display: flex;
  overflow: hidden;
  transition: all 0.3s ease-out;
  margin-top: 2rem;
  gap: 0 4rem;
}
#modal_container .modal img {
  width: 100%;
  border-radius: 20px 0 0 20px;
}
#modal_container .modal .fechar {
  width: 4%;
  height: 10%;
  background-color: transparent;
  position: absolute;
  top: 5%;
  right: 0;
  cursor: pointer;
}
#modal_container .modal .fechar .btn-x {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  transform: rotateZ(-45deg);
}
#modal_container .modal .fechar .btn-x:nth-child(2) {
  bottom: 2.5%;
  transform: rotateZ(45deg);
}
#modal_container .modal .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1.5rem 0;
}
#modal_container .modal .text h2 {
  color: #fff;
}
#modal_container .modal .text p {
  width: 85%;
  font-size: 15px;
  line-height: 1.3rem;
  color: #fff;
}

@media (max-width: 800px) {
  #modal_container .modal {
    flex-direction: column;
    width: 90%;
    height: -moz-fit-content;
    height: fit-content;
  }
  #modal_container .modal img {
    width: 100%;
    height: 30vh;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0;
  }
  #modal_container .modal .fechar {
    width: 6%;
    position: absolute;
    padding: 0;
    top: 4%;
    right: 5%;
  }
  #modal_container .modal .fechar .btn-x {
    width: 23px;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #00214A;
  }
  #modal_container .modal .fechar .btn-x:nth-child(2) {
    bottom: 5%;
  }
  #modal_container .modal .text {
    padding: 8%;
  }
  #modal_container .modal .text h2 {
    text-align: center;
    width: 100%;
    padding-top: 5%;
  }
  #modal_container .modal .text p {
    width: 100%;
  }
}
#estrutura {
  place-items: center end;
}
#estrutura .container {
  width: 90%;
  grid-template-columns: repeat(2, 1fr);
  place-items: center end;
}
#estrutura .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 1rem 0;
}
#estrutura .container .text p {
  width: 80%;
}
#estrutura .container #car {
  width: 40vw;
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
#estrutura .container #car .btn {
  display: none;
  place-items: center;
}
#estrutura .container #car .seta {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
  z-index: 1;
}
#estrutura .container #car .seta img {
  width: 35px;
  height: auto;
  cursor: pointer;
}
#estrutura .container #car .seta .swiper-button-prev2 {
  transform: rotateZ(180deg);
}
#estrutura .container #car .swiper {
  width: 100%;
  border-radius: 9px 0 0 9px;
  overflow: hidden;
}
#estrutura .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
}
#estrutura .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 9px;
}

@media (max-width: 800px) {
  #estrutura {
    place-items: center;
  }
  #estrutura .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 2rem 0;
  }
  #estrutura .container .text {
    align-items: center;
    text-align: center;
  }
  #estrutura .container .text a {
    display: none;
  }
  #estrutura .container .text p {
    width: 100%;
  }
  #estrutura .container #car {
    width: 70vw;
  }
  #estrutura .container #car .swiper {
    order: 1;
  }
  #estrutura .container #car .btn {
    order: 2;
    display: grid;
  }
  #estrutura .container #car .seta {
    order: 3;
    justify-content: center;
  }
  #estrutura .container #car .seta img {
    width: 40px;
  }
}
#banner3 {
  background: url(../assets/img/banner3.webp);
  background-position: 50% 0%;
  position: relative;
  padding: 15% 0;
}
#banner3::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(70deg, rgba(172, 123, 63, 0.4), rgba(0, 33, 74, 0.9));
  opacity: 0.7;
  z-index: 1;
}
#banner3 .container {
  z-index: 2;
  place-items: center end;
}
#banner3 .container .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 1.5rem 0;
}
#banner3 .container .text h2 {
  width: 90%;
  color: #fff;
}
#banner3 .container .text p {
  font-weight: 300;
  color: #fff;
}
#banner3 .container .text button {
  color: #fff;
  border-color: #fff;
}
#banner3 .container .text button::after {
  background: #AC7B3F;
}
#banner3 .container .text button:hover {
  border-color: transparent;
  color: #fff;
}

@media (max-width: 800px) {
  #banner3 {
    background-position: 30% 50%;
    padding: 60% 0 15%;
  }
  #banner3::after {
    opacity: 0.7;
    background: linear-gradient(180deg, rgba(172, 123, 63, 0.2), rgba(0, 33, 74, 0.9));
  }
  #banner3 .container {
    width: 80%;
    place-items: center;
  }
  #banner3 .container .text {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #banner3 .container .text h2 {
    width: 100%;
  }
  #banner3 .container .text p {
    width: 100%;
  }
}
#pacients .container {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 1rem;
  background: #00214A;
  border-radius: 19px 19px 0 0;
  overflow: hidden;
}
#pacients .container .img {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  z-index: 2;
}
#pacients .container .img img {
  width: 100%;
  height: auto;
}
#pacients .container .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem 0;
  padding: 10% 0;
  position: relative;
}
#pacients .container .text::after {
  content: "";
  position: absolute;
  display: block;
  width: 120%;
  height: 15px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #AC7B3F, #F2E5CC, #AC7B3F);
  z-index: 1;
}
#pacients .container .text h2 {
  width: 80%;
  color: #fff;
}
#pacients .container .text p {
  width: 80%;
  color: #fff;
}

@media (max-width: 800px) {
  #pacients {
    place-items: center;
    padding: 15% 0;
  }
  #pacients .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    border-radius: 19px;
    gap: 0;
  }
  #pacients .container .text {
    align-items: center;
    width: 100%;
    gap: 2rem 0;
    padding: 15% 0;
  }
}
#equipe {
  background: #00214A;
}
#equipe .container {
  gap: 2rem 0;
}
#equipe .container .text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#equipe .container .text h2 {
  color: #fff;
}
#equipe .container .seta {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
}
#equipe .container .seta img {
  width: 35px;
  height: auto;
  cursor: pointer;
}
#equipe .container .seta .swiper-button-prev-equipe {
  transform: rotateZ(180deg);
}
#equipe .container #car {
  width: 80vw;
  height: 100%;
}
#equipe .container #car .swiper {
  width: 100%;
  height: 100%;
  border-radius: 19px;
  overflow: hidden;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  border-radius: 19px;
  overflow: hidden;
  background: #6791A0;
  position: relative;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  display: block;
  width: 120%;
  height: 15px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #AC7B3F, #F2E5CC, #AC7B3F);
  z-index: 1;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .img img {
  width: 100%;
  height: 100%;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0;
  padding: 10% 0;
  overflow: hidden;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont h3 {
  width: 70%;
  color: #fff;
  font-size: 20px;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
  width: 70%;
  font-size: 15px;
  color: #fff;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont .btn {
  width: 70%;
  padding: 5% 0 0;
}
#equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont .btn p {
  font-weight: 500;
}

@media (max-width: 800px) {
  #equipe {
    padding: 15% 0;
  }
  #equipe .container .text {
    order: 1;
    width: 100%;
  }
  #equipe .container #car {
    order: 2;
    width: 80vw;
  }
  #equipe .container #car .swiper .swiper-wrapper .swiper-slide {
    grid-template-columns: repeat(1, 1fr);
    place-items: start center;
  }
  #equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  #equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont p {
    font-size: 15px !important;
  }
  #equipe .container #car .swiper .swiper-wrapper .swiper-slide .cont .btn {
    display: grid;
    place-items: center;
  }
  #equipe .container .seta {
    order: 3;
    display: flex;
    justify-content: center;
  }
  #equipe .container .seta img {
    width: 45px;
  }
}
#insta {
  background: #F5F5F5;
}
#insta .container {
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
#insta .container .text {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.5rem 0;
}
#insta .container .text h2 {
  color: #00214A;
}
#insta .container .text p {
  font-size: 18px;
}
#insta .container #car {
  width: 80vw;
  display: grid;
  place-items: center;
  position: relative;
  gap: 2rem 0;
}
#insta .container #car .seta {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 0 1rem;
  z-index: 1;
}
#insta .container #car .seta img {
  width: 35px;
  height: auto;
  cursor: pointer;
}
#insta .container #car .seta .swiper-button-prev-insta {
  transform: rotateZ(180deg);
}
#insta .container #car .swiper {
  width: 100%;
  border-radius: 15px;
  z-index: 2;
  padding: 15px 5px;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
  gap: 1rem 0;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  padding: 15px 0;
  transition: all 0.5s ease;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  transform: scale(0.8);
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 80%;
  height: auto;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide .img {
  width: 100%;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide .logo {
  padding: 0 25% 0 0;
}
#insta .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(1);
}
#insta .container #car .btn {
  display: none;
  place-items: center;
}
#insta .container .btn {
  padding: 2% 0 0;
}

@media (max-width: 800px) {
  #insta .container {
    width: 80%;
    gap: 3rem 0;
  }
  #insta .container .text {
    width: 100%;
  }
  #insta .container .btn {
    display: none;
  }
  #insta .container #car {
    gap: 2rem 0;
  }
  #insta .container #car .swiper {
    order: 1;
    width: 100%;
  }
  #insta .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    transform: scale(1);
  }
  #insta .container #car .swiper .swiper-wrapper .swiper-slide.swiper-slide-next {
    transform: scale(0.8);
  }
  #insta .container #car .btn {
    order: 2;
    display: grid;
  }
  #insta .container #car .btn button {
    background: #6791A0;
  }
  #insta .container #car .seta {
    order: 3;
    justify-content: center;
    gap: 0 1rem;
  }
  #insta .container #car .seta img {
    width: 40px;
  }
}
#form {
  background: #00214A;
  position: relative;
}
#form::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 15px;
  bottom: 0;
  background: linear-gradient(90deg, #AC7B3F, #F2E5CC, #AC7B3F);
  z-index: 1;
}
#form .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  place-items: center;
  gap: 0 2rem;
  z-index: 2;
}
#form .container .cont-icon {
  width: 100%;
  display: grid;
  place-items: center start;
}
#form .container .cont-icon .cont {
  display: grid;
  place-items: center;
  gap: 1.5rem 0;
}
#form .container .cont-icon .cont .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#form .container .cont-icon .cont .title h2 {
  font-size: 18px;
  color: #fff;
}
#form .container .cont-icon .cont .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
#form .container .cont-icon .cont .icon img {
  width: 40px;
  height: auto;
  transition: all 0.5s ease;
}
#form .container .cont-icon .cont .icon img:hover {
  transform: scale(0.9);
}
#form .container .cont-form {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  gap: 2rem 0;
}
#form .container .cont-form .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#form .container .cont-form .text h2 {
  font-size: 22px;
  color: #fff;
}
#form .container .cont-form .text p {
  color: #fff;
}
#form .container .cont-form form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem 0;
}
#form .container .cont-form form .cont {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: 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%;
  height: 40px;
  overflow: hidden;
  outline: none;
  resize: none;
  background: #fff;
  color: #00214A;
  font-size: 13px;
  padding: 0 10px;
  border: none;
  border-radius: 5px;
}
#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: #00214A;
  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: #00214A;
  opacity: 0.8;
}
#form .container .cont-form form .cont textarea {
  padding: 3% 10px 0;
  height: 90px;
}
#form .container .cont-form form .cont select {
  padding: 0 5px;
  cursor: pointer;
}
#form .container .cont-form form .cont select option {
  color: #00214A;
}
#form .container .cont-form form .cont button {
  height: 35px;
  margin: 5% 0 0;
  border-color: #fff;
  color: #fff;
}
#form .container .cont-form form .cont button::after {
  background: #fff;
}
#form .container .cont-form form .cont button:hover {
  color: #00214A;
}
#form .container .cont-links {
  display: grid;
  place-items: center end;
  gap: 1rem 0;
}
#form .container .cont-links .title {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
#form .container .cont-links .title h2 {
  font-size: 18px;
  color: #fff;
}
#form .container .cont-links .links {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.5rem 0;
}
#form .container .cont-links .links a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
}
#form .container .cont-links .links a img {
  width: 20px;
  height: auto;
}
#form .container .cont-links .links a p {
  font-size: 13px;
  color: #fff;
}

@media (max-width: 800px) {
  #form {
    padding: 15% 0;
  }
  #form .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 0;
  }
  #form .container .cont-form {
    order: 1;
  }
  #form .container .cont-form form .cont button {
    background: #fff;
    color: #00214A;
  }
  #form .container .cont-icon {
    order: 2;
    place-items: center;
  }
  #form .container .cont-icon .icon {
    width: auto;
    justify-content: center;
  }
  #form .container .cont-links {
    order: 3;
    place-items: center;
  }
  #form .container .cont-links .title {
    align-items: center;
    text-align: center;
  }
  #form .container .cont-links .links {
    align-items: center;
    text-align: center;
  }
}
footer {
  background: #F5F5F5;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5% 0 1%;
  gap: 1.5rem 0;
}
footer .container {
  display: grid;
  place-items: center;
}
footer .container img {
  width: 20%;
  height: auto;
}
footer .copyrights {
  display: grid;
  place-items: center;
  text-align: center;
}
footer .copyrights .copy {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 0.45rem;
  opacity: 1;
  color: #000;
}
footer .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (max-width: 800px) {
  #footer-alignme .container {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem 0;
  }
  #footer-alignme .container .icon {
    order: 1;
    justify-content: center;
  }
  #footer-alignme .container .icon a svg {
    width: 35px;
  }
  #footer-alignme .container .btn {
    order: 2;
    place-items: center;
  }
  #footer-alignme .container .logo {
    order: 3;
  }
  footer {
    padding: 10% 0 2%;
    gap: 3rem 0;
  }
  footer .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem 0;
  }
  footer .container img {
    width: 80%;
    right: 0;
  }
}
#home-pg {
  padding: 10% 0;
}
#home-pg .container {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 1rem;
  border-radius: 19px 19px 0 0;
  overflow: hidden;
}
#home-pg .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 2rem 0;
  padding: 10% 0;
}
#home-pg .container .text .title {
  width: 90%;
}
#home-pg .container .text p {
  width: 90%;
}
#home-pg .container #car {
  width: 40vw;
  display: grid;
  place-items: center;
  gap: 1rem 0;
}
#home-pg .container #car .swiper {
  width: 80%;
}
#home-pg .container #car .swiper .swiper-wrapper .swiper-slide {
  display: grid;
  place-items: center;
}
#home-pg .container #car .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 9px;
}
#home-pg .container #car .pagination {
  width: 82%;
  display: grid;
  place-items: center;
}
#home-pg .container #car .pagination .swiper-pagination-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 0.2rem;
}
#home-pg .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet {
  height: 60px;
  width: 20%;
  border-radius: 5px;
  opacity: 1;
}
#home-pg .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(1) {
  background: url(../assets/img/sobre1.webp);
}
#home-pg .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(2) {
  background: url(../assets/img/sobre2.webp);
}
#home-pg .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(3) {
  background: url(../assets/img/sobre3.webp);
}
#home-pg .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(4) {
  background: url(../assets/img/sobre4.webp);
}
#home-pg .container #car .pagination .swiper-pagination-img .swiper-pagination-bullet:nth-child(5) {
  background: url(../assets/img/sobre5.webp);
}

@media (max-width: 800px) {
  #home-pg {
    place-items: center;
    padding: 15% 0 5%;
  }
  #home-pg .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 1rem 0;
  }
  #home-pg .container .text {
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 2rem 0;
    padding: 10% 0 15%;
  }
  #home-pg .container .text .btn button {
    color: #00214A;
    background: #fff;
  }
  #home-pg .container #car {
    width: 80vw;
  }
  #home-pg .container #car .swiper {
    width: 100%;
  }
  #home-pg .container #car .pagination {
    width: 100%;
  }
}
#sobre-pg {
  padding: 0 0 5%;
}
#sobre-pg .container {
  width: 80%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center;
  gap: 0 1rem;
}
#sobre-pg .container .img {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center start;
}
#sobre-pg .container .img .title {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem 0;
}
#sobre-pg .container .img img {
  width: 90%;
  height: 100%;
  border-radius: 19px;
}
#sobre-pg .container .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  text-align: start;
  gap: 2rem 0;
}
#sobre-pg .container .text .title {
  width: 90%;
}
#sobre-pg .container .text p {
  width: 90%;
}

@media (max-width: 800px) {
  #sobre-pg {
    place-items: center;
    padding: 20% 0 10%;
  }
  #sobre-pg .container {
    width: 80%;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    gap: 3rem 0;
  }
  #sobre-pg .container .img {
    place-items: center;
    gap: 2rem 0;
  }
  #sobre-pg .container .img .title {
    display: flex;
  }
  #sobre-pg .container .img img {
    width: 100%;
  }
  #sobre-pg .container .text {
    align-items: center;
    text-align: center;
    order: 1;
    width: 100%;
    gap: 2rem 0;
  }
  #sobre-pg .container .text .title {
    display: none;
  }
  #sobre-pg .container .text p {
    width: 100%;
  }
  #sobre-pg .container .text .btn button {
    color: #00214A;
    background: #fff;
  }
}/*# sourceMappingURL=style.css.map */