* {
  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;
  padding-top: 60px; /* ou a altura exata do seu cabeçalho */
}
#logo {
    /* Mantenha suas outras propriedades de estilo aqui (cor, tamanho, etc.) */
    font-family: 'Pacifico', cursive; /* Aplica a fonte cursiva */
    font-style: normal; /* Garante que não esteja em itálico forçado se não quiser */
    /* Exemplo de outras propriedades que você pode ter ou querer ajustar: */
    /* color: #FFD700; */ /* Cor dourada para combinar com o estilo */
    /* font-size: 36px; */ /* Aumente o tamanho se necessário */
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.3); */ /* Sombra para destaque */
}
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;
}
.titulo-destaque {
  font-style: italic;
  font-size: 2.5rem;
  font-weight: bold;
  color: #4A4A4A;
}

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) {
  .navbar .content .items {
    display: none; /* Esconde os itens no mobile */
  }
}


@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: #0ae7e7;
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 30px;
  border-radius: 5px;
}

.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: #07e2e2;
  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 .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /*Ícones PC*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar .content .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /*Ícones PC*/
  -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 .icons {
    display: flex; /* Exibe os ícones no mobile */
  }
}

.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 #110ea9;
}

.navbar .itemsMobile {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -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: #0e63a9;
  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: #0e51a9;
  width: 100%;
  height: 100vh;
}

.banner #subtitle {
  /* Margem atual: 15px topo, 25px fundo */
  /* Nova margem: Valores menores para aproximar o texto */
  margin: 5px 0 10px 0; /* Exemplo: 5px topo, 10px fundo. Ajuste conforme necessário. */
  color: #FAFAFA; /* Sua cor atual, ou a cor verde perolizada que definimos antes */
  
  /* Se você já tem os estilos de fonte, cor, itálico e animação que definimos antes, mantenha-os aqui */
  font-family: 'Montserrat', sans-serif;
  color: #A2E0A2; /* Verde perolizado para o subtítulo */
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  animation: fadeInSlideIn 2.2s ease-out forwards;
  animation-delay: 1.2s;
}
.bannerContent {
  padding: 0 20px;
  max-width: 100%;
}
@media (max-width: 768px) {
  #subtitle {
    padding: 0 16px;
    font-size: 1rem;
  }
}
.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;
}

/* Estilo para dispositivos móveis */
@media (max-width: 767px) {
  .navbar .content .items {
      display: none; /* Esconde os itens de navegação no celular */
  }
}

/* Estilo para dispositivos com tela maior (PC) */
@media (min-width: 768px) {
  .navbar .content .items {
      display: flex; /* Exibe os itens de navegação no PC */
      -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: 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 {
    width: 50%; /* Ajuste conforme necessário */
    display: block; /* Garante que a imagem será exibida */
    margin: 500px 0 0 -210px; /* Move mais para a esquerda */
  }
}




@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: #0e51a9;
  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: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.linkMenu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  background-color: #ffffff;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
}
.linkMenu {
  background-color: blue; /* Define a cor azul */
  color: white; /* Mantém o texto legível */
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.linkMenu:hover {
  background-color: darkblue; /* Altera a cor ao passar o mouse */
}

.linkMenu .icon {
  display: inline-block;
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Hover: ícone gira levemente e botão muda de cor */
.linkMenu:hover {
  background-color: #ffcc70;
  color: #000;
}

.linkMenu:hover .icon {
  transform: rotate(10deg) scale(1.2);
}

.linkMenu.active {
  background-color: #ffa500;
  color: white;
  font-weight: bold;
}

@media (max-width: 600px) {
  .linksMenu {
    flex-direction: column;
    align-items: center;
  }

  .linkMenu {
    width: 90%;
    justify-content: center;
    text-align: center;
  }
}



.cardsMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.cardsMenu .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 290px;
  background: #FFFFFF;
  border-radius: 15px;
  padding: 25px;
  -webkit-box-shadow: 0 0 160px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 160px 0 rgba(0, 0, 0, 0.15);
}

.cardsMenu .card .cardImg {
  text-align: center;
}

.cardsMenu .card .cardImg img {
  width: 80%;
  margin: 10px 0 15px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.cardsMenu .card h4 {
  font-size: 1.2rem;
}

.cardsMenu .card p {
  margin: 6px 0 12px 0;
}

.cardsMenu .card .lastPrice {
  font-size: .8rem;
  font-weight: 700;
  margin: 0;
}

.cardsMenu .card .lastPrice span {
  font-size: 1rem;
  text-decoration: line-through;
}

.cardsMenu .card .price {
  font-size: .8rem;
  font-weight: 700;
}

.cardsMenu .card .price span {
  font-size: 1.2rem;
  color: #333;
}

.cardsMenu .card .btn {
  border: 1px solid #0e63a9;
  color: #0e32a9;
  background: transparent;
  cursor: pointer;
  width: 100%;
  bottom: 0;
}

.cardsMenu .card .btn .iconify-inline {
  margin-right: 3px;
}

.cardsMenu .card .btn:hover {
  background: #0e32a9;
  color: #FFFFFF;
}

#promotions {
  background:  #0e32a9;
}

#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: #0e32a9;
}

#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:  #0e32a9;
  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:  #0e32a9;
}

.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: #0e32a9;
  -webkit-transition: .5s ease;
  transition: .5s ease;
}

.footerBottom {
  background:  #0e32a9;
}

.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;
}

.spacing {
  margin-bottom: 10px; 
}

.price {
  font-size: 1.2em; 
}

.size-selector {
  margin-top: 5px; 
}

.itemsMobile {
  display: none;
}

.btnMobile {
  display: block; 
}

.itemsMobile.active {
  display: block;
}

@media (max-width: 768px) {
  .navbar .items {
      display: none; 
  }

  .btnMobile {
      display: block; 
  }
}

.funny-animation {
  position: fixed;
  top: 50%;
  left: 50%;
  font-size: 60px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 9999;
}

.funny-animation.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.4) rotate(15deg);
}
.magic-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff7f0a, #f94d00);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.magic-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-20deg);
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

.magic-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

/* Para responsividade */
@media (max-width: 600px) {
  .magic-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
.icon-animation {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  animation: bounceScale 1.5s ease forwards;
  pointer-events: none; /* para não interferir em cliques */
  z-index: 9999;
  user-select: none;
}

/* Animação de bounce + scale */
@keyframes bounceScale {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}
.google-review-icon {
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.google-review-icon:hover {
  transform: scale(1.3) rotate(10deg);
  filter: drop-shadow(0 0 5px #4285F4);
}

    .instagram-icon, .google-review-icon {
      display: inline-block;
      margin: 0 8px;
      cursor: pointer;
      transition: transform 0.3s ease, filter 0.3s ease;
    }
    .instagram-icon:hover {
      transform: scale(1.3) rotate(-10deg);
      filter: drop-shadow(0 0 5px #E1306C);
    }
    .google-review-icon:hover {
      transform: scale(1.3) rotate(10deg);
      filter: drop-shadow(0 0 5px #4285F4);
    }

    .floating-cart {
    position: fixed;
    bottom: 160px; /* 👈 Subido mais ainda */
    right: 20px;
    background-color: #007bff; /* Azul padrão */
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    z-index: 998;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cart:hover {
    transform: scale(1.05);
}

.floating-cart .iconify-inline {
    color: white; /* Ícone branco */
    font-size: 28px;
}

.cartNotify {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    padding: 2px 6px;
    min-width: 20px;
    text-align: center;
}

.cart-link {
    position: relative;
    display: inline-block;
}
 
