@font-face {
  font-family: "Sephir";
  src: url("../fonts/sephir-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.hero-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-text h1 {
  font-size: 3.5rem;
  line-height: 3.4rem;
  margin-bottom: 1rem;
}
.hero-text h2 {
  font-size: 1.8rem;
  line-height: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
.hero-text a {
  font-size: 1.2rem;
}

.hero-img {
  flex: 1;
  padding: 4rem 0;
  text-align: end;
}
.hero-img img {
  max-width: 40dvw;
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .container {
  padding-top: 1.4rem;
  justify-content: space-between;
}
footer .container div {
  flex: 1;
  padding-left: 1rem;
}
footer .container div h2 {
  color: #E7E7E6;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
footer .container .link-footer {
  display: flex;
  position: relative;
  color: #E7E7E6;
  gap: 0.3rem;
  align-items: baseline;
  font-size: 1.2rem;
}
footer .container .link-footer::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #E7E7E6;
  transition: width 0.3s ease-in-out;
}
footer .container .link-footer:hover::after {
  width: 150px;
}
footer .container .atende p {
  color: #E7E7E6;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.footer-logo {
  max-width: 100%;
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.link-nav {
  display: flex;
  position: relative;
  color: #E7E7E6;
  gap: 0.3rem;
  align-items: baseline;
  font-size: 1.2rem;
  padding: 0.3rem 1rem;
}
.link-nav p {
  margin: 0;
}
.link-nav::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 1rem;
  width: 0;
  height: 1px;
  background-color: #E7E7E6;
  transition: width 0.3s ease-in-out;
}
.link-nav:hover::after {
  width: 150px;
}

.online-alert {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgb(132, 81, 86);
  color: #E7E7E6;
  padding: 0.5rem 0;
  text-align: center;
}
.online-alert p {
  margin: 0;
}

section {
  padding-bottom: 1rem;
}

.section {
  padding: 2rem;
  gap: 2rem;
}

.section-title {
  color: rgb(132, 81, 86);
  padding-top: 2rem;
  text-align: center;
  font-size: 2.7rem;
  line-height: 2.5rem;
  margin: 1rem;
}

.section-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-img img {
  max-width: 35dvw;
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-text p {
  font-size: 1.1rem;
  color: rgb(132, 81, 86);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background-color: #E7E7E6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: rgb(132, 81, 86);
  padding: 1.5rem;
  gap: 0.7rem;
  border-radius: 0.2rem;
  border: solid 1px #ce7780;
  transition: all 0.3s ease-in-out;
}
.card.item:hover {
  /* move 10px right and up, leaving hard shadow on place */
  transform: translate(10px, -10px);
  box-shadow: -10px 10px 10px rgba(206, 119, 128, 0.5);
}
.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.card p {
  font-size: 1rem;
}
.card .card-img {
  max-width: 100%;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-container {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-center {
  margin: 0 auto;
}

.subtitle {
  color: rgb(132, 81, 86);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: -0.8rem;
  margin-bottom: 1.5rem;
}

.warning-text {
  font-size: 1.2rem !important;
  margin: 2rem auto;
  padding: 1rem;
  border: solid 2px #ce7780;
  border-radius: 0.2rem;
  letter-spacing: 0.1rem;
}

.accordion-title i {
  float: left;
  padding-right: 1rem;
}

.accordion-title {
  color: rgb(132, 81, 86);
  margin: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-title h3 {
  font-size: 1.2rem;
  font-weight: 600 !important;
}

.accordion-item {
  background-color: #E7E7E6;
  padding: 0.4rem 1rem;
  margin-bottom: 1rem;
}

.accordion-content {
  padding-left: 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.accordion-title i {
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-title i {
  margin-top: 10px;
  transform: rotate(90deg);
}

/* Contato */
.contato {
  display: flex;
  gap: 1rem;
}
.contato .redes {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
}
.contato .redes .atende h3 {
  color: rgb(132, 81, 86);
  margin: 1rem 0 0.5rem;
}
.contato .redes .atende p {
  color: rgb(132, 81, 86);
  margin: 0;
}
.contato .redes a {
  display: flex;
  position: relative;
  color: rgb(132, 81, 86);
  gap: 0.3rem;
  align-items: baseline;
  font-size: 1.3rem;
}
.contato .redes a::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgb(132, 81, 86);
  transition: width 0.3s ease-in-out;
}
.contato .redes a:hover::after {
  width: 120px;
}
.contato .form {
  flex: 1;
  width: 100%;
  display: flex;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
form .form-group label {
  font-size: 1.1rem;
  color: rgb(132, 81, 86);
  margin-bottom: 0;
}
form .form-group input, form .form-group textarea {
  padding: 0.5rem;
  border: solid 1px rgb(132, 81, 86);
  background-color: #E7E7E6;
  border-radius: 0.2rem;
  font-size: 1rem;
  color: rgb(132, 81, 86);
}
form .form-group input:focus, form .form-group textarea:focus {
  outline-color: #ce7780;
  background-color: rgba(255, 255, 255, 0.6);
  outline-width: 1px;
}
form .form-group textarea {
  resize: none;
  height: 150px;
}

.carousel {
  position: relative;
  margin: auto;
  width: 100%;
  overflow: hidden;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  padding: 0 10px;
}

.cards-carousel {
  display: flex;
  padding: 10px;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 1;
}
.cards-carousel .card {
  z-index: 1;
  min-width: 230px;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #E7E7E6;
}
.cards-carousel .card .card-bottom {
  margin: 0;
  padding: 0;
  text-align: left;
}
.cards-carousel .card .card-bottom p {
  margin: 0;
  font-weight: 500;
}
.cards-carousel .card .card-bottom .stars {
  color: #FFD500 !important;
}
.cards-carousel .card .card-bottom .stars .fa-star {
  outline-color: #ce7780;
  outline-width: 1px;
}

.prev-button, .next-button {
  position: absolute;
  top: 50%;
  color: #ce7780;
  transform: translateY(-50%);
  font-size: 1.5rem;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.prev-button {
  left: 0;
}

.next-button {
  right: 0;
}

.spacer {
  height: 50px;
}

.copyright {
  background-color: #ce7780;
  color: #E7E7E6;
  border-top: solid 1px #E7E7E6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.3rem 0 0.1rem;
  gap: 1rem;
}
.copyright p {
  margin: 0;
}
.copyright p a {
  color: #E7E7E6;
  text-decoration: underline;
}
.copyright p a:hover {
  font-weight: 500;
}

/* normalize */
*, *:before, *:after, html, body, div, span, applet, object, iframe, footer {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*, html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* primary font - montserrat */
/* secondary font sephir on fonts folder (otf) */
body {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  width: 100%;
  line-height: 1.2;
  color: #2C2C2B;
  background-color: #E7E7E6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.whatsapp-icon {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 999;
}
.whatsapp-icon img {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease-in-out;
}
.whatsapp-icon:hover img {
  transform: scale(1.2);
}

nav {
  margin: 2rem;
  align-items: center;
}
nav img {
  max-width: 100%;
  max-height: 70px;
}
nav ul {
  margin-right: 1rem;
}

section {
  position: relative;
}

.abs {
  position: absolute;
}

img.abs {
  max-width: 40dvw;
  max-height: 100%;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.z-0 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.font-sephir {
  font-family: "Sephir", sans-serif;
}

a {
  text-decoration: none;
  color: #2C2C2B;
}

.bold {
  font-weight: 700;
}

.semibold {
  font-weight: 600;
}

.opacity-0 {
  opacity: 0;
}

.text-shadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
}

ul {
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

nav.container {
  padding: 0.7rem;
}

.text-center {
  text-align: center;
}

.text-xl {
  font-size: 1.3rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 2.8rem !important;
}

.line-0 {
  line-height: 0.8 !important;
}

.line-1 {
  line-height: 0.9 !important;
}

.block {
  display: block;
}

@media screen and (max-width: 768px) {
  .sm-none {
    display: none;
  }
}

.py-1 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pb-1 {
  padding-bottom: 0.75rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.px-3xl {
  padding-left: 4rem;
  padding-right: 4rem;
}

.pt-2 {
  padding-top: 2rem;
}

.mt-8 {
  margin-top: 5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.pl-2 {
  padding-left: 2rem;
}

.flex {
  display: flex;
}

.gap-2 {
  gap: 2rem;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

p {
  margin-bottom: 1rem;
}

.flex-column {
  flex-direction: column;
}

.flex-1 {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.bg-light {
  background-color: #E7E7E6;
}

.text-light {
  color: #E7E7E6;
}

.bg-secondary {
  background-color: #DECBC4;
}

.text-secondary {
  color: rgb(132, 81, 86);
}

.bg-accent {
  background-color: #C5B2AB;
}

.text-accent {
  color: #C5B2AB;
}

.bg-primary {
  background-color: #ce7780;
}

.text-primary {
  color: #ce7780;
}

.link-btn {
  position: relative;
  margin-top: 1rem;
  align-self: flex-start;
  background-color: #E7E7E6;
  color: rgb(132, 81, 86);
  padding: 0.7rem 1.5rem;
  border: solid 1px rgb(132, 81, 86);
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  font-size: 1rem;
}
.link-btn:hover {
  background-color: rgb(132, 81, 86);
  color: #E7E7E6;
}

.mobile-nav {
  display: none;
}

.none {
  display: none !important;
}

.msg-success {
  background: #d4edda;
}
.msg-success p {
  color: #155724 !important;
}

.msg-error {
  background: #f8d7da;
}
.msg-error p {
  color: #721c24 !important;
}

.msg {
  max-width: 50rem;
  margin: 10px 0;
  padding: 1rem 0;
}
.msg p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  padding: 0 1rem !important;
  line-height: 1.2rem;
  color: #2C2C2B !important;
}

.chat-box {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  z-index: 9999;
}

.chat-box.active {
  display: block;
}

.chat-box-header {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-box-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.chat-box-header h2 {
  font-size: 20px;
}

.chat-box-header p {
  font-size: 16px;
}

.chat-box-body p {
  font-size: 16px;
}

.chat-box-input {
  width: 100%;
  height: 40px;
  margin-bottom: 16px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.chat-box-btn {
  width: 100%;
  height: 40px;
  margin-bottom: 16px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #ce7780;
  color: #E7E7E6;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.chat-box-btn:hover {
  background-color: rgb(132, 81, 86);
  color: #E7E7E6;
}

.close-btn {
  align-self: flex-start;
  justify-self: self-end;
  color: #aaa;
  font-size: 1.2rem;
  cursor: pointer;
}
.close-btn:hover {
  color: rgb(132, 81, 86);
}

/* max width 928 */
@media (max-width: 928px) {
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .hero-text h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .hero-text .link-btn {
    font-size: 1rem;
  }
  .link-btn {
    font-size: 1rem;
    margin: 0 auto;
  }
  .section-title {
    font-size: 2rem;
    line-height: 2rem;
  }
  .warning-text {
    font-size: 1rem !important;
    letter-spacing: normal;
  }
}
/* max width 768 */
@media (max-width: 768px) {
  .to-reverse-md {
    flex-direction: column-reverse;
  }
  .to-column-md {
    flex-direction: column;
  }
  .hero-text {
    padding-top: 2rem;
    min-height: 80dvh;
  }
  .hero-text h1 {
    font-size: 2rem;
    line-height: 2rem;
  }
  .hero-text h2 {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  .hero-img {
    display: none;
  }
  nav ul {
    display: none;
  }
  nav img {
    max-height: 55px;
    max-width: 50dvw;
  }
  .redes {
    display: none !important;
  }
  .mobile-nav {
    display: flex;
  }
  .mobile-nav .link {
    font-size: 1.5rem;
    display: block;
    padding: 1rem;
    text-align: center;
    width: 100%;
    color: #E7E7E6;
  }
  .mobile-nav .link:hover {
    color: #ce7780;
    background-color: #E7E7E6;
  }
  footer .container {
    flex-wrap: wrap;
  }
  footer .container .footer-col {
    min-width: 250px;
  }
  .copyright {
    flex-wrap: wrap;
    gap: 0;
  }
  .copyright p {
    padding: 0 1rem;
    text-align: center;
    margin: 0;
  }
  .container {
    margin: 0 auto;
    padding: 0 1rem;
  }
  p {
    font-size: 0.9rem !important;
  }
  .section-img img {
    max-width: 100%;
    max-height: 300px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .link-btn {
    padding: 0.7rem 1rem;
  }
  .link-btn span {
    display: none;
  }
  .accordion-title h3 {
    font-size: 1rem;
  }
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}/*# sourceMappingURL=style.css.map */