@font-face {
  font-family: "sagoe";
  src: url("../assets/font/normal.ttf");
}
@media (min-width: 800px) {
  #car {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "sagoe";
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
}

h1 {
  font-size: 30px;
  font-weight: 600;
}

.Tx-1 {
  color: #009540;
}

.Tx-2 {
  color: #AEC90B;
}

p {
  font-size: 18px;
}

section {
  padding: 5% 10%;
  display: flex;
  margin: 0;
  position: relative;
}

button {
  font-weight: 500;
  width: 164px;
  height: 41px;
  border-radius: 20px;
  border: none;
  transition: all 0.75s ease;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}
button:hover {
  transform: translateY(-10px);
  background-color: #E9E9E9;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1843137255);
  color: #009540;
}

@media (max-width: 800px) {
  button {
    width: 174px;
    height: 43px;
  }
}
h5 {
  font-size: 16px;
}

h2 {
  color: #009540;
  font-size: 20px;
  font-weight: 800;
}

.but1 {
  background-color: #009540;
  color: #ffffff;
}

.but2 {
  background-color: #ffffff;
}
.but2 a {
  color: #AEC90B;
}

#home {
  background: url(../assets/IMAGENS/home.jpg);
  position: relative;
  background-size: cover;
  flex-direction: column;
  height: 110vh;
  align-items: flex-start;
  justify-content: center;
  padding: 5% 10%;
}
#home header {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 8%;
}
#home header .logo img {
  width: 130px;
}
#home header button {
  display: grid;
  place-items: center end;
  background: transparent;
  cursor: pointer;
  position: fixed;
  z-index: 999;
  left: 89%;
  margin: 0;
  top: 8%;
  transition: none;
  width: 10px;
}
#home header button:hover {
  transform: none;
  box-shadow: none;
}
#home header button svg {
  width: 1.8rem;
  height: 1.8rem;
}
#home #sidebar__nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(112, 112, 112, 0.7);
  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: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2.5rem 0;
  right: -30%;
  top: 0;
  bottom: 0;
  background: #009540;
  transition: all 0.2s ease;
}
#home #sidebar__nav ul li a {
  display: block;
  width: 105px;
  text-align: start;
  font-size: 1.2rem;
  color: #ffffff;
}
#home #sidebar__nav ul #close__btn {
  position: absolute;
  width: 10px;
  top: 0;
  left: 4%;
  background: transparent;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
}
#home #sidebar__nav ul #close__btn:hover {
  transform: none;
  background-color: none;
  box-shadow: none;
  color: #009540;
}
#home #sidebar__nav ul #close__btn svg {
  width: 1rem;
  height: 1rem;
}
#home .cont {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 10%;
}
#home .cont .hb button {
  margin: 5% 0 10%;
}
#home .cont .icon {
  display: flex;
  flex-direction: row;
  text-align: center;
}
#home .cont .icon svg {
  margin: 0 3%;
  transition: all 0.3s ease-in;
}
#home .cont .icon svg:hover {
  transform: scale(0.8);
}
#home .cont .icon svg {
  width: 100%;
  margin: 0 25px 0 0;
}

@media (min-width: 800px) {
  #home .cont .hb .Tx-1-mob {
    display: none;
  }
}
@media (max-width: 800px) {
  #home {
    background: url(../assets/IMAGENS/home-mobile.jpg);
    background-size: cover;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    background-repeat: no-repeat;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0;
  }
  #home h1 {
    color: #009540;
    font-size: 26px;
  }
  #home header {
    top: 2%;
    left: 10%;
  }
  #home header .logo img {
    width: 100px;
  }
  #home .cont {
    width: 90%;
    margin-top: 20%;
    margin-bottom: 50%;
  }
  #home .cont .hb {
    width: 100%;
  }
  #home .cont .hb .Tx-1 {
    display: none;
  }
  #home .cont .hb h1 {
    font-size: 26px;
  }
  #home .cont .hb button {
    display: none;
  }
  #home .cont .icon {
    margin-bottom: -90%;
    margin-top: 140%;
    padding-left: 10%;
    padding-top: 35%;
  }
  #home .cont .icon a {
    padding-left: 12%;
  }
  #home .cont .icon a svg {
    height: 78%;
  }
  #home header {
    left: 0;
    padding-left: 5%;
  }
  #home header button {
    display: grid;
    place-items: center end;
    background: transparent;
    cursor: pointer;
    left: 88%;
    top: 1%;
    position: fixed;
    z-index: 999;
  }
  #home header button svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  #home #sidebar__nav ul {
    position: absolute;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2.5rem 0;
    right: -80%;
    top: 0;
    bottom: 0;
    background: #009540;
    transition: all 0.2s ease;
  }
  #home #sidebar__nav ul #close__btn {
    position: absolute;
    top: 0%;
    left: 5%;
    background: transparent;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
  }
  #home #sidebar__nav ul #close__btn svg {
    width: 15px;
  }
}
#sobre-nos {
  padding: 5% 0 5% 10%;
}
#sobre-nos .cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin-right: 17%;
}
#sobre-nos .cont h2 {
  margin-bottom: 5%;
}
#sobre-nos .cont p {
  font-size: 16px;
  color: #707070;
}
#sobre-nos .img {
  display: flex;
  flex-direction: row;
  width: 50%;
}
#sobre-nos .img img {
  width: 50%;
  margin: 0 3%;
}

@media (max-width: 800px) {
  #sobre-nos {
    display: block;
    padding: 5% 10%;
  }
  #sobre-nos .cont {
    width: 100%;
  }
  #sobre-nos .cont h2 {
    text-align: center;
    margin-bottom: 10%;
    font-size: 23px;
  }
  #sobre-nos .img {
    width: 100%;
  }
  #sobre-nos .img img {
    width: 80%;
    margin: 15% 10%;
  }
  #sobre-nos .img2 {
    display: none;
  }
}
.odont {
  margin: 0 8%;
  border-radius: 24px;
  padding: 5% 14%;
  background-color: #95D6AF;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.odont h2 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 2%;
}
.odont p {
  color: #003617;
}

@media (max-width: 800px) {
  .odont {
    padding: 15% 10%;
  }
  .odont h2 {
    margin-bottom: 10%;
  }
  .odont p {
    font-size: 16px;
  }
}
#trat {
  display: flex;
  flex-direction: column;
  margin: 0;
  align-items: center;
}
#trat button {
  margin-top: 34%;
}
#trat .text {
  text-align: center;
  margin: 0 12%;
}
#trat .text h2 {
  font-weight: 800;
}
#trat .text p {
  margin: 2% 0 5%;
}
#trat .cont {
  display: grid;
  display: inline-grid;
  justify-content: center;
  width: 100%;
}
#trat .cont .trat1, #trat .cont .trat2, #trat .cont .trat3 {
  grid-row-start: 1;
  grid-row-end: 3;
}
#trat .cont .trat-cont {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 3% 0;
  cursor: pointer;
}
#trat .cont .trat-cont .proc {
  border-radius: 0 20px 20px 0;
  background-color: #EFEFEF;
  width: 100%;
  height: 137px;
  padding: 5% 6%;
  margin-right: 3%;
}
#trat .cont .trat-cont img {
  width: 122px;
  height: 137px;
  margin-left: 3%;
}
#trat .cont .trat-cont h5 {
  color: #009540;
}
#trat .cont .trat-cont p {
  font-size: 11px;
  margin: 5% 0;
}
#trat .cont .trat-cont .p {
  font-size: 12px;
  color: #AEC90B;
}

@media (max-width: 800px) {
  #trat .cont {
    display: none !important;
  }
  #trat .text {
    margin: 0;
    padding-bottom: 8%;
  }
  #trat .text h2 {
    margin: 15% 5% 8%;
    font-size: 23px;
  }
  #trat .text p {
    font-size: 17.5px;
  }
  #trat button {
    display: none;
  }
  #car .mySwiper {
    width: 350px;
    padding-bottom: 10%;
  }
  #car .mySwiper .swiper-wrapper .swiper-slide {
    border-radius: 30px;
    padding-bottom: 20%;
    text-align: center;
    margin-bottom: 50%;
  }
  #car .mySwiper .swiper-wrapper .swiper-slide .trat-cont {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 5% 0;
  }
  #car .mySwiper .swiper-wrapper .swiper-slide .trat-cont .proc {
    border-radius: 0 20px 20px 0;
    background-color: #EFEFEF;
    width: 100%;
    height: 137px;
    padding: 5% 6%;
    margin-right: 3%;
  }
  #car .mySwiper .swiper-wrapper .swiper-slide .trat-cont img {
    width: 122px;
    height: 137px;
    margin-left: 3%;
  }
  #car .mySwiper .swiper-wrapper .swiper-slide .trat-cont h5 {
    color: #009540;
  }
  #car .mySwiper .swiper-wrapper .swiper-slide .trat-cont p {
    font-size: 11px;
    margin: 5% 0;
  }
  #car .mySwiper .swiper-wrapper .swiper-slide .trat-cont .p {
    color: #AEC90B;
    font-size: 12px;
  }
  #car .mySwiper .swiper-button-prev, #car .mySwiper .swiper-button-next {
    width: 35%;
    height: 25%;
    top: 72%;
  }
  #car .mySwiper .swiper-button-prev {
    left: 18%;
  }
  #car .mySwiper .swiper-button-next {
    right: 18%;
  }
}
.sorriso1 {
  width: 100%;
  padding: 0;
}
.sorriso1 .cont1 {
  display: flex;
  flex-direction: row;
}
.sorriso1 .text {
  width: 50%;
  height: 100%;
  padding: 5% 9% 5% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #95D6AF;
}
.sorriso1 .text h2 {
  font-size: 24px;
  margin: 0 15% 5% 0;
  color: #000000;
}
.sorriso1 .img {
  width: 50%;
  height: 100%;
}
.sorriso1 .img img {
  width: 110%;
  height: 100%;
}

@media (min-width: 800px) {
  .cont2 {
    display: none;
  }
}
@media (max-width: 800px) {
  .sorriso1 .cont1 {
    display: none;
  }
  .sorriso1 .cont2 {
    display: flex;
    flex-direction: column;
  }
  .sorriso1 .cont2 .text, .sorriso1 .cont2 .img {
    width: 100%;
  }
  .sorriso1 .cont2 img {
    width: 100%;
    height: 100%;
  }
  .sorriso1 .cont2 .text {
    text-align: center;
    margin-top: -2%;
    padding: 20% 10%;
  }
  .sorriso1 .cont2 .text h2 {
    margin: 0 0 5%;
  }
}
.trat2 {
  display: flex;
  flex-direction: column;
  margin: 0;
  align-items: center;
}
.trat2 button {
  margin-top: 20%;
}
.trat2 .text {
  text-align: center;
  margin: 0 10%;
}
.trat2 .text h2 {
  font-weight: 800;
}
.trat2 .text p {
  margin: 2% 0 5%;
}
.trat2 .cont {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
.trat2 .cont .trat-cont {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 3% 2%;
  background-color: #EFEFEF;
  border-radius: 20px;
  cursor: pointer;
}
.trat2 .cont .trat-cont .proc {
  width: 100%;
  padding: 10% 8%;
  margin-right: 3%;
}
.trat2 .cont .trat-cont img {
  width: 100%;
}
.trat2 .cont .trat-cont h5 {
  color: #009540;
}
.trat2 .cont .trat-cont p {
  font-size: 11px;
  margin: 5% 0;
}
.trat2 .cont .trat-cont .p {
  font-size: 12px;
  color: #AEC90B;
}

@media (max-width: 800px) {
  .trat2 .cont {
    display: none;
  }
  .trat2 button {
    margin-bottom: 20%;
    margin-top: -20%;
    padding: 10px 0 15px;
  }
  .trat2 .text {
    padding-top: 15%;
    margin: 0;
  }
  .trat2 .text p {
    margin: 8% 0 10%;
  }
  #car .mySwiper2 {
    width: 350px;
    padding: 0;
  }
  #car .mySwiper2 .swiper-wrapper .swiper-slide {
    border-radius: 30px;
    padding-bottom: 20%;
    text-align: center;
    margin-bottom: 40%;
  }
  #car .mySwiper2 .swiper-wrapper .swiper-slide .trat-cont {
    background-color: #EFEFEF;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 5% 0;
    text-align: start;
    border-radius: 30px;
    padding-bottom: 10%;
  }
  #car .mySwiper2 .swiper-wrapper .swiper-slide .trat-cont .proc {
    width: 100%;
    height: 137px;
    padding: 8%;
    margin-right: 3%;
  }
  #car .mySwiper2 .swiper-wrapper .swiper-slide .trat-cont img {
    width: 100%;
  }
  #car .mySwiper2 .swiper-wrapper .swiper-slide .trat-cont h5 {
    color: #009540;
  }
  #car .mySwiper2 .swiper-wrapper .swiper-slide .trat-cont p {
    font-size: 12px;
    margin: 5% 5% 5% 0;
  }
  #car .mySwiper2 .swiper-wrapper .swiper-slide .trat-cont .p {
    font-size: 12px;
    color: #AEC90B;
  }
  #car .mySwiper2 .swiper-button-prev, #car .mySwiper2 .swiper-button-next {
    width: 35%;
    height: 25%;
    top: 72%;
  }
  #car .mySwiper2 .swiper-button-prev {
    margin-left: 15%;
  }
  #car .mySwiper2 .swiper-button-next {
    margin-right: 15%;
  }
}
.sorriso2 {
  background: url(../assets/IMAGENS/Ativo\ 1.png);
  margin: 0 8%;
  border-radius: 20px;
}
.sorriso2 h2 {
  color: #000000;
  font-size: 24px;
  margin-top: 5%;
  margin-right: 15%;
}
.sorriso2 p {
  margin: 5% 0 6%;
}
.sorriso2 .text {
  width: 47%;
}

@media (max-width: 800px) {
  .sorriso2 {
    background: url(../assets/IMAGENS/Ativo\ 2.png);
    margin: 0 10%;
    height: 100vh;
    text-align: center;
    padding: 5%;
  }
  .sorriso2 h2 {
    margin: 8% 0;
  }
  .sorriso2 p {
    width: 100%;
    font-size: 16px;
    margin: 8% 0 10%;
  }
  .sorriso2 .text {
    width: 100%;
  }
}
.drs {
  display: flex;
  flex-direction: column;
  margin: 0;
  align-items: center;
  justify-content: center;
}
.drs button {
  margin-top: 5%;
}
.drs .text {
  text-align: center;
  margin: 0 10%;
}
.drs .text h2 {
  font-weight: 800;
}
.drs .text p {
  margin: 2% 0 5%;
}
.drs .cont {
  display: grid;
  justify-content: center;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 15px;
}
.drs .cont .trat-cont {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  margin: 3% 2%;
  background-color: #EFEFEF;
  border-radius: 20px;
}
.drs .cont .trat-cont img {
  width: 100%;
}
.drs .cont .trat-cont h4 {
  font-size: 12px;
  margin-top: 12%;
}
.drs .cont .trat-cont p {
  font-size: 12px;
  margin: 6% 0 12%;
}

@media (max-width: 800px) {
  .drs {
    padding: 10%;
  }
  .drs .text {
    margin: 0;
    padding: 10% 0 8%;
  }
  .drs .cont {
    display: none;
  }
  .drs #car .mySwiper-drs {
    width: 250px;
    padding-bottom: 10%;
  }
  .drs #car .mySwiper-drs .swiper-wrapper .swiper-slide {
    background-color: #EFEFEF;
    border-radius: 30px;
    padding-bottom: 20%;
    text-align: center;
    margin-bottom: 50%;
  }
  .drs #car .mySwiper-drs .swiper-wrapper .swiper-slide h4 {
    margin-top: 10%;
    color: #003617;
  }
  .drs #car .mySwiper-drs .swiper-wrapper .swiper-slide img {
    width: 100%;
  }
  .drs #car .mySwiper-drs .swiper-button-prev, .drs #car .mySwiper-drs .swiper-button-next {
    width: 50%;
    height: 25%;
    top: 80%;
  }
}
#dep {
  background-color: #EFEFEF;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#dep h2 {
  margin-bottom: 1%;
}
#dep .dep-cont {
  padding-top: 5%;
  display: flex;
  flex-direction: row;
}
#dep .dep-cont .cont {
  background-color: #95D6AF;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 3% 1%;
  border-radius: 20px;
  padding: 3% 4%;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.168627451);
}
#dep .dep-cont .cont h4 {
  font-size: 17px;
}
#dep .dep-cont .cont p {
  font-size: 13px;
  color: #ffffff;
  margin-top: 5%;
}

@media (max-width: 800px) {
  #dep {
    padding: 18% 10%;
    text-align: center;
  }
  #dep .dep-cont {
    display: none;
  }
  #dep .text {
    margin: 0;
    padding: 10% 0 8%;
  }
  #dep p {
    padding: 5% 0 10%;
  }
  #dep .cont {
    display: none;
  }
  #dep #car .mySwiper4 {
    width: 350px;
    padding-bottom: 40%;
  }
  #dep #car .mySwiper4 .swiper-wrapper {
    margin-bottom: 10%;
  }
  #dep #car .mySwiper4 .swiper-wrapper .swiper-slide .cont {
    background-color: #95D6AF;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 3% 1%;
    border-radius: 20px;
    padding: 10%;
    height: 210px;
    text-align: start;
  }
  #dep #car .mySwiper4 .swiper-wrapper .swiper-slide .cont h4 {
    font-size: 17px;
  }
  #dep #car .mySwiper4 .swiper-wrapper .swiper-slide .cont p {
    font-size: 13px;
    color: #ffffff;
    margin-top: 5%;
  }
  #dep #car .mySwiper4 .swiper-button-prev, #dep #car .mySwiper4 .swiper-button-next {
    width: 35%;
    height: 35%;
    top: 75%;
  }
  #dep #car .mySwiper4 .swiper-button-prev {
    left: 17%;
  }
  #dep #car .mySwiper4 .swiper-button-next {
    right: 17%;
  }
}
.nov {
  display: flex;
  flex-direction: row;
  padding: 5% 0 5% 14%;
}
.nov .imgs {
  display: grid;
  display: inline-grid;
  padding: 0 5% 0 10%;
}
.nov .imgs img {
  width: 100%;
  padding: 5%;
}
.nov .imgs .img1, .nov .imgs .img2 {
  grid-row-start: 1;
  grid-row-end: 3;
}
.nov .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin-right: 30%;
}
.nov .text h2 {
  font-weight: 800;
  margin-right: 35%;
}
.nov .text p {
  color: #262626;
  font-size: 14px;
  margin: 8% 0;
}

@media (max-width: 800px) {
  .nov {
    display: none;
  }
}
#contact {
  display: flex;
  flex-direction: row;
  background-color: #009540;
}
#contact h3, #contact h5, #contact h4 {
  color: #ffffff;
}
#contact h4 {
  font-size: 18px;
  margin-bottom: 3%;
}
#contact h3 {
  font-size: 22px;
}
#contact p {
  color: rgba(255, 255, 255, 0.7254901961);
  font-size: 14px;
}
#contact .form {
  background-color: #009540;
  width: 70%;
  padding: 4% 10%;
}
#contact .form input {
  border-radius: 22px;
  width: 60%;
  padding: 2.5% 2% 2.5% 6%;
  border: 0;
  margin: 2% 0;
}
#contact .form button {
  width: 102px;
  height: 33px;
  background-color: #AEC90B;
  margin: 2% 0;
  transition: all 0.75s ease;
  color: #ffffff;
  font-weight: 500;
}
#contact .form button:hover {
  transform: translateY(-10px);
  background-color: #E9E9E9;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.0901960784);
  color: #009540;
}
#contact .form p {
  margin: 2% 40% 5% 0;
}
#contact .cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 28%;
}
#contact .cont .endereco, #contact .cont .tel {
  width: 100% !important;
  display: flex;
  flex-direction: row;
  margin: 2% 0;
}
#contact .cont .endereco h5, #contact .cont .tel h5 {
  display: flex;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7254901961);
}
#contact .cont .endereco h5 strong, #contact .cont .tel h5 strong {
  color: #ffffff;
  font-size: 14px;
}
#contact .cont .endereco h5 {
  display: inline;
  gap: 2%;
}
#contact .cont .icon {
  margin-top: 3%;
  margin-left: -3%;
}
#contact .cont .icon svg {
  margin: 0 3%;
  transition: all 0.3s ease-in;
}
#contact .cont .icon svg:hover {
  transform: scale(0.8);
}
#contact .cont .icon svg {
  margin: 3%;
}

@media (max-width: 800px) {
  #contact {
    flex-direction: column;
    text-align: center;
  }
  #contact .form {
    width: 100%;
    padding: 0;
  }
  #contact .form input {
    width: 100%;
    padding: 6% 5% 6% 8%;
    margin: 3% 0;
  }
  #contact .form p {
    margin: 2% 2% 15%;
  }
  #contact .form h3 {
    margin: 20% 15% 6%;
  }
  #contact .form button {
    width: 110px;
    height: 40px;
    border-radius: 17px;
    margin: 10% 0;
  }
  #contact .cont {
    width: 100%;
  }
  #contact .cont .endereco {
    padding: 0 5%;
  }
  #contact .cont .tel {
    margin-left: 10%;
    padding: 0;
  }
  #contact .cont .icon svg {
    height: 50px;
  }
}
footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 0 0.8rem 0;
  background: #E9E9E9;
}
footer .container {
  display: grid;
  place-items: center;
  gap: 3rem 0;
}
footer .container img {
  width: 50%;
}
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: rgba(0, 0, 0, 0.45);
}
footer .container .copyrights .copy svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media screen and (max-width: 64rem) {
  footer .container img {
    width: 60%;
  }
}
@media (min-width: 800px) {
  .nov-mob {
    display: none;
  }
}
@media (max-width: 800px) {
  .nov-mob {
    display: flex;
    flex-direction: column;
    padding: 5% 0;
    align-items: center;
  }
  .nov-mob .imgs {
    display: grid;
    display: inline-grid;
    padding: 0 5%;
  }
  .nov-mob .imgs img {
    width: 100%;
    padding: 5%;
  }
  .nov-mob .imgs .img1, .nov-mob .imgs .img2 {
    grid-row-start: 1;
    grid-row-end: 3;
  }
  .nov-mob .text {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 10% 10% 5%;
  }
  .nov-mob .text p {
    color: #262626;
    font-size: 14px;
    margin: 8% 5%;
  }
  .nov-mob button {
    margin: 30% 0;
  }
}
#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: #EFEFEF;
  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;
}
#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: -10%;
  margin-right: 2%;
}
#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 {
  color: #009540;
}
#modal_container .modal .text p {
  padding: 10% 0;
  color: #707070;
}

@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%;
  }
}/*# sourceMappingURL=styles.css.map */