@charset "UTF-8";
.primary-text-color {
  color: #173833;
}

.secondary-text-color {
  color: #4b4394;
}

.white-text-color {
  color: rgba(255, 255, 255, 0.8);
}

.gray-text-color {
  color: #686868;
}

.lemon-text-color {
  color: #e9e668;
}

.salmon-text-color {
  color: #ed6939;
}

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

.secondary-bg-color {
  background-color: #4b4394;
}

.lemon-bg-color {
  background-color: #e9e668;
}

.salmon-bg-color {
  background-color: #ed6939;
}

.cream-bg-color {
  background-color: #edebdd;
}

.gray-bg-color {
  background-color: #686868;
}

.faq-container {
  background: none;
  overflow: hidden;
}
@media (width >= 768px) {
  .faq-container {
    padding: 80px 40px 80px 0;
  }
}

.faq-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 1rem;
}
.faq-item button {
  border-radius: 0;
}

.faq-question {
  width: 100%;
  padding: 12px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}
.faq-question:hover {
  color: #e9e668;
}
.faq-question i {
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 20px;
}
.faq-answer p {
  padding: 20px 0;
  color: #e9e668;
}
.faq-answer a {
  color: #ed6939;
}

.faq-item.active .faq-question {
  background-color: #e9e668;
  color: #4b4394;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-answer {
  max-height: 500px;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 15px;
    font-size: 1rem;
  }
}
.animation-1 .line-1 {
  animation: fadeInUp 1.5s ease-out forwards;
  animation-delay: 1s;
  opacity: 0;
}
.animation-1 .line-2 {
  animation: fadeInUp 1.5s ease-out 0.5s forwards;
  animation-delay: 1.5s;
  opacity: 0;
}
.animation-1 .line-3 {
  animation: fadeInUp 1.5s ease-out 1s forwards;
  animation-delay: 2s;
  opacity: 0;
}
.animation-1 .line-4 {
  animation: fadeInUp 1.5s ease-out 1.8s forwards;
  animation-delay: 2.5s;
  opacity: 0;
}
.animation-1 .line-5 {
  animation: fadeInUp 1.5s ease-out 2.5s forwards;
  animation-delay: 3s;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@media (width >= 200px) {
  .bar {
    height: auto;
    padding: 0 40px;
  }
}
.bar__text {
  letter-spacing: 2px;
  padding-right: 2rem;
  font-weight: 700;
}
@media (width >= 200px) {
  .bar__text {
    font-size: 1rem !important;
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (width >= 768px) {
  .bar__text {
    font-size: 1.5rem !important;
    display: inline;
  }
}

button, #defaultButton {
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  letter-spacing: 1px;
}
@media (width >= 200px) {
  button, #defaultButton {
    font-size: 0.75rem !important;
  }
}
@media (width >= 768px) {
  button, #defaultButton {
    font-size: 1rem !important;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  margin-top: 70px;
}
.hero::after {
  content: "";
  position: fixed;
  z-index: 2;
  left: 50%;
  transform: translate(-50%);
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  max-width: 2200px;
  height: 115px;
}
@media (width >= 200px) {
  .hero::after {
    background-image: url("../img/layout/desktop/grafismo-header.png");
    top: 109px;
  }
}
@media (width >= 768px) {
  .hero::after {
    top: 99px;
  }
}
@media (width >= 769px) {
  .hero::after {
    top: 69px;
  }
}
@media (width >= 1280px) {
  .hero::after {
    top: 79px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scale(1.2);
  opacity: 0;
  animation: fadeInZoom 1.8s ease-out forwards;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__caption-container {
  display: flex;
  align-items: center;
}
.hero__caption-container .hero__title {
  font-weight: 800;
  letter-spacing: 4px;
}
.hero__caption-container .hero__subtitle {
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 4px;
}
.hero .mask {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (width >= 200px) {
  .hero {
    height: calc(100vh - 200px);
    align-items: flex-end;
    padding: 40px;
  }
}
@media (width >= 768px) {
  .hero {
    height: 100vh;
    align-items: center;
  }
}
@media (width >= 1024px) {
  .hero {
    height: 575px;
  }
}
@media (width >= 1152px) {
  .hero {
    height: 600px;
  }
}
@media (width >= 1280px) {
  .hero {
    height: 700px;
  }
}
@media (width >= 1360px) {
  .hero {
    height: 768px;
  }
}
@media (width >= 1400px) {
  .hero {
    height: 1050px;
  }
}
@media (width >= 1440px) {
  .hero {
    height: 900px;
  }
}
@media (width >= 1600px) {
  .hero {
    height: 900px;
  }
}
@media (width >= 1680px) {
  .hero {
    height: 1050px;
  }
}
@media (width >= 1920px) {
  .hero {
    height: 1080px;
  }
}
@media (width >= 2200px) {
  .hero {
    height: 1140px;
  }
}

/* HOME */
@media (width > 200px) and (width < 768px) {
  #hero-home::before {
    background-image: url("../../assets/img/layout/mobile/hero_home.jpg");
    background-repeat: no-repeat;
  }
}
@media (width = 768px) {
  #hero-home::before {
    background-image: url("../../assets/img/layout/tablet/hero_home.jpg");
    background-repeat: no-repeat;
  }
}
@media (width > 768px) {
  #hero-home::before {
    background-image: url("../../assets/img/layout/desktop/hero-home.jpg");
    background-repeat: no-repeat;
  }
}

/* NOSSA CASA */
@media (width > 200px) and (width < 768px) {
  #hero-nossa-casa::before {
    background-image: url("../../assets/img/layout/mobile/hero-nossa-casa.jpg");
    background-repeat: no-repeat;
  }
}
@media (width = 768px) {
  #hero-nossa-casa::before {
    background-image: url("../../assets/img/layout/tablet/hero-nossa-casa.jpg");
    background-repeat: no-repeat;
  }
}
@media (width > 768px) {
  #hero-nossa-casa::before {
    background-image: url("../../assets/img/layout/desktop/hero-nossa-casa.jpg");
    background-repeat: no-repeat;
  }
}

/* EVENTOS */
@media (width > 200px) and (width < 768px) {
  #hero-eventos::before {
    background-image: url("../../assets/img/layout/mobile/hero-eventos.jpg");
    background-repeat: no-repeat;
  }
}
@media (width = 768px) {
  #hero-eventos::before {
    background-image: url("../../assets/img/layout/tablet/hero-eventos.jpg");
    background-repeat: no-repeat;
  }
}
@media (width > 768px) {
  #hero-eventos::before {
    background-image: url("../../assets/img/layout/desktop/hero-eventos.jpg");
    background-repeat: no-repeat;
  }
}

/* LOCALICAÇÃO */
@media (width > 200px) and (width < 768px) {
  #hero-localizacao::before {
    background-image: url("../../assets/img/layout/mobile/hero-localizacao.jpg");
    background-repeat: no-repeat;
  }
}
@media (width = 768px) {
  #hero-localizacao::before {
    background-image: url("../../assets/img/layout/tablet/hero-localizacao.jpg");
    background-repeat: no-repeat;
  }
}
@media (width > 768px) {
  #hero-localizacao::before {
    background-image: url("../../assets/img/layout/desktop/hero-localizacao.jpg");
    background-repeat: no-repeat;
  }
}

/* RESERVAS */
@media (width > 200px) and (width < 768px) {
  #hero-reservas::before {
    background-image: url("../../assets/img/layout/mobile/hero-reservas.jpg");
    background-repeat: no-repeat;
  }
}
@media (width = 768px) {
  #hero-reservas::before {
    background-image: url("../../assets/img/layout/tablet/hero-reservas.jpg");
    background-repeat: no-repeat;
  }
}
@media (width > 768px) {
  #hero-reservas::before {
    background-image: url("../../assets/img/layout/desktop/hero-reservas.jpg");
    background-repeat: no-repeat;
  }
}

/* CARDÁPIO */
@media (width > 200px) and (width < 768px) {
  #hero-cardapio::before {
    background-image: url("../../assets/img/layout/mobile/hero-cardapio.jpg");
    background-repeat: no-repeat;
  }
}
@media (width = 768px) {
  #hero-cardapio::before {
    background-image: url("../../assets/img/layout/tablet/hero-cardapio.jpg");
    background-repeat: no-repeat;
  }
}
@media (width > 768px) {
  #hero-cardapio::before {
    background-image: url("../../assets/img/layout/desktop/hero-cardapio.jpg");
    background-repeat: no-repeat;
  }
}

/* CARDÁPIO EVENTOS */
@media (width > 200px) and (width < 768px) {
  #hero-cardapio-eventos::before {
    background-image: url("../../assets/img/layout/mobile/hero-cardapio-eventos.jpg");
    background-repeat: no-repeat;
  }
}
@media (width = 768px) {
  #hero-cardapio-eventos::before {
    background-image: url("../../assets/img/layout/tablet/hero-cardapio-eventos.jpg");
    background-repeat: no-repeat;
  }
}
@media (width > 768px) {
  #hero-cardapio-eventos::before {
    background-image: url("../../assets/img/layout/desktop/hero-cardapio-eventos.jpg");
    background-repeat: no-repeat;
  }
}

/* CONTATO */
@media (width > 200px) and (width < 768px) {
  #hero-contato::before {
    background-image: url("../../assets/img/layout/mobile/hero-contato.jpg");
    background-repeat: no-repeat;
  }
}
@media (width = 768px) {
  #hero-contato::before {
    background-image: url("../../assets/img/layout/tablet/hero-contato.jpg");
    background-repeat: no-repeat;
  }
}
@media (width > 768px) {
  #hero-contato::before {
    background-image: url("../../assets/img/layout/desktop/hero-contato.jpg");
    background-repeat: no-repeat;
  }
}

/* TRABALHE CONOSCO */
@media (width > 200px) and (width < 768px) {
  #hero-trabalhe-conosco::before {
    background-image: url("../../assets/img/layout/mobile/hero-trabalhe-conosco.jpg");
    background-repeat: no-repeat;
  }
}
@media (width = 768px) {
  #hero-trabalhe-conosco::before {
    background-image: url("../../assets/img/layout/tablet/hero-trabalhe-conosco.jpg");
    background-repeat: no-repeat;
  }
}
@media (width > 768px) {
  #hero-trabalhe-conosco::before {
    background-image: url("../../assets/img/layout/desktop/hero-trabalhe-conosco.jpg");
    background-repeat: no-repeat;
  }
}

body * {
  font-family: "Inter", sans-serif;
}

p {
  font-weight: 300;
}

@media (width >= 768px) {
  p {
    font-size: 12px !important;
  }
}

@media (width >= 1024px) {
  p {
    font-size: 16px !important;
  }
}

@media (width >= 1152px) {
  p {
    font-size: 16px !important;
  }
}

@media (width >= 1400px) {
  p {
    font-size: 18px !important;
  }
}

@media (width >= 1600px) {
  p {
    font-size: 20px !important;
  }
}

@media (width >= 1920px) {
  p {
    font-size: 22px !important;
  }
}

@media (width >= 2200px) {
  p {
    font-size: 26px !important;
  }
}

h2 {
  font-weight: 800 !important;
  letter-spacing: 2px;
}

@media (width >= 768px) {
  h2 {
    font-size: 18px !important;
  }
}

@media (width >= 1024px) {
  h2 {
    font-size: 24px !important;
  }
}

@media (width >= 1152px) {
  h2 {
    font-size: 30px !important;
  }
}

@media (width >= 2200px) {
  h2 {
    font-size: 40px !important;
  }
}

.fw-200 {
  font-weight: 200;
}

.fw-500 {
  font-weight: 500;
}

.fw-800 {
  font-weight: 800;
}

.form-ajax input {
  margin: 0.5rem 0;
  display: block;
  width: 100%;
}
.form-ajax label {
  font-size: 0.75rem;
  font-weight: 700;
}
.form-ajax label::first-letter {
  text-transform: uppercase;
}
.form-ajax .equal,
.form-ajax .plus {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}
.form-ajax [type=radio] {
  margin-right: 5px;
}
.form-ajax [type=text],
.form-ajax [type=email],
.form-ajax [type=tel],
.form-ajax [type=date],
.form-ajax select,
.form-ajax textarea {
  border-radius: 6px;
  transition: ease-in-out 0.2s;
  margin-bottom: 1rem;
}
.form-ajax [type=text]:focus, .form-ajax [type=text]:focus-visible,
.form-ajax [type=email]:focus,
.form-ajax [type=email]:focus-visible,
.form-ajax [type=tel]:focus,
.form-ajax [type=tel]:focus-visible,
.form-ajax [type=date]:focus,
.form-ajax [type=date]:focus-visible,
.form-ajax select:focus,
.form-ajax select:focus-visible,
.form-ajax textarea:focus,
.form-ajax textarea:focus-visible {
  box-shadow: none;
}
.form-ajax [type=submit] {
  padding: 1rem 0;
  border-radius: 6px;
  font-weight: 600;
}
.form-ajax select,
.form-ajax textarea {
  margin-bottom: 1rem;
}
.form-ajax select {
  margin-top: 7px;
}
.form-ajax select option {
  color: #173833;
}
.form-ajax .obrigatory {
  position: relative;
  padding-left: 12px;
}
.form-ajax .obrigatory::before {
  position: absolute;
  top: 3px;
  left: 0;
  line-height: 0;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("../../assets/img/common/asterisco.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.form-alert {
  display: none;
  width: 100%;
  color: #ed6939;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.form-control-alert {
  border: 2px solid #ed6939 !important;
}

#formContato [type=text],
#formContato [type=email],
#formContato [type=tel],
#formContato [type=date],
#formContato select,
#formContato textarea,
#formCurriculo [type=text],
#formCurriculo [type=email],
#formCurriculo [type=tel],
#formCurriculo [type=date],
#formCurriculo select,
#formCurriculo textarea {
  border: 2px solid #e9e668;
  background: none;
  color: #e9e668;
}
#formContato [type=submit],
#formCurriculo [type=submit] {
  background-color: #e9e668;
  border: none;
  color: #173833;
}
#formContato label,
#formCurriculo label {
  color: #ffffff;
  font-weight: 200;
}
#formContato .plus,
#formContato .equal,
#formCurriculo .plus,
#formCurriculo .equal {
  color: #e9e668;
}

.captcha-container {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#captcha-image {
  border: 1px solid #ccc;
  margin-right: 10px;
  vertical-align: middle;
}

.captcha-input {
  padding: 8px;
  margin: 5px 0;
  width: 200px;
}

.refresh-btn {
  padding: 8px 12px;
  cursor: pointer;
  background: #f0f0f0;
  border: 1px solid #ccc;
}

.captcha-message {
  padding: 12px;
  margin: 10px 0;
  border-radius: 4px;
  font-weight: bold;
}

.success {
  background: #eaffea;
  color: #080;
  border: 1px solid #080;
}

.error {
  background: #ffeaea;
  color: #d00;
  border: 1px solid #d00;
}

/* Estilização do campo de upload */
.file-upload-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.file-upload-label {
  display: block;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px dashed #e9e668;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload-label:hover {
  border-color: #3498db;
  background-color: rgba(255, 255, 255, 0.5);
}

.file-upload-label.dragover {
  border-color: #2ecc71;
  background-color: #00d169;
}

.file-upload-icon {
  font-size: 1.5rem;
  color: #e9e668;
  margin-bottom: 10px;
}

.file-upload-text {
  font-weight: 600;
  color: #e9e668;
  margin-bottom: 5px;
}

.file-upload-hint {
  color: #ffffff;
  font-size: 0.75rem;
}

.file-input {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.file-info {
  margin-top: 15px;
  padding: 15px;
  background-color: #e8f6f3;
  border-radius: 6px;
  display: none;
}

.file-info.show {
  display: block;
}

.file-name {
  font-weight: 600;
  color: #27ae60;
  margin-bottom: 5px;
}

.file-size {
  color: #7f8c8d;
  font-size: 14px;
}

.remove-file {
  color: #ed6939;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem !important;
  margin-top: 5px;
  text-decoration: underline;
}

.dobra-home {
  display: flex;
}
@media (width >= 200px) {
  .dobra-home {
    height: auto;
    padding-top: 0 !important;
    align-items: flex-start;
  }
}
@media (width >= 768px) {
  .dobra-home {
    height: 287px;
  }
}
@media (width >= 1024px) {
  .dobra-home {
    height: 380px;
    align-items: center;
  }
}
@media (width >= 1152px) {
  .dobra-home {
    height: 431px;
  }
}
@media (width >= 1280px) {
  .dobra-home {
    height: 480px;
  }
}
@media (width >= 1360px) {
  .dobra-home {
    height: 513px;
  }
}
@media (width >= 1366px) {
  .dobra-home {
    height: 508px;
  }
}
@media (width >= 1400px) {
  .dobra-home {
    height: 525px;
  }
}
@media (width >= 1440px) {
  .dobra-home {
    height: 540px;
  }
}
@media (width >= 1600px) {
  .dobra-home {
    height: 600px;
  }
}
@media (width >= 1680px) {
  .dobra-home {
    height: 630px;
  }
}
@media (width >= 1920px) {
  .dobra-home {
    height: 715px;
  }
}
@media (width >= 2200px) {
  .dobra-home {
    height: 824px;
  }
}
.dobra-home article p {
  letter-spacing: 1px;
}
.dobra-home article p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (width >= 200px) {
  .dobra-home article {
    padding: 40px;
  }
}
@media (width >= 768px) {
  .dobra-home article {
    padding: 40px;
  }
}
@media (width >= 1024px) {
  .dobra-home article {
    padding: 60px;
  }
}
@media (width >= 1152px) {
  .dobra-home article {
    padding: 80px;
  }
}
@media (width >= 1280px) {
  .dobra-home article {
    padding: 95px;
  }
}
@media (width >= 1366px) {
  .dobra-home article {
    padding: 114px;
  }
}
@media (width >= 1400px) {
  .dobra-home article {
    padding: 114px;
  }
}
@media (width >= 1440px) {
  .dobra-home article {
    padding: 120px;
  }
}
@media (width >= 1600px) {
  .dobra-home article {
    padding: 140px;
  }
}
@media (width >= 1680px) {
  .dobra-home article {
    padding: 160px;
  }
}
@media (width >= 1920px) {
  .dobra-home article {
    padding: 185px;
  }
}
@media (width >= 2200px) {
  .dobra-home article {
    padding: 212px;
  }
}

#dobra-perguntas-frequentes {
  height: auto;
}

/*
Media Queries
*/
@media (width < 768px) {
  #dobra-experiencia .order-1, #dobra-evento .order-1 {
    order: 2 !important;
  }
  #dobra-experiencia .order-2, #dobra-evento .order-2 {
    order: 1 !important;
  }
}
@media (width > 768px) {
  #dobra-experiencia .order-1, #dobra-refugio .order-1 {
    order: 1;
  }
  #dobra-experiencia .order-2, #dobra-refugio .order-2 {
    order: 2;
  }
}
.notFound {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.footer {
  padding-bottom: 4rem;
}
.footer__logo {
  width: 260px;
  margin: auto;
  padding: 80px;
}
.footer__item header * {
  font-weight: 900;
  color: #173833;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
@media (width >= 768px) {
  .footer__item header * {
    font-size: 1rem !important;
  }
}
.footer__item p,
.footer__item li,
.footer__item a {
  color: #173833;
}
@media (width >= 200px) {
  .footer__item p,
  .footer__item li,
  .footer__item a {
    font-size: 0.875rem !important;
  }
}
@media (width < 768px) {
  .footer__item {
    padding-left: 40px;
  }
}

.footer-2 .copy,
.footer-2 .link-curinga {
  color: #161616;
}
@media (width >= 200px) {
  .footer-2 .copy,
  .footer-2 .link-curinga {
    font-size: 0.625rem !important;
  }
}

@media (width > 768px) {
  .gallery {
    padding: 0 10rem;
  }
}
.gallery a:hover img {
  transform: scale(1.1);
}
.gallery img {
  position: relative;
  transition: ease-in-out 0.2s;
  margin-bottom: 1.5rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (width >= 768px) {
  .gallery img {
    border-radius: 1rem;
  }
}
@media (width < 768px) {
  .gallery img {
    border-radius: 6px;
  }
}

@media (width > 768px) {
  #gallery-pontos-turisticos a {
    position: relative;
  }
  #gallery-pontos-turisticos a::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 75%;
    right: 20px;
    width: auto;
    height: 30px;
    border-radius: 3px;
    background-color: #161616;
    color: #ffffff;
    padding: 6px 8px;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 1px;
  }
  #gallery-pontos-turisticos a#mineirao::after {
    content: "Estádio Mineirão";
  }
  #gallery-pontos-turisticos a#igreja-sao-francisco::after {
    content: "Igreja de São Francisco de Assis";
  }
  #gallery-pontos-turisticos a#casa-do-baile::after {
    content: "Casa do Baile";
  }
  #gallery-pontos-turisticos a#museu-brsileiro-de-futebol::after {
    content: "Museu Brasileiro de Futebol";
  }
  #gallery-pontos-turisticos a#mineirinho::after {
    content: "Mineirinho";
  }
  #gallery-pontos-turisticos a#casa-kubitschek::after {
    content: "Casa Kubitschek";
  }
  #gallery-pontos-turisticos a#museu-de-arte-da-pampulha::after {
    content: "Museu de Arte da Pampulha";
  }
}
nav {
  position: fixed;
  width: 100%;
  max-width: 2200px;
  top: 0;
  z-index: 999;
  left: 50%;
  transform: translate(-50%);
  padding: 0 20px;
  background-color: #edebdd;
}
nav .container,
nav .menu-container {
  height: 100%;
}
@media (width >= 200px) {
  nav {
    height: 110px;
  }
}
@media (width >= 768px) {
  nav {
    height: 150px;
  }
}
@media (width >= 769px) {
  nav {
    height: 70px;
  }
}
@media (width >= 1280px) {
  nav {
    height: 80px;
  }
  nav .menu {
    top: 7px;
  }
}
@media (width >= 1366px) {
  nav {
    height: 80px;
  }
  nav .menu {
    top: 12px;
  }
}
@media (width >= 1400px) {
  nav {
    height: 80px;
  }
  nav .menu {
    top: 10px;
  }
}

.menu-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.menu-icon {
  display: none;
  color: #173833;
  font-size: 30px;
  cursor: pointer;
}

.menu {
  position: relative;
  display: flex;
  list-style: none;
  align-items: center;
}

.menu > li {
  position: relative;
  padding: 0 5px;
}

.menu a {
  display: block;
  color: #173833;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1rem 0.5rem;
  transition: ease-in-out 0.5s all;
}
@media (width >= 1024px) {
  .menu a {
    font-size: 10px !important;
  }
}
@media (width >= 1200px) {
  .menu a {
    font-size: 11px !important;
  }
}

.menu a:hover {
  color: #ed6939;
}

/* Estilo básico para item ativo */
nav a.active {
  position: relative;
  color: #ed6939;
  font-weight: 700;
}
nav a.active::after {
  content: "";
  position: absolute;
  top: calc(100% - 10px);
  left: 25%;
  width: 50%;
  height: 3px;
  border-radius: 4px;
  background-color: #ed6939;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }
  .menu {
    display: none;
    position: absolute;
    z-index: 999;
    top: 230px;
    left: 0;
    right: 0;
    background-color: #edebdd;
    flex-direction: column;
  }
  .menu.active {
    position: fixed;
    display: flex;
    max-width: 70%;
    margin: auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(22, 22, 22, 0.3);
    box-shadow: 0 0 20px rgba(22, 22, 22, 0.6);
  }
  .menu.active::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    top: -5px;
    left: calc(50% - 15px);
    background-color: #ffffff;
    transform: rotate(45deg);
  }
  .menu.active li a {
    padding: 0.5rem;
  }
  .menu > li {
    width: 100%;
  }
}
.logo {
  position: relative;
}
.logo a {
  display: block;
}
@media (width >= 200px) {
  .logo {
    width: 115px;
  }
}
@media (width >= 768px) {
  .logo {
    width: 145px;
  }
}
@media (width >= 1024px) {
  .logo {
    width: 80px;
  }
}
@media (width >= 1152px) {
  .logo {
    width: 80px;
  }
}
@media (width >= 1280px) {
  .logo {
    width: 110px;
    top: 6px;
  }
}
@media (width >= 1366px) {
  .logo {
    width: 102px;
    top: 10px;
  }
}
@media (width >= 1400px) {
  .logo {
    width: 114px;
    top: 8px;
  }
}
@media (width >= 1440px) {
  .logo {
    width: 106px;
  }
}
@media (width >= 1600px) {
  .logo {
    width: 120px;
    top: 22px;
  }
}
@media (width >= 1680px) {
  .logo {
    width: 120px;
  }
}
@media (width >= 1920px) {
  .logo {
    width: 144px;
  }
}
@media (width >= 2200px) {
  .logo {
    width: 150px;
    top: 25px;
  }
}

/*
* Section s
*/
@media (width >= 768px) {
  .internal-content {
    padding: 5rem;
  }
}
@media (width >= 200px) {
  .internal-content article {
    padding: 40px;
  }
}
@media (width >= 768px) {
  .internal-content article {
    padding: 0;
    text-align: justify;
  }
}

@media (width < 768px) {
  .text-break span {
    display: block;
    width: 100%;
  }
}

.icone-estrela {
  width: 60px;
  margin: auto;
  margin-bottom: 20px;
}

.grafismo-estrela {
  background-size: 66%;
  background-position: left bottom;
  background-repeat: no-repeat;
}

@media (width > 768px) {
  .grafismo-estrela-amarelo {
    background-image: url("../img/layout/desktop/grafismo-estrela-amarelo.png");
    padding-bottom: 8rem;
  }
}
@media (width <= 768px) {
  .grafismo-estrela-amarelo {
    background-image: url("../img/layout/mobile/grafismo-estrela-amarelo.png");
    padding-bottom: 1rem;
  }
}

@media (width > 768px) {
  .grafismo-estrela-creme {
    background-image: url("../img/layout/desktop/grafismo-estrela-creme.png");
    padding-bottom: 8rem;
  }
}
@media (width <= 768px) {
  .grafismo-estrela-creme {
    background-image: url("../img/layout/mobile/grafismo-estrela-creme.png");
    padding-bottom: 1rem;
  }
}

.link-cardapio-eventos {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #173833;
  transition: ease-in-out 0.2s;
  box-shadow: 7px 7px 20px rgba(22, 22, 22, 0.6);
  border-radius: 3px;
}
@media (width >= 768px) {
  .link-cardapio-eventos {
    width: 300px;
    height: 500px;
    padding: 40px;
  }
}
@media (width < 768px) {
  .link-cardapio-eventos {
    width: 250px;
    height: 417px;
    padding: 40px;
    margin-top: 40px;
  }
}
.link-cardapio-eventos:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 23px rgba(22, 22, 22, 0.8);
}

.capa-escolher-cardapio {
  border: none;
}
.capa-escolher-cardapio span {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.75rem;
  margin-top: 10px;
  letter-spacing: 1px;
}
.capa-escolher-cardapio img {
  box-shadow: 5px 5px 10px rgba(22, 22, 22, 0.5);
  border-radius: 4px;
  transition: ease-in-out 0.2s;
}
.capa-escolher-cardapio img:hover {
  transform: scale(1.05);
  box-shadow: 5px 5px 15px rgba(22, 22, 22, 0.7);
}

/*
PÁGINA CONTATO
*/
@media (width >= 200px) {
  #contato article {
    padding: 40px;
  }
}
@media (width >= 768px) {
  #contato article {
    padding: 8rem;
    text-align: justify;
  }
}

/*
PÁGINA TRABALHE CONOSCO
*/
@media (width >= 200px) {
  #trabalhe-conosco article {
    padding: 40px;
  }
}
@media (width >= 768px) {
  #trabalhe-conosco article {
    padding: 4rem;
  }
}
@media (width >= 1366px) {
  #trabalhe-conosco article {
    padding: 4rem;
  }
}
@media (width >= 1600px) {
  #trabalhe-conosco article {
    padding: 8rem;
  }
}

body, ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.main {
  position: relative;
  max-width: 1920px;
  margin: auto;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(23, 56, 51, 0.7);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: #173833;
  border-radius: 8px;
  border: 2px solid rgba(23, 56, 51, 0.7);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(23, 56, 51, 0.05);
}
::-webkit-scrollbar-thumb:active {
  background: rgba(23, 56, 51, 0.1);
}

* {
  scrollbar-color: #173833 rgba(23, 56, 51, 0.7);
  scrollbar-width: thin;
}/*# sourceMappingURL=main.css.map */