*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  background: #000;
  font-family: 'Poppins', sans-serif;
  color: white;
}

img{
  max-width: 100%;
  display: block;
}

a{
  text-decoration: none;
  color: white;
}

.container{
  width: 100%;
  max-width: 520px;
  margin: auto;
  background: #050505;
  min-height: 100vh;
  overflow: hidden;
}

/* HERO */

.hero{
  position: relative;
  height: 480px; 
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay{
  position: absolute;
  inset: 0;
  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,.3),
    rgba(0,0,0,.98)
  );
}

.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px 30px; 
  display: flex;
  align-items: flex-start; 
  justify-content: flex-start; 
}

.hero-text{
  width: 100%;
}

.hero-text h1{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 95px;
  line-height: .9;
}

.hero-text h1 span{
  color: #ffb400;
}

.hero-text p{
  font-family: 'Great Vibes', cursive;
  font-size: 52px;
  margin-top: 10px;
}

/* LOGO */

.logo-wrapper{
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -100px; 
  z-index: 10;
}

.wave{
  position: absolute;
  top: 60px;
  width: 100%;
  height: 120px;
  border-top: 4px solid #ffb400;
  border-radius: 100%;
}

.logo-circle{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  background: #0c0c0c;
  border: 4px solid #ffb400;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
  0 0 30px rgba(255,180,0,.3),
  0 10px 50px rgba(0,0,0,.6);
  position: relative;
  z-index: 2;
}

.logo-circle img {
  width: 150%; /* Coloque a porcentagem que desejar (ex: 110%, 120%, 130%) */
  max-width: none; /* Isso remove a trava de segurança apenas para a logo */
  object-fit: contain; /* Garante que a imagem não distorça */
}

/* LINKS */

.links{
  padding: 10px 20px 10px; 
  margin-top: -15px; 
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card{
  position: relative;
  overflow: hidden;
  min-height: 120px;
  border-radius: 28px;
  border: 1px solid rgba(255,180,0,.35);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  transition: .3s;
  background: #050505;
}

.card:hover{
  transform: translateY(-4px);
}

.card img{
  position: absolute;
  top: 0;
  right: 0; /* IMAGEM NA DIREITA */
  left: auto;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.card-overlay{
  position: absolute;
  inset: 0;
  /* Fundo preto sólido na esquerda protegendo os textos, sumindo para revelar a imagem na direita */
  background: linear-gradient(
    to right,
    #050505 0%,
    #050505 45%,
    rgba(5, 5, 5, 0.8) 70%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.card-content{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.left{
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon{
  min-width: 70px;
  min-height: 70px;
  border-radius: 50%;
  border: 2px solid #ffb400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,180,0,.08);
  box-shadow: 0 0 20px rgba(255,180,0,.2);
}

.icon i{
  color: #ffb400;
  width: 34px;
  height: 34px;
}

.text h2{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  line-height: 1;
}

.text p{
  margin-top: 4px;
  color: #d7d7d7;
  font-size: 15px;
}

.arrow{
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  background: #ffb400;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255,180,0,.35);
}

.arrow i{
  color: black;
  width: 30px;
  height: 30px;
}

/* GALERIA */

.gallery{
  padding: 35px 0;
}

.gallery-title{
  text-align: center;
  margin-bottom: 30px;
}

.gallery-title h2{
  font-family: 'Great Vibes', cursive;
  font-size: 70px;
}

.gallery-title p{
  color: #ffb400;
  font-size: 14px;
  margin-top: -8px;
}

.carousel{
  overflow: hidden;
}

.carousel-track{
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll 25s linear infinite;
  padding: 0 20px;
}

.carousel-track img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
  border: 2px solid rgba(255,180,0,.3);
  flex-shrink: 0;
  transition: .3s;
}

.carousel-track img:hover{
  transform: scale(1.05);
  border-color: #ffb400;
}

@keyframes scroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

/* FOOTER DEV */
.footer-dev {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: .3s;
}

.footer-dev:hover {
  transform: scale(1.05);
}

.footer-dev span {
  font-size: 11px;
  color: #d8d8d8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-dev img {
  height: 80px; /* Ajuste a altura conforme a proporção da sua logo */
  width: auto;
  object-fit: contain;
}

/* RESPONSIVO */

@media(max-width: 520px){

  .hero{
    height: 440px; 
  }

  .hero-content{
    padding: 30px 25px; 
  }

  .hero-text h1{
    font-size: 72px;
  }

  .hero-text p{
    font-size: 40px;
  }

  .logo-circle{
    width: 120px;
    height: 120px;
  }

  .wave{
    top: 45px;
  }

  .links{
    padding: 25px 16px 10px;
  }

  .card{
    min-height: 105px;
    border-radius: 24px;
  }

  .card-content{
    padding: 16px;
  }

  .left{
    gap: 12px;
  }

  .icon{
    min-width: 58px;
    min-height: 58px;
  }

  .icon i{
    width: 28px;
    height: 28px;
  }

  .text h2{
    font-size: 28px;
  }

  .text p{
    font-size: 12px;
  }

  .arrow{
    min-width: 46px;
    min-height: 46px;
  }

  .gallery-title h2{
    font-size: 52px;
  }

  .carousel-track img{
    width: 120px;
    height: 120px;
  }

  .footer-instagram h3{
    font-size: 28px;
  }

}

@media(min-width: 1000px){

  body{
    padding: 30px;
  }

  .container{
    max-width: 620px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.05);
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
  }

}

/* ==========================================
   ANIMAÇÕES DE SCROLL (JAVASCRIPT)
   ========================================== */

.hidden-element {
  opacity: 0;
  transform: translateY(40px);
  /* Usando cubic-bezier para uma curva de animação mais natural e premium */
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hidden-element.is-visible {
  opacity: 1;
  transform: translateY(0);
}



/* ==========================================
   HORÁRIOS DE ATENDIMENTO
   ========================================== */

.hours {
  padding: 15px 20px 25px; /* Espaçamento alinhado com o restante do site */
}

.hours-card {
  background: linear-gradient(to bottom right, #0a0a0a, #050505);
  border-radius: 28px;
  border: 1px solid rgba(255, 180, 0, 0.35);
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hours-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hours-header i, .hours-header svg {
  color: #ffb400;
  width: 26px;
  height: 26px;
}

.hours-header h2 {
  font-family: 'Bebas Neue', sans-serif; 
  font-size: 32px;
  color: #ffb400;
  letter-spacing: 1px;
  line-height: 1;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #d7d7d7;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15); /* Linha pontilhada sutil */
}

.hour-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hour-row .closed {
  color: #ff4747; /* Vermelho premium para dar destaque de fechado */
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.hour-row span:last-child:not(.closed) {
  color: white;
  font-weight: 600;
}

/* Ajuste Responsivo do Card de Horários */
@media(max-width: 520px){
  .hours {
    padding: 10px 16px 20px;
  }
  .hours-card {
    padding: 20px;
    border-radius: 24px;
  }
  .hours-header h2 {
    font-size: 28px;
  }
  .hour-row {
    font-size: 14px;
  }
}

/* NOTA DE OBSERVAÇÃO DOS HORÁRIOS */
.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08); /* Linha divisória bem suave */
}

.hours-note i, .hours-note svg {
  color: #ffb400;
  width: 18px; /* Ícone um pouco menor para ser discreto */
  height: 18px;
  flex-shrink: 0; /* Impede o ícone de amassar caso o texto quebre linha */
  margin-top: 2px;
}

.hours-note p {
  font-size: 12px;
  color: #9a9a9a; /* Cinza sutil para não brigar com a informação principal */
  line-height: 1.5;
}

/* Ajuste Responsivo da Nota (Adicione dentro do seu @media max-width: 520px se desejar) */
@media(max-width: 520px){
  .hours-note p {
    font-size: 11px;
  }
}