@charset "UTF-8";
@font-face {
  font-family: "Lucky"; /* nome que você vai usar no CSS */
  src: url("../font/Luckybones-Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --orange:#DBB727;
  --verde:#22f217;
  --roxo:#603a96;
  --fredoka:'Fredoka',sans-serif;
  --lucky:'Lucky',sans-serif;
  --poppins:'Poppins',sans-serif;
}

:root {
  --bg-color: #050505;
  --card-bg: #0f0f0f;
  --gold: #c5a059;
  --gold-light: #e2c285;
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --border-color: #222222;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

:root {
  --neon-green: #39ff14;
  --dark-bg: #000000;
  --card-bg: #121212;
  --text-gray: #cccccc;
  --gamer-font: 'Orbitron', sans-serif;
  --body-font: 'Poppins', sans-serif;
}

@keyframes showText {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.scroll {
  width: 100%;
  height: 1900px;
}

body {
  width: 100%;
  background-color: #fff;
  max-width: 1920px;
  margin: 0 auto; /* centraliza */
  overflow-x: hidden;
}

.scrolled {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  height: 95px;
}
@media (max-width: 700px) {
  .scrolled {
    height: 70px;
  }
}

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

header {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 110px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.3s ease;
  z-index: 900;
}
header .logo img {
  max-width: 120px;
}
@media (max-width: 700px) {
  header .logo img {
    max-width: 90px;
  }
}
@media (max-width: 400px) {
  header .logo img {
    max-width: 80px;
  }
}
header {
  /* NAV LINKS */
}
header .navbar .nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
header .navbar .nav-links li a {
  color: #fff;
  font-family: var(--lucky);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
header .navbar .nav-links li a:hover {
  opacity: 0.6;
}
@media (max-width: 900px) {
  header .navbar {
    display: none;
  }
}
header {
  /* SOCIAL */
}
header .nav-social {
  display: flex;
  gap: 18px;
  list-style: none;
}
header .nav-social a {
  color: #fff;
  font-size: 22px;
  transition: 0.3s;
}
header .nav-social a:hover {
  opacity: 0.6;
}
@media (max-width: 900px) {
  header .nav-social {
    display: none;
  }
}
header {
  /* BOTÃO MOBILE */
}
header .menu-btn {
  display: none;
  border: none;
  background: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 900px) {
  header .menu-btn {
    display: flex;
  }
}

#overlay {
  position: fixed;
  z-index: 995;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: none;
}
#overlay.active {
  display: block;
}

.sidebar {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: -300px;
  top: 0;
  width: 300px;
  height: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
  transition: 0.3s ease; /* anima ao abrir */
}
.sidebar.active {
  left: 0;
}
.sidebar .divider {
  height: 1px;
  background: #efeff1;
  margin: 8px 0;
}
.sidebar .sidebar-header {
  display: flex;
  width: 100%;
  height: 80px;
  justify-content: space-between;
  background: url("../img/sidebar-hero.jpg");
  padding: 10px;
}
.sidebar .sidebar-header .logo {
  max-width: 79px;
}
.sidebar .sidebar-header .logo img {
  width: 100%;
}
.sidebar .sidebar-header .close {
  color: white;
  background: none;
  border: none;
}
.sidebar .sidebar-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar .sidebar-body .sidebar-h2 {
  color: rgba(59, 59, 59, 0.436);
  font-size: 14px;
  font-family: var(--poppins);
  margin-left: 10px;
}
.sidebar .sidebar-body .item {
  width: 100%;
  color: black;
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 30px;
  padding: 10px;
  gap: 20px;
  transition: background 0.3s ease;
}
.sidebar .sidebar-body .item:hover {
  background-color: rgba(0, 0, 0, 0.4666666667);
}
.sidebar .sidebar-body .item a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar .sidebar-body .item a h3 {
  font-family: var(--lucky);
  font-size: 20px;
  color: orange;
}
.sidebar .sidebar-body .item a img {
  width: 32px;
}
.sidebar .sidebar-body .redes a {
  color: black;
  font-size: 18px;
}

ul {
  list-style: none;
}

a {
  text-decoration: underline;
}

footer img {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 20;
  width: 90px;
}
@media (max-width: 786px) {
  footer img {
    width: 60px;
  }
}

.links-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  background-color: var(--verde);
}
@media (max-width: 780px) {
  .links-footer {
    display: none;
  }
}

.flex-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.flex-col {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.botao {
  font-family: var(--poppins);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #DBB727, #c7a221);
  padding: 14px 40px;
  border-radius: 8px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
}
@media (max-width: 786px) {
  .botao {
    padding: 10px 20px;
    font-weight: 300;
    font-size: 18px;
  }
}

.botao:hover {
  transform: scale(1.03);
}

/* Efeito espelhado */
.efeito-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: 0.6s ease;
}

.efeito-shine:hover::before {
  left: 130%;
}

.title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.title .icons {
  display: flex;
}
@media (max-width: 786px) {
  .title .icons img {
    width: 75px;
  }
}
@media (max-width: 550px) {
  .title .icons img {
    width: 60px;
  }
}
.title h2 {
  font-family: var(--lucky);
  color: #c7a221;
}
.title p {
  text-align: center;
  color: black;
  font-family: var(--poppins);
}

.hero {
  width: 100%;
  height: 100vh;
  background: url("../img/home/hero.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  margin: 0; /* garante que não tenha espaço antes */
  z-index: 5;
  padding: 0;
}
.hero .box {
  padding: 120px 10px 10px 10px; /* top right bottom left */
  width: 100%;
  display: flex;
  align-items: start;
  flex-direction: row;
}
@media (max-width: 786px) {
  .hero .box {
    flex-direction: column;
  }
}
.hero .box .left {
  width: 50%;
  height: auto;
  padding: 0 40px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
@media (max-width: 786px) {
  .hero .box .left {
    width: 100%;
    padding: 10px;
    align-items: center;
    gap: 20px;
  }
}
.hero .box .left h1 {
  font-family: var(--lucky);
  font-size: 40px;
  -webkit-text-stroke: 1px var(--orange); /* Largura e cor da borda */
}
@media (max-width: 786px) {
  .hero .box .left h1 {
    font-size: 35px;
    text-align: center;
  }
}
@media (max-width: 786px) {
  .hero .box .left p {
    text-align: center;
  }
}
.hero .box .right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 786px) {
  .hero .box .right {
    width: 100%;
  }
}
.hero .box .right img {
  width: 600px;
}
@media (max-width: 1180px) {
  .hero .box .right img {
    width: 400px;
  }
}
@media (max-width: 726px) {
  .hero .box .right img {
    width: 400px;
  }
}
@media (max-width: 426px) {
  .hero .box .right img {
    width: 100%;
  }
}

.sobre {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 786px) {
  .sobre {
    padding-top: 80px;
  }
}
.sobre .box {
  width: 100%;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
}
@media (max-width: 786px) {
  .sobre .box {
    flex-direction: column;
    align-items: center;
  }
}
.sobre .box .left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 786px) {
  .sobre .box .left {
    width: 100%;
  }
}
.sobre .box .left .video-card {
  width: 360px; /* você pode ajustar */
  aspect-ratio: 9/16; /* vídeo sempre 9:16 */
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.sobre .box .left .video-card video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sobre .box .info {
  flex: 1;
}
.sobre .box .info h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  font-family: "Lucky", sans-serif;
}
.sobre .box .info .buffet-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 18px;
}
.sobre .box .info .buffet-item img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sobre .box .info .buffet-item p {
  color: #000;
}
.sobre .box2 {
  width: 100%;
  display: flex;
}
@media (max-width: 786px) {
  .sobre .box2 {
    flex-direction: column;
    gap: 50px;
  }
}
.sobre .box2 .sobre-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 786px) {
  .sobre .box2 .sobre-text {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
.sobre .box2 .sobre-text .header-sobre {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.sobre .box2 .sobre-text .header-sobre h2 {
  color: var(--roxo);
  font-family: "Lucky", sans-serif;
  font-size: 25px;
}
.sobre .box2 .sobre-text .header-sobre img {
  width: 40px;
}
.sobre .box2 .sobre-text p {
  font-family: "Poppins", sans-serif;
  margin-left: 10px;
  margin-right: 10px;
  color: #000;
}
@media (max-width: 786px) {
  .sobre .box2 .sobre-text p {
    text-align: start;
    font-size: 15px;
  }
}
.sobre .box2 .sobre-text .estatisticos {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.sobre .box2 .sobre-text .estatisticos .icons {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sobre .box2 .sobre-text .estatisticos .icons img {
  max-width: 80px;
}
@media (max-width: 786px) {
  .sobre .box2 .sobre-text .estatisticos .icons img {
    max-width: 40px;
  }
}
.sobre .box2 .sobre-text .estatisticos .icons p {
  color: rgb(0, 0, 0);
  text-align: center;
}
.sobre .box2 .sobre-text .estatisticos .icons .contador {
  font-size: 26px;
  font-weight: bold;
  color: rgb(0, 0, 0);
  font-family: var(--lucky);
}
.sobre .box2 .sobre-img {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 786px) {
  .sobre .box2 .sobre-img {
    width: 100%;
  }
}
.sobre .box2 .sobre-img .img-box {
  background: url("../img/home/familia.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 600px;
  height: 600px;
  border-radius: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
@media (max-width: 786px) {
  .sobre .box2 .sobre-img .img-box {
    margin: 10px;
    width: 500px;
    height: 500px;
    border-radius: 30px;
  }
}
.sobre .box3 {
  font-family: var(--poppins);
  color: #000;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.sobre .box3 h2 {
  font-family: var(--lucky);
  font-size: 24px;
}
.sobre .box3 .tipos {
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 850px) {
  .sobre .box3 .tipos {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 700px) {
  .sobre .box3 .tipos {
    flex-direction: column;
    gap: 20px;
  }
}
.sobre .box3 .tipos .auxiliar-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 700px) {
  .sobre .box3 .tipos .auxiliar-flex {
    flex-direction: column;
    gap: 30px;
  }
}
.sobre .box3 .tipos .auxiliar-flex .cards-tipo {
  display: flex;
  padding: 10px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border-radius: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.sobre .box3 .tipos .auxiliar-flex .cards-tipo img {
  width: 90px;
}
.sobre .box3 .tipos .auxiliar-flex .cards-tipo p {
  max-width: 300px;
  text-align: center;
}

.home-cardapio {
  width: 100%;
  height: auto;
}
.home-cardapio .swiper {
  position: relative;
  height: 400px;
  overflow-y: hidden;
}
.home-cardapio .swiper .swiper-button-prev {
  position: absolute;
  left: 30%;
  bottom: 196px;
}
@media (max-width: 1000px) {
  .home-cardapio .swiper .swiper-button-prev {
    left: 20%;
  }
}
@media (max-width: 600px) {
  .home-cardapio .swiper .swiper-button-prev {
    left: 10%;
  }
}
@media (max-width: 450px) {
  .home-cardapio .swiper .swiper-button-prev {
    left: 6%;
  }
}
.home-cardapio .swiper .swiper-button-next {
  position: absolute;
  right: 30%;
  bottom: 196px;
}
@media (max-width: 1000px) {
  .home-cardapio .swiper .swiper-button-next {
    right: 20%;
  }
}
@media (max-width: 600px) {
  .home-cardapio .swiper .swiper-button-next {
    right: 10%;
  }
}
@media (max-width: 450px) {
  .home-cardapio .swiper .swiper-button-next {
    right: 6%;
  }
}
.home-cardapio .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-cardapio .swiper .swiper-slide .cardapio-item-home {
  background-color: #000;
  border-radius: 30px;
  width: 300px;
  height: 350px;
  position: relative;
}
.home-cardapio .swiper .swiper-slide .cardapio-item-home h3 {
  position: absolute;
  z-index: 12;
}
.home-cardapio .swiper .swiper-slide .cardapio-item-home img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  border-radius: 30px;
}

.localizacao {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.localizacao .mapa {
  max-width: 900px;
  width: 100%;
  padding: 40px;
}
.localizacao .mapa iframe {
  width: 100%;
  height: 400px;
}

.slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.slider .list .item {
  position: absolute;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.slider .list .item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.slider .list .item.active p, .slider .list .item.active h2 {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(10px);
  animation: showText 0.6s ease forwards;
}
.slider .list .item.active h2 {
  animation-delay: 0.2s;
}
.slider .list .item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000 40%, transparent);
}
.slider .list .item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider .list .item .content {
  color: white;
  position: absolute;
  top: 20%;
  left: 10%;
  max-width: 500px;
  z-index: 2;
}
.slider .list .item .content h2 {
  font-size: 90px;
  margin: 10px 0;
}
@media (max-width: 789px) {
  .slider .list .item .content h2 {
    font-size: 40px;
  }
}
.slider .list .item .content p {
  font-family: var(--poppins);
}
.slider .list .item .content p:first-child {
  letter-spacing: 8px;
  text-transform: uppercase;
}
.slider .arrows {
  position: absolute;
  display: flex;
  gap: 10px;
  top: 35%;
  right: 40px;
  z-index: 5;
}
@media (max-width: 789px) {
  .slider .arrows {
    top: 85%;
  }
}
.slider .arrows button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 6px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
}
.slider .arrows button:hover {
  transform: scale(1.1);
}
.slider .arrows button img {
  pointer-events: none;
  transition: filter 0.3s, transform 0.3s;
}
.slider .arrows button img:hover {
  filter: invert(1);
  transform: scale(1.1);
}
.slider .cards {
  max-width: 820px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 10px 50px;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  overflow-x: auto;
  scroll-behavior: smooth;
  z-index: 5;
  /* UX */
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 789px) {
  .slider .cards {
    bottom: 20%;
  }
}
.slider .cards .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  filter: brightness(0.5);
  cursor: pointer;
  transition: 0.3s;
}
.slider .cards .item.active {
  filter: brightness(1.4);
  border: solid 1px white;
  border-radius: 12px;
}
.slider .cards .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

.about-cardapio {
  width: 100%;
  display: flex;
  gap: 40px;
  background-color: #000;
}
@media (max-width: 786px) {
  .about-cardapio {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.about-cardapio .box-video {
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-cardapio .box-video video {
  width: 300px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 30px;
}
@media (max-width: 386px) {
  .about-cardapio .box-video video {
    width: 230px;
  }
}
.about-cardapio .box-text {
  width: 50%;
}
@media (max-width: 786px) {
  .about-cardapio .box-text {
    width: 100%;
    flex-direction: column;
    margin-top: 0;
  }
}
.about-cardapio .box-text .top-cardapio {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 786px) {
  .about-cardapio .box-text .top-cardapio {
    gap: 10px;
  }
}
.about-cardapio .box-text .top-cardapio img {
  width: 60px;
}
@media (max-width: 786px) {
  .about-cardapio .box-text .top-cardapio img {
    width: 45px;
  }
}
.about-cardapio .box-text .top-cardapio h2 {
  font-family: var(--lucky);
  font-size: 27px;
}
@media (max-width: 786px) {
  .about-cardapio .box-text .top-cardapio h2 {
    font-size: 23px;
  }
}
@media (max-width: 786px) {
  .about-cardapio .box-text .top-cardapio h2 {
    font-size: 18px;
  }
}
.about-cardapio .box-text p {
  padding: 30px;
  font-size: 16px;
  font-family: var(--poppins);
}
@media (max-width: 786px) {
  .about-cardapio .box-text p {
    text-align: justify;
    font-size: 14px;
    padding: 10px;
    width: 100%;
  }
}
@media (max-width: 786px) {
  .about-cardapio .box-text p {
    font-size: 11px;
    padding: 10px;
  }
}

.categorias-cardapio {
  width: 100%;
  padding-top: 30px;
  background-color: #000;
}
@media (max-width: 386px) {
  .categorias-cardapio {
    padding-top: 20px;
  }
}
.categorias-cardapio .top-cardapio {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.categorias-cardapio .top-cardapio h2 {
  font-size: 40px;
  font-family: var(--poppins);
  letter-spacing: 8px;
  text-transform: uppercase;
}
@media (max-width: 786px) {
  .categorias-cardapio .top-cardapio h2 {
    font-size: 30px;
  }
}
@media (max-width: 386px) {
  .categorias-cardapio .top-cardapio h2 {
    font-size: 20px;
  }
}
.categorias-cardapio .top-cardapio p {
  font-family: var(--poppins);
  font-size: 16px;
  padding: 30px;
}
@media (max-width: 786px) {
  .categorias-cardapio .top-cardapio p {
    padding: 10px;
    text-align: center;
    font-size: 14px;
  }
}
@media (max-width: 386px) {
  .categorias-cardapio .top-cardapio p {
    font-size: 12px;
  }
}
.categorias-cardapio .groups {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 4px;
  transition: var(--transition);
}
.categorias-cardapio .groups:hover {
  border-color: var(--gold);
}
.categorias-cardapio .groups h2 {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
.categorias-cardapio .groups h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.categorias-cardapio .groups .items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px 40px;
}
.categorias-cardapio .groups .items-grid .item {
  font-size: 0.9rem;
  color: var(--text-primary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
}
.categorias-cardapio .groups .items-grid .item span.tag {
  font-size: 0.65rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--gold);
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 10px;
}

/* Layout em Linhas */
.brinquedos {
  width: 100%;
  height: 1400px;
  background-color: #000;
  position: relative;
  z-index: 2;
  padding-top: 4px;
}

.jogos {
  width: 100%;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background-image: url("../img/brinquedos/fundo.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  /* CRÍTICO PARA 3D */
  perspective: 3000px;
  overflow: visible;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: visible;
}

.slider-3d {
  --quantity: 10;
  position: absolute;
  width: 200px;
  height: 250px;
  top: 10%;
  left: 50%;
  transform-style: preserve-3d;
  /* CENTRALIZA */
  transform: translateX(-50%) perspective(3000px);
  animation: spin3d 20s linear infinite;
  z-index: 2;
}

/* POSICIONAMENTO AUTOMÁTICO */
.slider-3d .item-3d {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

/* DISTRIBUIÇÃO EM ANEL */
.slider-3d .item-3d:nth-child(1) {
  --i: 0;
}

.slider-3d .item-3d:nth-child(2) {
  --i: 1;
}

.slider-3d .item-3d:nth-child(3) {
  --i: 2;
}

.slider-3d .item-3d:nth-child(4) {
  --i: 3;
}

.slider-3d .item-3d:nth-child(5) {
  --i: 4;
}

.slider-3d .item-3d:nth-child(6) {
  --i: 5;
}

.slider-3d .item-3d:nth-child(7) {
  --i: 6;
}

.slider-3d .item-3d:nth-child(8) {
  --i: 7;
}

.slider-3d .item-3d:nth-child(9) {
  --i: 8;
}

.slider-3d .item-3d:nth-child(10) {
  --i: 9;
}

.slider-3d .item-3d {
  transform: rotateY(calc(var(--i) * 360deg / var(--quantity))) translateZ(550px);
}

.slider-3d img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

/* ANIMAÇÃO */
@keyframes spin3d {
  from {
    transform: translateX(-50%) perspective(3000px) rotateX(-9deg) rotateY(0deg);
  }
  to {
    transform: translateX(-50%) perspective(3000px) rotateX(-9deg) rotateY(360deg);
  }
}
.banner .content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 100vw);
  height: -moz-max-content;
  height: max-content;
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-item-3ds: center;
  z-index: 1;
  padding: 4px;
}

.banner .content h1 {
  font-family: "ICA Rubrik";
  font-size: 10em;
  line-height: 1em;
  color: #051ba9;
  position: relative;
  /* brilho principal */
  text-shadow: 0 0 10px rgba(5, 27, 169, 0.6), 0 0 20px rgba(5, 27, 169, 0.5), 0 0 40px rgba(30, 80, 255, 0.4);
  animation: glowPulse 3s ease-in-out infinite;
}

/* contorno */
.banner .content h1::after {
  position: absolute;
  inset: 0;
  content: attr(data-content);
  z-index: 2;
  -webkit-text-stroke: 2px #d2d2d2;
  color: transparent;
}

/* animação do brilho */
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 10px rgba(5, 27, 169, 0.4), 0 0 20px rgba(5, 27, 169, 0.3), 0 0 30px rgba(30, 80, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(5, 27, 169, 0.8), 0 0 40px rgba(30, 80, 255, 0.6), 0 0 60px rgba(80, 140, 255, 0.4);
  }
  100% {
    text-shadow: 0 0 10px rgba(5, 27, 169, 0.4), 0 0 20px rgba(5, 27, 169, 0.3), 0 0 30px rgba(30, 80, 255, 0.2);
  }
}
.banner .content .author {
  font-family: "Poppins", sans-serif;
  text-align: right;
  margin-right: 10px;
  max-width: 200px;
}

.banner .content .author img {
  width: 200px;
}

.banner .content .model {
  background-image: url(../img/brinquedos/model.webp);
  width: 100%;
  height: 75vh;
  position: absolute;
  bottom: 0;
  left: 0;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 1;
}

@media screen and (max-width: 1223px) {
  .banner .slider-3d {
    width: 160px;
    height: 200px;
    left: 50%;
  }
  .banner .slider-3d .item-3d {
    transform: rotateY(calc(var(--i) * 360deg / var(--quantity))) translateZ(300px);
  }
  .banner .content h1 {
    text-align: center;
    width: 100%;
    text-shadow: 0 10px 20px #000;
    font-size: 7em;
  }
  .banner .content .author {
    color: #fff;
    padding: 20px;
    text-shadow: 0 10px 20px #000;
    z-index: 2;
    max-width: unset;
    width: 100%;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .banner .slider-3d {
    width: 100px;
    height: 150px;
    left: 50%;
  }
  .banner .slider-3d .item-3d {
    transform: rotateY(calc(var(--i) * 360deg / var(--quantity))) translateZ(180px);
  }
  .banner .content h1 {
    font-size: 5em;
  }
}
.brinquedos-buffet {
  width: 100%;
  background-color: #000;
  padding-top: 40px;
}
.brinquedos-buffet .brinquedos-header {
  text-align: center;
}
.brinquedos-buffet .brinquedos-header h1 {
  font-family: var(--gamer-font);
  color: var(--neon-green);
  font-size: 3rem;
  text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .brinquedos-buffet .brinquedos-header h1 {
    font-size: 2rem;
  }
}
.brinquedos-buffet .brinquedos-header .subtitle {
  font-family: var(--gamer-font);
  color: white;
  letter-spacing: 3px;
  font-size: 20px;
}
@media (max-width: 600px) {
  .brinquedos-buffet .brinquedos-header .subtitle {
    font-size: 14px;
  }
}
.brinquedos-buffet .brinquedos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .brinquedos-buffet .brinquedos-container {
    grid-template-columns: 1fr;
  }
}
.brinquedos-buffet .brinquedos-container .card {
  background-color: var(--card-bg);
  border: 2px solid #222;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.brinquedos-buffet .brinquedos-container .card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-green);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}
.brinquedos-buffet .brinquedos-container .card .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: white; /* Para destacar o brinquedo se a imagem tiver fundo branco */
}
@media (max-width: 600px) {
  .brinquedos-buffet .brinquedos-container .card .card-image {
    height: 200px;
  }
}
.brinquedos-buffet .brinquedos-container .card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
  transition: transform 0.5s ease;
}
.brinquedos-buffet .brinquedos-container .card .card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brinquedos-buffet .brinquedos-container .card .card-content .card-title {
  font-family: var(--gamer-font);
  color: var(--neon-green);
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.brinquedos-buffet .brinquedos-container .card .card-content .card-text {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 300;
}

.videos-container-toys .box1 {
  width: 100%;
  display: flex;
  background: url("../img/brinquedos/backgroundtoys.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (max-width: 786px) {
  .videos-container-toys .box1 {
    flex-direction: column;
  }
}
.videos-container-toys .box1 .video-area {
  width: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 786px) {
  .videos-container-toys .box1 .video-area {
    width: 100%;
  }
}
.videos-container-toys .box1 .video-area .video-card {
  width: 360px; /* você pode ajustar */
  aspect-ratio: 9/16; /* vídeo sempre 9:16 */
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.videos-container-toys .box1 .video-area .video-card video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 786px) {
  .videos-container-toys .box1 .video-area .video-card {
    width: 230px;
  }
}
.videos-container-toys .box1 .text-area {
  padding: 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 20px;
}
@media (max-width: 786px) {
  .videos-container-toys .box1 .text-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.videos-container-toys .box1 .text-area p {
  font-size: 22px;
  text-align: left;
}
@media (max-width: 786px) {
  .videos-container-toys .box1 .text-area p {
    text-align: center;
    font-size: 17px;
  }
}
.videos-container-toys .box2 {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  background: url("../img/brinquedos/backgroundtoys.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
@media (max-width: 786px) {
  .videos-container-toys .box2 {
    flex-direction: column;
  }
}
.videos-container-toys .box2 .video-area {
  width: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 786px) {
  .videos-container-toys .box2 .video-area {
    width: 100%;
  }
}
.videos-container-toys .box2 .video-area .video-card {
  width: 360px; /* você pode ajustar */
  aspect-ratio: 9/16; /* vídeo sempre 9:16 */
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.videos-container-toys .box2 .video-area .video-card video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 786px) {
  .videos-container-toys .box2 .video-area .video-card {
    width: 230px;
  }
}
.videos-container-toys .box2 .text-area {
  padding: 20px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}
@media (max-width: 786px) {
  .videos-container-toys .box2 .text-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.videos-container-toys .box2 .text-area p {
  font-size: 22px;
  text-align: left;
}
@media (max-width: 786px) {
  .videos-container-toys .box2 .text-area p {
    text-align: center;
    font-size: 17px;
  }
}

.hero-decora {
  width: 100%;
  height: auto;
  background: url("../img/decoracao/fundohero.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  margin: 0; /* garante que não tenha espaço antes */
  z-index: 5;
  padding: 0;
}
.hero-decora .box-decora {
  padding: 120px 10px 10px 10px; /* top right bottom left */
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  flex-direction: row;
}
@media (max-width: 786px) {
  .hero-decora .box-decora {
    flex-direction: column;
    align-items: center;
  }
}
.hero-decora .box-decora .text {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 40px;
  width: 50%;
  padding-left: 40px;
  height: auto; /* ou remove */
}
.hero-decora .box-decora .text h2 {
  font-family: var(--lucky);
  font-size: 2rem;
}
.hero-decora .box-decora .text p {
  font-size: 17px;
  font-family: var(--poppins);
}
.hero-decora .box-decora .text .btn {
  display: block;
  width: 300px;
  text-align: center;
  padding: 20px;
  background-color: purple;
  color: white;
  border-radius: 20px;
  text-decoration: none;
}
@media (max-width: 786px) {
  .hero-decora .box-decora .text {
    width: 100%;
    align-items: center;
    justify-content: center;
    padding-left: 0;
  }
  .hero-decora .box-decora .text h2 {
    font-size: 2rem;
  }
  .hero-decora .box-decora .text p {
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 370px) {
  .hero-decora .box-decora .text h2 {
    font-size: 1.5rem;
  }
  .hero-decora .box-decora .text p {
    font-size: 12px;
  }
  .hero-decora .box-decora .text .btn {
    width: 150px;
    padding: 10px;
    font-size: 12px;
  }
}
.hero-decora .box-decora .imagem-decora {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-decora .box-decora .imagem-decora img {
  max-width: 500px;
  height: 100%;
  width: 100%;
}

.decoracao-video {
  width: 100%;
  background: url("../img/decoracao/background-decora2.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 10px;
  display: flex;
}
@media (max-width: 786px) {
  .decoracao-video {
    flex-direction: column;
  }
}
.decoracao-video .video-container {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.decoracao-video .video-container .video-card {
  width: 360px; /* você pode ajustar */
  aspect-ratio: 9/16; /* vídeo sempre 9:16 */
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.decoracao-video .video-container .video-card video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 786px) {
  .decoracao-video .video-container .video-card {
    width: 230px;
  }
}
@media (max-width: 786px) {
  .decoracao-video .video-container {
    width: 100%;
  }
}
.decoracao-video .areatext {
  width: 50%;
  color: #000;
  display: flex;
  flex-direction: column;
}
.decoracao-video .areatext .top-brand {
  width: 100%;
  align-items: center;
  justify-content: left;
  display: flex;
}
.decoracao-video .areatext .top-brand img {
  width: 70px;
}
@media (max-width: 786px) {
  .decoracao-video .areatext .top-brand img {
    width: 50px;
  }
}
.decoracao-video .areatext .top-brand .title-decora {
  font-family: var(--lucky);
  font-size: 30px;
}
@media (max-width: 786px) {
  .decoracao-video .areatext .top-brand .title-decora {
    font-size: 26px;
  }
}
@media (max-width: 786px) {
  .decoracao-video .areatext .top-brand {
    justify-content: center;
  }
}
.decoracao-video .areatext h2 {
  font-family: var(--poppins);
  font-size: 20px;
}
@media (max-width: 786px) {
  .decoracao-video .areatext h2 {
    font-size: 18px;
  }
}
.decoracao-video .areatext p {
  font-family: var(--poppins);
  font-size: 18px;
}
@media (max-width: 786px) {
  .decoracao-video .areatext p {
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 786px) {
  .decoracao-video .areatext {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.sliders-decora {
  width: 100%;
  height: 600px;
  background: url("../img/decoracao/background-decora2.jpg");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.sliders-decora .slider-container-decora {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 500px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px; /* Efeito de profundidade */
}
.sliders-decora .slider-container-decora .slider-wrapper-decora {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}
.sliders-decora .slider-container-decora .slider-wrapper-decora .slide-decora {
  position: absolute;
  width: 65%;
  max-width: 700px;
  height: 400px;
  list-style: none;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s ease, z-index 0.7s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(0) scale(0.8) translateZ(-200px);
  z-index: 0;
  background-color: #fff; /* Fundo sólido para não transparecer */
}
.sliders-decora .slider-container-decora .slider-wrapper-decora .slide-decora .slide-img-decora {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sliders-decora .slider-container-decora .slider-wrapper-decora .slide-decora {
  /* Estados dos Slides (Perspectiva) */
  /* Slide Ativo (Centro) */
}
.sliders-decora .slider-container-decora .slider-wrapper-decora .slide-decora.active-decora {
  opacity: 1;
  transform: translateX(0) scale(1) translateZ(0);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.sliders-decora .slider-container-decora .slider-wrapper-decora .slide-decora {
  /* Slide Anterior (Esquerda) */
}
.sliders-decora .slider-container-decora .slider-wrapper-decora .slide-decora.prev-slide-decora {
  opacity: 0.7;
  /* Aumentamos o deslocamento lateral para que o central cubra o centro dele */
  transform: translateX(-45%) scale(0.85) rotateY(20deg) translateZ(-100px);
  z-index: 5;
}
.sliders-decora .slider-container-decora .slider-wrapper-decora .slide-decora {
  /* Próximo Slide (Direita) */
}
.sliders-decora .slider-container-decora .slider-wrapper-decora .slide-decora.next-slide-decora {
  opacity: 0.7;
  /* Aumentamos o deslocamento lateral para que o central cubra o centro dele */
  transform: translateX(45%) scale(0.85) rotateY(-20deg) translateZ(-100px);
  z-index: 5;
}
.sliders-decora .slider-container-decora .slider-wrapper-decora .slide-decora {
  /* Slides Escondidos (Fundo) */
}
.sliders-decora .slider-container-decora .slider-wrapper-decora .slide-decora.hidden-decora {
  opacity: 0;
  transform: translateX(0) scale(0.7) translateZ(-300px);
  z-index: 0;
}
.sliders-decora .slider-container-decora .nav-btn-decora {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  width: 55px;
  height: 55px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sliders-decora .slider-container-decora .nav-btn-decora:hover {
  background-color: #333;
  color: white;
  transform: translateY(-50%) scale(1.1);
}
.sliders-decora .slider-container-decora .prev-btn-decora {
  left: 3%;
}
.sliders-decora .slider-container-decora .next-btn-decora {
  right: 3%;
}
.sliders-decora .slider-container-decora .dots-container-decora {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 30;
}
.sliders-decora .slider-container-decora .dot-decora {
  width: 10px;
  height: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sliders-decora .slider-container-decora .dot-decora.active-dot-decora {
  background-color: #333;
  width: 30px;
  border-radius: 10px;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  .slider-container-decora {
    height: 400px;
    perspective: none;
  }
  .slide-decora {
    width: 90%;
    height: 300px;
    transform: translateX(0) scale(0.8);
  }
  .slide-decora.prev-slide-decora {
    opacity: 0;
    transform: translateX(-100%) scale(0.9);
  }
  .slide-decora.next-slide-decora {
    opacity: 0;
    transform: translateX(100%) scale(0.9);
  }
  .slide-decora.active-decora {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  .prev-btn-decora {
    left: 2%;
  }
  .next-btn-decora {
    right: 2%;
  }
  .nav-btn-decora {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */