* {
  padding: 0;
  margin: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  overflow-x: hidden;
  background: #FFFFFF;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

::-moz-selection {
  background: #FF7F0A;
  color: #FFFFFF;
}

::selection {
  background: #FF7F0A;
  color: #FFFFFF;
}

h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 100%;
  color: #FFFFFF;
}

h1 span {
  color: #FF7F0A;
}

h3 {
  font-weight: 800;
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 35px;
  text-align: center;
}

h4 {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 130%;
  color: #949494;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 5rem 0;
}

@media (max-width: 767px) {
  .container {
    width: 95%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 90%;
  }
}

@media (min-width: 1025px) {
  .container {
    width: 70%;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1024px) {
  .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

a {
  text-decoration: none;
}

.btn {
  background: #FF7F0A;
  color: #A90E0E;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 3px;
}

.btn:hover {
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background: #A90E0E;
  width: 100%;
  padding: 20px 0;
}

.navbar .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .navbar .content {
    width: 95%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .navbar .content {
    width: 90%;
  }
}

@media (min-width: 1025px) {
  .navbar .content {
    width: 70%;
  }
}

.navbar .content #logo {
  font-size: 2rem;
  font-weight: 900;
  color: #FFFFFF;
}

.navbar .content .items, .navbar .content .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1229px) {
  .navbar .content .items, .navbar .content .icons {
    display: none;
  }
}

.navbar .content .items {
  gap: 55px;
}

.navbar .content .items a {
  font-weight: 500;
  color: #FAFAFA;
}

.navbar .content .items a:hover {
  color: #FF7F0A;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.navbar .content .btnMobile {
  font-size: 2rem;
  color: #FFFFFF;
}

@media (min-width: 1230px) {
  .navbar .content .btnMobile {
    display: none;
  }
}

.navbar .content .btnMobile:hover {
  color: #FF7F0A;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.navbar .icons {
  gap: 50px;
}

.navbar .icons #cart, .navbar .icons a {
  position: relative;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

.navbar .icons #cart:hover, .navbar .icons a:hover {
  color: #FF7F0A;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.navbar .icons #cart .cartNotify, .navbar .icons a .cartNotify {
  display: none;
  position: absolute;
  right: -1px;
  top: 1px;
  background: lightgreen;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #A90E0E;
}

.navbar .itemsMobile {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px 0;
  background: #A90E0E;
  width: 65%;
  height: 100vh;
  -webkit-box-shadow: 0 0 150px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 150px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

@media (min-width: 1025px) {
  .navbar .itemsMobile {
    display: none;
  }
}

.navbar .itemsMobile .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}

.navbar .itemsMobile a, .navbar .itemsMobile div {
  font-weight: 500;
  color: #FFFFFF;
  font-size: 1.2rem;
}

.navbar .itemsMobile a:hover, .navbar .itemsMobile div:hover {
  color: #FF7F0A;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.banner {
  background: #A90E0E;
  width: 100%;
  height: 100vh;
}

.banner #subtitle {
  margin: 15px 0 25px 0;
  color: #FAFAFA;
}

.banner .bannerContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  margin: 0 auto;
  max-width: 1500px;
}

@media (max-width: 767px) {
  .banner .bannerContent {
    width: 95%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .banner .bannerContent {
    width: 90%;
  }
}

@media (min-width: 1025px) {
  .banner .bannerContent {
    width: 70%;
  }
}

.banner .bannerContent .social {
  margin-top: 15%;
}

.banner .bannerContent .social a {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-right: 20px;
}

.banner .bannerContent .social a:hover {
  color: #FF7F0A;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.banner img {
  width: 50%;
  margin-left: 15%;
  margin-right: -5%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 767px) {
  .banner img {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .banner img {
    margin: 0 -3% 0 3%;
  }
}

.items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 3.5%;
}

@media (max-width: 1024px) {
  .items {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

@media (min-width: 768px) and (max-width: 1024px) {
  .items .cardItems {
    width: 70%;
  }
}

@media (min-width: 1025px) {
  .items .cardItems {
    width: 250px;
  }
}

.items .cardItems .iconify {
  color: #A90E0E;
  font-size: 5.5rem;
}

.items .cardItems h4 {
  margin: 20px 0 10px 0;
}

#about {
  background: #FAFAFA;
  text-align: center;
}

#about h3 {
  margin-bottom: 12px;
}

#about span {
  font-weight: 800;
  color: #333;
}

.linksMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 35px;
  gap: 25px 50px;
}

/* Correção para botões do menu links */
.linksMenu button {
  border: none;
  background: transparent;
  font-weight: 600;
  color: #949494;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.linksMenu button:hover,
.linksMenu .linkMenu:hover {
  color: #FF7F0A;
  background: rgba(255, 127, 10, 0.1);
  transform: translateY(-2px);
}

.linksMenu .active {
  color: #A90E0E !important;
  font-weight: 700;
  background: rgba(169, 14, 14, 0.1);
  position: relative;
  line-height: 150%;
}

.linksMenu .active:after {
  content: '';
  position: absolute;
  border-bottom: 3px solid #A90E0E;
  border-radius: 2px;
  width: 18px;
  height: 2px;
  bottom: 2px;
  left: calc(50% - 9px);
}

/* Cards Menu - Versão Melhorada */
.cardsMenu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cardsMenu .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  min-height: 420px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.cardsMenu .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(169, 14, 14, 0.15);
  border-color: rgba(169, 14, 14, 0.1);
}

.cardsMenu .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #A90E0E, #FF7F0A);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cardsMenu .card:hover::before {
  transform: scaleX(1);
}

.cardsMenu .card .cardImg {
  text-align: center;
  padding: 15px 0;
  flex-shrink: 0;
}

.cardsMenu .card .cardImg img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  user-select: none;
}

.cardsMenu .card:hover .cardImg img {
  transform: scale(1.05);
}

.cardsMenu .card .cardContent {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 10px;
}

.cardsMenu .card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 2.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cardsMenu .card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cardsMenu .card .priceSection {
  margin-bottom: 15px;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.cardsMenu .card .lastPrice {
  font-size: 0.85rem;
  font-weight: 600;
  color: #999;
  margin-bottom: 5px;
}

.cardsMenu .card .lastPrice span {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #ccc;
}

.cardsMenu .card .price {
  font-size: 1rem;
  font-weight: 700;
  color: #A90E0E;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cardsMenu .card .price span {
  font-size: 1.4rem;
  color: #A90E0E;
  font-weight: 800;
}

.cardsMenu .card .btn {
  border: 2px solid #A90E0E;
  color: #A90E0E;
  background: transparent;
  cursor: pointer;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.cardsMenu .card .btn .iconify-inline {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.cardsMenu .card .btn:hover {
  background: #A90E0E;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(169, 14, 14, 0.3);
}

.cardsMenu .card .btn:hover .iconify-inline {
  transform: translateX(3px);
}

.cardsMenu .card .btn:active {
  transform: translateY(0);
}

/* Badge/Tag de promoção */
.cardsMenu .card .promotionBadge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #FF7F0A;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

/* Responsividade melhorada para Cards Menu */
@media (max-width: 480px) {
  .cardsMenu {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  
  .cardsMenu .card {
    min-height: 380px;
  }
  
  .cardsMenu .card h4 {
    font-size: 1.2rem;
  }
  
  .cardsMenu .card .cardImg img {
    height: 150px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .cardsMenu {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cardsMenu {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1025px) {
  .cardsMenu {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Animação de loading para cards */
@keyframes cardPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.cardsMenu .card.loading {
  animation: cardPulse 1.5s ease-in-out;
}

/* Estados especiais */
.cardsMenu .card.outOfStock {
  opacity: 0.7;
}

.cardsMenu .card.outOfStock::after {
  content: 'Indisponível';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.cardsMenu .card.outOfStock .btn {
  background: #ccc;
  border-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

.cardsMenu .card.outOfStock .btn:hover {
  background: #ccc;
  color: #666;
  transform: none;
  box-shadow: none;
}

#promotions {
  background: #A90E0E;
}

#promotions h3 {
  color: #FFFFFF;
}

#service .locAndCont, #service .days {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 55px;
  margin: 50px 0;
}

#service .cardDays h5 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #A90E0E;
}

#service .cardLAC {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#service .cardLAC .circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #A90E0E;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  margin-right: 25px;
}

#service .cardLAC .iconify-inline {
  color: #FFFFFF;
  font-size: 1.8rem;
}

#service .cardLAC p {
  line-height: 150%;
}

.map {
  width: 100%;
  height: 250px;
  border: 0;
  margin-bottom: -4px;
}

.footerTop {
  background: #FAFAFA;
}

.footerTop .content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 2fr 1fr;
      grid-template-columns: 2fr 2fr 1fr;
  gap: 60px;
  margin: 0 auto;
  padding: 75px 0;
  max-width: 1500px;
}

@media (max-width: 767px) {
  .footerTop .content {
    width: 95%;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footerTop .content {
    width: 90%;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) {
  .footerTop .content {
    width: 70%;
  }
}

.footerTop .content h4 {
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.footerTop .content #logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: #A90E0E;
}

.footerTop .content .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footerTop .content .links a {
  margin-bottom: 12px;
  color: #949494;
  font-weight: 500;
}

.footerTop .content .links a:hover {
  color: #A90E0E;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.footerBottom {
  background: #A90E0E;
}

.footerBottom .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 28px 0 22px 0;
  max-width: 1500px;
}

@media (max-width: 767px) {
  .footerBottom .content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 95%;
    text-align: center;
    gap: 25px 0;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footerBottom .content {
    width: 90%;
  }
}

@media (min-width: 1025px) {
  .footerBottom .content {
    width: 70%;
  }
}

.footerBottom .content p {
  color: #FAFAFA;
}

.footerBottom .content .social a {
  color: #FAFAFA;
  font-size: 1.2rem;
  margin-left: 18px;
}

.footerBottom .content .social a:hover {
  color: #FF7F0A;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}
/*# sourceMappingURL=style.css.map */