@charset "UTF-8";
::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

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

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: roboto;
  src: url(../fonts/RobotoFlex-VariableFont_GRAD\,XOPQ\,XTRA\,YOPQ\,YTAS\,YTDE\,YTFI\,YTLC\,YTUC\,opsz\,slnt\,wdth\,wght.ttf);
}
body {
  font-family: roboto;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.01) 50%, rgba(51, 51, 51, 0.05) 10%), linear-gradient(0deg, rgba(51, 51, 51, 0.01) 50%, rgba(51, 51, 51, 0.05) 10%);
  background-size: 3px 3px;
  background-color: #fff;
}

main {
  overflow: hidden;
}

button {
  display: flex;
  padding: 10px 50px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #25D366;
  outline: none;
  border: none;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  gap: 10px;
}
@media (max-width: 768px) {
  button {
    font-size: 14px;
    gap: 5px;
    padding: 10px 20px;
    margin: 0 auto;
  }
}

/* Estilo do botão WhatsApp */
.btn-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
}
.btn-flutuante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
.btn-flutuante:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}
.btn-flutuante i {
  font-size: 30px;
}
.btn-flutuante .tooltip-text {
  position: absolute;
  bottom: 80px;
  background-color: #fff;
  color: red;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  right: 0;
  transition: opacity 0.3s ease;
}
.btn-flutuante .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 70%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

h2.titulo {
  color: #000;
  font-size: calc(0.6rem + 0.6vw);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 768px) {
  h2.titulo {
    font-size: 16px;
  }
}

h3.subtitulo {
  color: red;
  font-size: calc(18px + 1vw);
  margin-bottom: 3rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: 70px 10px;
}
@media (max-width: 768px) {
  .section {
    padding: 50px 20px;
  }
}
.section > div {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section_one {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 10%), linear-gradient(0deg, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 10%);
  background-size: 3px 3px;
  background-color: red;
  padding: 15px 0;
  width: 100%;
  position: relative;
  z-index: 2;
}
.section_one * {
  position: relative;
  z-index: 2;
}
.section_one .scrolling-text {
  white-space: nowrap;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
  animation: scrollText 40s linear infinite;
}
@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.section_two {
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.01) 50%, rgba(51, 51, 51, 0.05) 10%), linear-gradient(0deg, rgba(51, 51, 51, 0.01) 50%, rgba(51, 51, 51, 0.05) 10%);
  background-size: 3px 3px;
  background-color: #fff;
  max-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1099px) {
  .section_two {
    height: auto;
    max-height: none;
    min-height: auto;
    flex-direction: column;
    padding-bottom: 0;
  }
}
@media (min-width: 1100px) and (max-width: 1440px) {
  .section_two {
    min-height: 550px;
  }
}
@media (min-width: 1441px) {
  .section_two {
    min-height: 700px;
  }
}
.section_two picture {
  position: absolute;
  right: 0;
  max-width: 50%;
  height: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
.section_two picture img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .section_two picture {
    position: relative;
    max-width: none;
    width: 130%;
    left: 10%;
  }
}
.section_two > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .section_two > div {
    grid-template-columns: 1fr;
  }
}
.section_two > div > div:first-child {
  margin-top: -75px;
}
@media (max-width: 1099px) {
  .section_two > div > div:first-child {
    margin-top: 0;
  }
}
.section_two > div > div:first-child .logo {
  width: 100%;
  max-width: 150px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section_two > div > div:first-child .logo {
    margin: 0 auto;
    margin-bottom: 1rem;
    display: flow;
    text-align: center;
  }
}
.section_two > div > div:first-child h1 {
  color: #000;
  font-size: calc(22px + 1.5vw);
  line-height: 0.9;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section_two > div > div:first-child h1 {
    text-align: center;
  }
}
.section_two > div > div:first-child h1 span {
  color: red;
}
.section_two > div > div:first-child .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 1rem;
  max-width: 450px;
}
@media (max-width: 767px) {
  .section_two > div > div:first-child .cards {
    margin-bottom: 1.5rem;
    gap: 5px;
  }
}
.section_two > div > div:first-child .cards > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .section_two > div > div:first-child .cards > div {
    gap: 5px;
  }
}
.section_two > div > div:first-child .cards > div > div:first-child {
  width: 30px;
  height: 30px;
  border: 1.5px solid red;
  border-radius: 5px;
  color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.section_two > div > div:first-child .cards > div > div:last-child h3 {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section_two > div > div:first-child button {
    margin: 0;
  }
}
.section_two > div > div:first-child .premiacoes {
  display: flex;
  margin-bottom: 1.5rem;
  gap: 10px;
}
@media (max-width: 768px) {
  .section_two > div > div:first-child .premiacoes {
    justify-content: center;
  }
}
.section_two > div > div:first-child .premiacoes img {
  max-width: 50px;
}
@media (max-width: 768px) {
  .section_two > div > div:first-child button {
    margin: 0 auto;
  }
}

.section_tertiary {
  display: flex;
  align-items: center;
  height: 0;
  padding: 0;
  position: relative;
}
.section_tertiary > div {
  background: #fff;
  height: 130px;
  position: relative;
  border-radius: 200px;
  z-index: 2;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  padding: 10px 40px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section_tertiary > div {
    border-radius: 200px 0 0 200px;
    padding: 10px 10px 10px 40px;
  }
}
.section_tertiary > div > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .section_tertiary > div > div {
    overflow-x: scroll;
  }
}
.section_tertiary > div > div > span {
  display: block;
  height: 70px;
  width: 2px;
  margin: 0 10px;
  background: rgba(0, 0, 0, 0.2);
}
.section_tertiary > div > div > div {
  display: flex;
  gap: 10px;
  width: 22%;
}
@media (max-width: 768px) {
  .section_tertiary > div > div > div {
    min-width: 80%;
  }
}
.section_tertiary > div > div > div > div {
  display: flex;
  align-items: center;
}
.section_tertiary > div > div > div > div:first-child {
  min-width: 50px;
  max-width: 50px;
  width: 50px;
  height: 50px;
  background: red;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}
.section_tertiary > div > div > div > div:last-child {
  width: -moz-fit-content;
  width: fit-content;
}
.section_tertiary > div > div > div > div:last-child h3 {
  color: #000;
  font-size: 16px;
  line-height: 0.9;
  font-weight: 500;
}
.section_tertiary .scroll-text_1, .section_tertiary .scroll-text_2 {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 12px;
  z-index: 10;
  background: none;
  box-shadow: none;
  padding: 0;
  bottom: -90px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 700;
  gap: 10px;
  color: red;
}
@media (max-width: 768px) {
  .section_tertiary .scroll-text_1, .section_tertiary .scroll-text_2 {
    display: flex;
  }
}
@media (min-width: 769px) {
  .section_tertiary .scroll-text_1, .section_tertiary .scroll-text_2 {
    display: none;
  }
}
.section_tertiary .arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.section_tertiary .scroll-text_1 {
  right: 10px;
}
.section_tertiary .scroll-text_2 {
  left: 10px;
}

.section_quaternary {
  padding: 140px 10px 70px 10px;
}
@media (max-width: 768px) {
  .section_quaternary {
    padding: 160px 20px 50px 20px;
  }
}
.section_quaternary > div {
  position: relative;
  z-index: 3;
}
.section_quaternary > div > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
  margin-bottom: 2rem;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .section_quaternary > div > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.section_quaternary > div > div > div > div {
  width: 90%;
  height: 150px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .section_quaternary > div > div > div > div {
    width: 100%;
    height: 130px;
  }
}
.section_quaternary > div > div > div > div img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section_quaternary > div > div > div h4 {
  color: red;
  font-size: 24px;
  font-weight: 600;
  line-height: 0.9;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin-bottom: 0.3rem;
}
.section_quaternary > div > div > div p {
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.section_quaternary > div button {
  margin: 0 auto;
}

.divisao_session_3 {
  width: 100%;
}
@media (max-width: 768px) {
  .divisao_session_3 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.divisao_session_3 img {
  width: 100%;
}
@media (max-width: 768px) {
  .divisao_session_3 img {
    width: 200%;
  }
}

.section_quinary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_quinary .comida_fundo_3 {
  position: absolute;
  z-index: 0;
  left: 0;
  opacity: 0.5;
  max-width: 50%;
}
@media (max-width: 768px) {
  .section_quinary .comida_fundo_3 {
    top: 0;
    opacity: 0.1;
  }
}
.section_quinary .comida_fundo_4 {
  position: absolute;
  z-index: 0;
  right: 0;
  opacity: 0.5;
  max-width: 50%;
}
@media (max-width: 768px) {
  .section_quinary .comida_fundo_4 {
    bottom: 0;
    opacity: 0.1;
  }
}
.section_quinary > div {
  position: relative;
  z-index: 2;
}
.section_quinary > div h3 {
  margin-bottom: 1rem;
}
.section_quinary > div > div {
  max-width: 600px;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.section_quinary > div > div > div {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: scroll;
}
.section_quinary > div > div > div > div {
  min-width: calc(100% - 2rem);
  max-width: calc(100% - 2rem);
  display: inline-flex;
  padding: 50px 45px;
  align-items: center;
  gap: 34px;
  border-radius: 10px 100px;
  background: #FAFAFA;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 2rem 1rem;
}
@media (max-width: 767px) {
  .section_quinary > div > div > div > div {
    flex-direction: column;
    align-items: start;
    border-radius: 10px 50px;
    padding: 40px 25px;
  }
}
.section_quinary > div > div > div > div .icone-left {
  position: absolute;
  left: 45px;
  top: -2rem;
  color: red;
  font-size: 4rem;
}
@media (max-width: 767px) {
  .section_quinary > div > div > div > div .icone-left {
    font-size: 3rem;
    left: 25px;
  }
}
.section_quinary > div > div > div > div .icone-right {
  position: absolute;
  right: 45px;
  bottom: -2rem;
  color: red;
  font-size: 4rem;
}
@media (max-width: 767px) {
  .section_quinary > div > div > div > div .icone-right {
    font-size: 3rem;
    right: 25px;
  }
}
.section_quinary > div > div > div > div .perfil {
  width: 100px;
  height: 100px;
  background: red;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .section_quinary > div > div > div > div .perfil {
    width: 70px;
    height: 70px;
    border-radius: 10px;
  }
}
.section_quinary > div > div > div > div .perfil img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section_quinary > div > div > div > div .text {
  flex: 1;
}
.section_quinary > div > div > div > div .text h3 {
  font-size: 20px;
  color: red;
  margin-bottom: 1rem;
}
.section_quinary > div > div > div > div .text h4 {
  color: rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-weight: 600;
}
.section_quinary > div > div > div > div .text p {
  font-size: 16px;
  color: #333;
  line-height: 1;
}
.section_quinary > div .buton_next_prev {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.section_quinary > div .buton_next_prev button {
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  color: #fff;
  padding: 0;
  border-radius: 5px;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_quinary > div button {
  margin: 0 auto;
}

.section_septenary {
  background: linear-gradient(100deg, #0A0A0A 0%, #171717 100.01%), linear-gradient(90deg, rgba(51, 51, 51, 0.05) 50%, rgba(51, 51, 51, 0.1) 10%), linear-gradient(0deg, rgba(51, 51, 51, 0.05) 50%, rgba(51, 51, 51, 0.1) 10%);
  background-size: 3px 3px;
  background-color: #000;
  position: relative;
}
.section_septenary > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .section_septenary > div {
    grid-template-columns: 1fr;
  }
}
.section_septenary > div > div:first-child h2, .section_septenary > div > div:first-child h3 {
  text-align: start;
}
.section_septenary > div > div:first-child h2 {
  color: #fff;
}
.section_septenary > div > div:first-child h3 {
  margin-bottom: 0.5rem;
}
.section_septenary > div > div:first-child p {
  color: #fff;
}
.section_septenary > div > div:first-child > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
  margin-bottom: 2rem;
  gap: 20px;
}
@media (max-width: 768px) {
  .section_septenary > div > div:first-child > div {
    grid-template-columns: 1fr;
  }
}
.section_septenary > div > div:first-child > div > div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.section_septenary > div > div:first-child > div > div > div:first-child {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}
.section_septenary > div > div:first-child > div > div > div:last-child {
  flex: 1;
}
.section_septenary > div > div:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_septenary > div > div:last-child iframe {
  min-height: 300px;
  max-width: 400px;
  border-radius: 20px;
}
.section_septenary > div > div:last-child > div {
  min-height: 300px;
  max-width: 400px;
  border-radius: 20px;
}
.section_septenary > div > div:last-child .video-placeholder {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000 url("https://img.youtube.com/vi/HtfL9_8gTU0/hqdefault.jpg") center center/cover no-repeat;
  position: relative;
  cursor: pointer;
}

.section_octonary {
  background: linear-gradient(100deg, #0A0A0A 0%, #171717 100.01%), linear-gradient(90deg, rgba(51, 51, 51, 0.05) 50%, rgba(51, 51, 51, 0.1) 10%), linear-gradient(0deg, rgba(51, 51, 51, 0.05) 50%, rgba(51, 51, 51, 0.1) 10%);
  background-size: 3px 3px;
  background-color: #000;
  max-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.section_octonary .comida_fundo_1 {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  height: 50%;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .section_octonary .comida_fundo_1 {
    width: 50%;
  }
}
.section_octonary::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.01) 50%, rgba(51, 51, 51, 0.05) 10%), linear-gradient(0deg, rgba(51, 51, 51, 0.01) 50%, rgba(51, 51, 51, 0.05) 10%);
  background-size: 3px 3px;
  background-color: #fff;
  height: 50%;
  width: 100%;
  bottom: 0;
  left: 0;
}
.section_octonary > div {
  background: #fff;
  position: relative;
  z-index: 4;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  padding: 50px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .section_octonary > div {
    padding: 40px 20px;
  }
}
.section_octonary > div > span {
  display: block;
  width: 40%;
  height: 1px;
  background: red;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 3rem;
  opacity: 0.5;
}
.section_octonary > div > div:first-child h3 {
  margin-bottom: 2rem;
}
.section_octonary > div > div:first-child .marcas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.section_octonary > div > div:first-child .marcas > div {
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.section_octonary > div > div:first-child .marcas > div img {
  max-width: 80px;
  max-height: 35px;
  opacity: 0.7;
  filter: grayscale(1) brightness(0);
}
@media (max-width: 768px) {
  .section_octonary > div > div:first-child .marcas > div img {
    max-width: 50px;
  }
}
.section_octonary > div > div:last-child h3 {
  margin-bottom: 2rem;
}
.section_octonary > div > div:last-child .premiacoes {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.section_octonary > div > div:last-child .premiacoes img {
  max-width: 70px;
}
@media (max-width: 768px) {
  .section_octonary > div > div:last-child .premiacoes img {
    max-width: 50px;
  }
}

.section_nonary {
  position: relative;
}
.section_nonary .comida_fundo_2 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  z-index: 0;
}
@media (max-width: 767px) {
  .section_nonary .comida_fundo_2 {
    opacity: 0.2;
    width: 50%;
  }
}
.section_nonary > div {
  position: relative;
  z-index: 1;
}
.section_nonary > div h3 {
  margin-bottom: 2rem;
}
.section_nonary > div > div {
  width: 100%;
  margin-bottom: 3rem;
  overflow: hidden;
}
.section_nonary > div > div > div {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  padding: 10px 0;
}
@media (min-width: 768px) and (max-width: 979px) {
  .section_nonary > div > div > div {
    gap: 5%;
  }
}
@media (max-width: 767px) {
  .section_nonary > div > div > div {
    gap: 0;
  }
}
.section_nonary > div > div > div > div {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #FDFDFD;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  min-width: 32%;
  max-width: 32%;
  width: 32%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .section_nonary > div > div > div > div {
    min-width: 47.5%;
    max-width: 47.5%;
    width: 47.5%;
  }
}
@media (max-width: 767px) {
  .section_nonary > div > div > div > div {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
}
.section_nonary > div > div > div > div > div:first-child {
  border-radius: 10px;
  background: red;
  width: 100px;
  height: 100px;
  position: relative;
}
.section_nonary > div > div > div > div > div:first-child::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 100%;
  left: 5%;
  background-image: url(../img/logo_mordidela.webp);
  background-size: contain;
  background-repeat: no-repeat;
  filter: grayscale(1) brightness(0) invert(1);
  background-position: center;
}
.section_nonary > div > div > div > div > div:last-child {
  flex: 1;
}
.section_nonary > div > div > div > div > div:last-child h3 {
  margin: 0;
}
.section_nonary > div > div > div > div > div:last-child h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .section_nonary > div > div > div > div > div:last-child h4 {
    font-size: 16px;
  }
}
.section_nonary > div > div > div > div > div:last-child > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section_nonary > div > div > div > div > div:last-child > div i {
  font-size: 5px;
  color: #333;
}
@media (max-width: 767px) {
  .section_nonary > div > div > div > div > div:last-child > div i {
    font-size: 3px;
  }
}
.section_nonary > div > div > div > div > div:last-child > div:last-child h5 {
  color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .section_nonary > div > div > div > div > div:last-child > div:last-child h5 {
    font-size: 16px;
  }
}
.section_nonary > div > div > div > div > div:last-child > div:last-child h5:nth-child(1) {
  color: #FFAB00;
}
.section_nonary > div > div > div > div > div:last-child > div:nth-child(2) h3 i {
  font-size: 15px;
  color: #333;
}
@media (max-width: 767px) {
  .section_nonary > div > div > div > div > div:last-child > div:nth-child(2) h3 i {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .section_nonary > div > div > div > div > div:last-child > div:nth-child(2) h3 {
    font-size: 14px;
  }
}
.section_nonary > div > div > div > div > div:last-child > div:nth-child(2) h5 {
  color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .section_nonary > div > div > div > div > div:last-child > div:nth-child(2) h5 {
    font-size: 16px;
  }
}
.section_nonary > div > div .buton_next_prev {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.section_nonary > div > div .buton_next_prev button {
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  color: #fff;
  padding: 0;
  border-radius: 5px;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_nonary > div button {
  margin: 0 auto;
}
.section_nonary #notas_ifood {
  display: flex;
  transition: transform 0.3s ease;
}

.section_denary {
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.05) 50%, rgba(51, 51, 51, 0.1) 10%), linear-gradient(0deg, rgba(51, 51, 51, 0.05) 50%, rgba(51, 51, 51, 0.1) 10%);
  background-size: 3px 3px;
  background-color: #FFAB00;
}
.section_denary > div {
  margin: 0 auto;
}
.section_denary > div h2, .section_denary > div h3 {
  color: #fff;
}
.section_denary > div > div {
  width: 80%;
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 3rem;
}
@media (max-width: 360px) {
  .section_denary > div > div {
    width: 100%;
  }
}
.section_denary > div > div > div {
  display: flex;
  gap: 5%;
}
@media (max-width: 767px) {
  .section_denary > div > div > div {
    gap: 1%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section_denary > div > div > div {
    gap: 2%;
  }
}
.section_denary > div > div > div > div {
  width: 30%;
}
@media (max-width: 767px) {
  .section_denary > div > div > div > div {
    width: 99%;
    min-width: 99%;
    max-width: 99%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section_denary > div > div > div > div {
    width: 49%;
    min-width: 49%;
    max-width: 49%;
  }
}
.section_denary > div > div > div > div > div:first-child {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.section_denary > div > div > div > div > div:first-child img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.section_denary > div > div > div > div > div:last-child {
  border-radius: 20px;
  background-color: #fff;
  margin-top: -20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.section_denary > div > div > div > div > div:last-child > h3 {
  background: #FFAB00;
  padding: 7px 20px;
  color: #333;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.section_denary > div > div > div > div > div:last-child > h3::after {
  content: "";
  display: block;
  width: 20%;
  height: 2px;
  background: #333;
}
.section_denary > div > div > div > div > div:last-child > div {
  padding: 20px;
}
.section_denary > div > div > div > div > div:last-child > div > div {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.section_denary > div > div > div > div > div:last-child > div > div:last-child {
  margin-bottom: 0;
}
.section_denary > div > div > div > div > div:last-child > div > div > div:first-child {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding: 20px;
  border-radius: 10px;
  background: #FFAB00;
  color: #333;
}
.section_denary > div > div > div > div > div:last-child > div > div > div:last-child h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
}
.section_denary > div > div > div > div > div:last-child > div > div > div:last-child h4 {
  font-weight: 500;
  color: #333;
}
.section_denary > div .buton_next_prev {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
.section_denary > div .buton_next_prev button {
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  color: #FFAB00;
  padding: 0;
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_denary > div button {
  margin: 0 auto;
}

.section_eleventh {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 70px 0 70px 10px;
}
.section_eleventh > div {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 30px;
}
@media (max-width: 991px) {
  .section_eleventh > div {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
.section_eleventh > div > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section_eleventh > div > div:first-child h3 {
  margin-bottom: 2rem;
}
.section_eleventh > div > div:last-child > div {
  width: 100%;
}
@media (max-width: 768px) {
  .section_eleventh > div > div:last-child > div {
    max-width: 350px;
    margin: 0 auto;
  }
}
.section_eleventh > div > div:last-child > div > div {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 30px 0;
  justify-content: center;
}
@media (max-width: 767px) {
  .section_eleventh > div > div:last-child > div > div {
    justify-content: start;
  }
}
.section_eleventh > div > div:last-child > div > div > div.primary {
  width: 30%;
  min-width: 30%;
  max-width: 30%;
  margin-right: -20px;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .section_eleventh > div > div:last-child > div > div > div.primary {
    width: 65%;
    min-width: 65%;
    max-width: 65%;
    z-index: 6;
  }
}
.section_eleventh > div > div:last-child > div > div > div.secondary {
  width: 35%;
  min-width: 35%;
  max-width: 35%;
  position: relative;
  z-index: 6;
}
@media (max-width: 768px) {
  .section_eleventh > div > div:last-child > div > div > div.secondary {
    width: 60%;
    min-width: 60%;
    max-width: 60%;
    z-index: 5;
  }
}
.section_eleventh > div > div:last-child > div > div > div.tertiary {
  width: 30%;
  min-width: 30%;
  max-width: 30%;
  margin-left: -20px;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .section_eleventh > div > div:last-child > div > div > div.tertiary {
    width: 55%;
    min-width: 55%;
    max-width: 55%;
    z-index: 4;
  }
}
.section_eleventh > div > div:last-child > div > div > div.quaternary {
  width: 25%;
  min-width: 25%;
  max-width: 25%;
  margin-left: -20px;
  position: relative;
  z-index: 4;
  display: none;
}
@media (max-width: 768px) {
  .section_eleventh > div > div:last-child > div > div > div.quaternary {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
    z-index: 3;
  }
}
.section_eleventh > div > div:last-child > div > div > div.quaternary img {
  box-shadow: none;
  display: none;
}
.section_eleventh > div > div:last-child > div > div > div img {
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.2));
  border-radius: 20px;
  transition: opacity 1s ease-in-out;
  width: 100%;
  height: auto;
  position: relative;
}
.section_eleventh > div > div:last-child .buton_next_prev {
  display: flex;
  gap: 10px;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.section_eleventh > div > div:last-child .buton_next_prev button {
  min-width: 30px;
  max-width: 30px;
  min-height: 30px;
  max-height: 30px;
  color: #fff;
  padding: 0;
  border-radius: 5px;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section_twelfth > div > div {
  max-width: 900px;
  margin: 0 auto;
}
.section_twelfth > div > div .faq-item {
  margin-bottom: 10px;
}
.section_twelfth > div > div .faq-item:last-child {
  border-bottom: none;
}
.section_twelfth > div > div .faq-item .faq-question {
  border: 1px solid #333;
  border-radius: 50px;
  width: 100%;
  padding: 10px 15px;
  font-size: 18px;
  text-align: left;
  background: none;
  outline: none;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: none;
  font-weight: 500;
}
.section_twelfth > div > div .faq-item .faq-question:hover {
  color: red;
}
.section_twelfth > div > div .faq-item .faq-question .icon {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: #fff;
  background: red;
  padding: 10px;
  border-radius: 20px;
}
.section_twelfth > div > div .faq-item .faq-answer.active + .faq-question .icon {
  transform: rotate(180deg);
}
.section_twelfth > div > div .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  font-size: 16px;
  color: #333;
}
.section_twelfth > div > div .faq-item .faq-answer.active {
  padding: 15px;
  max-height: 200px;
}

.section_thirteenth {
  height: 100vh;
  max-height: 600px;
  padding: 0;
  background: #000;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .section_thirteenth {
    max-height: 80vh;
    overflow: hidden;
  }
}
.section_thirteenth > div {
  width: 100vw;
  height: 100vh;
  max-height: 600px;
  margin: 0;
}
@media (max-width: 767px) {
  .section_thirteenth > div {
    max-height: 80vh;
  }
}
.section_thirteenth > div > div {
  display: flex;
}
.section_thirteenth > div > div > div {
  max-width: 100vw;
  min-width: 100vw;
  height: 100vh;
  max-height: 600px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .section_thirteenth > div > div > div {
    max-height: 80vh;
  }
}
.section_thirteenth > div > div > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.section_thirteenth > div > div > div img.visible {
  opacity: 1;
}

.section_fourteenth div > div form {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 10%), linear-gradient(0deg, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 10%);
  background-size: 3px 3px;
  background-color: red;
  padding: 20px;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}
.section_fourteenth div > div form label {
  font-weight: bold;
  font-size: 14px;
  color: #fff;
  margin-bottom: 5px;
  display: block;
}
.section_fourteenth div > div form input[type=text],
.section_fourteenth div > div form select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}
.section_fourteenth div > div form input[type=text]:focus,
.section_fourteenth div > div form select:focus {
  border-color: #007bff;
}
.section_fourteenth div > div form .box_estado_cidade {
  display: flex;
  gap: 10px;
}
.section_fourteenth div > div form .box_estado_cidade > div {
  flex: 1;
}
.section_fourteenth div > div form .box_estado_cidade > div:first-child {
  max-width: 100px;
}
.section_fourteenth div > div form .box_estado_cidade > div label {
  font-weight: bold;
  color: #fff;
}
.section_fourteenth div > div form .box_estado_cidade > div select {
  flex: 1;
}
.section_fourteenth div > div form .data-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.section_fourteenth div > div form .data-button:disabled {
  background-color: #25D366;
  cursor: not-allowed;
}
.section_fourteenth div > div form .data-button:not(:disabled):hover {
  background-color: #218838;
}
.section_fourteenth div > div form .data-button i {
  margin-right: 8px;
}
.section_fourteenth div > div form .error-message-container {
  display: none;
}
.section_fourteenth div > div form .error-message-container.show {
  border-radius: 5px;
  color: #fff;
  margin-top: 10px;
  display: flex;
  text-align: center;
  font-size: 14px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-weight: 600;
  background: red;
  display: block;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5), 0 0 10px rgba(0, 0, 0, 0.2);
}
.section_fourteenth div > div form .error-message-container.success {
  background: #218838;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
}
.section_fourteenth div > div form p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-top: 15px;
}
.section_fourteenth div > div form > div {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .section_fourteenth div > div form > div {
    gap: 0;
  }
}
.section_fourteenth div > div form > div > div {
  flex: 1;
  min-width: 200px;
}

footer {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 10%), linear-gradient(0deg, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 10%);
  background-size: 3px 3px;
  background-color: red;
  color: #ffffff;
  padding: 5rem 0 2rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  footer {
    padding: 3rem 0 2rem 0;
  }
}
footer .container {
  margin: 0 auto;
  max-width: 1500px;
}
footer .container .footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
footer .container .footer-info div {
  flex: 1;
  min-width: 250px;
  margin: 10px;
  text-align: left;
}
footer .container .footer-info div:nth-child(1) {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  footer .container .footer-info div {
    margin-bottom: 2rem;
  }
}
footer .container .footer-info div > img {
  width: 100%;
  max-width: 200px;
}
footer .container .footer-info div h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  footer .container .footer-info div h3 {
    font-size: 1.3rem;
  }
}
footer .container .footer-info div h3 span {
  color: red;
}
footer .container .footer-info div p {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  footer .container .footer-info div p {
    margin-bottom: 10px;
  }
}
footer .container .footer-info div button {
  margin: initial !important;
}
footer .container > div p {
  font-size: 0.9rem;
  margin: 0;
}
footer .container > div p a {
  cursor: pointer;
}
footer .container > div p a img {
  max-width: 40px;
}

#notification-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 200px;
  z-index: 100;
}

.notification {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  background-color: #fff;
  padding: 10px;
  border: 1px solid red;
  border-radius: 5px;
  font-size: 1rem;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}
.notification > div {
  color: red;
  font-size: 1.1rem;
}

.notification i {
  margin-right: 5px;
  color: red;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  display: none;
}
.modal-overlay.active {
  display: flex;
}
.modal-overlay .modal {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
}
.modal-overlay .modal h1 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}
.modal-overlay .modal h1 span {
  color: red;
}
.modal-overlay .modal .close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}
.modal-overlay .modal .close-modal:hover {
  color: #FFAB00;
}
.modal-overlay .modal .contact-form-2 {
  display: flex;
  flex-direction: column;
}
.modal-overlay .modal .contact-form-2 input,
.modal-overlay .modal .contact-form-2 select {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 16px;
}
.modal-overlay .modal .contact-form-2 input.sumir-btn,
.modal-overlay .modal .contact-form-2 select.sumir-btn {
  transition: all 0.3s ease;
}
.modal-overlay .modal .contact-form-2 input.sumir-btn:focus,
.modal-overlay .modal .contact-form-2 select.sumir-btn:focus {
  border-color: red;
  box-shadow: 0 0 5px red;
}
.modal-overlay .modal .contact-form-2 button {
  background-color: red;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.modal-overlay .modal .contact-form-2 button:disabled {
  background-color: #cc0000;
  cursor: not-allowed;
}
.modal-overlay .modal .contact-form-2 button:hover {
  background-color: #e60000;
}
.modal-overlay .modal .contact-form-2 button i {
  margin-right: 5px;
}
.modal-overlay .modal .contact-form-2 .error-message-container {
  color: red;
  margin-top: 10px;
  text-align: center;
}
.modal-overlay .modal .contact-form-2 .error-message-container.success {
  background: #218838;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
}
.modal-overlay .modal .contact-form-2 p {
  font-size: 14px;
  color: #333;
  margin-top: 20px;
}

.pagina.de.sucesso {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.05) 50%, rgba(51, 51, 51, 0.1) 10%), linear-gradient(0deg, rgba(51, 51, 51, 0.05) 50%, rgba(51, 51, 51, 0.1) 10%);
  background-size: 3px 3px;
  background-color: #fff;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}
.pagina.de.sucesso img {
  width: 250px;
  margin-bottom: 30px;
}
.pagina.de.sucesso .container {
  background: rgba(255, 255, 255, 0.5);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  text-align: center;
}
.pagina.de.sucesso .container h2 {
  color: red;
  font-size: 28px;
  margin-bottom: 20px;
}
.pagina.de.sucesso .container p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.pagina.de.sucesso .container .horario {
  color: #FFAB00;
  font-weight: bold;
  font-size: 18px;
}
.pagina.de.sucesso .box-animado {
  width: 150px;
  height: 70px;
  background-color: red;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: crescerDiminuir 3s infinite ease-in-out;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagina.de.sucesso .box-animado h3 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
@keyframes crescerDiminuir {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* Aumenta 10% */
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .pagina.de.sucesso .container {
    padding: 20px;
  }
  .pagina.de.sucesso h2 {
    font-size: 24px;
  }
  .pagina.de.sucesso p {
    font-size: 14px;
  }
  .pagina.de.sucesso .box-animado {
    width: 100px;
    height: 50px;
  }
}/*# sourceMappingURL=style.css.map */