/* Badge premium: efeito reflexivo ao passar o mouse */
.premium-badge {
  position: relative;
  overflow: hidden;
}
.premium-badge::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.5) 40%, rgba(255,255,255,0.0) 100%);
  opacity: 0;
  pointer-events: none;
  transform: skewX(-20deg);
  transition: opacity 0.3s;
}
.premium-badge:hover::before {
  opacity: 1;
  animation: reflexo-badge 0.8s linear 0s 1 normal forwards;
}

.premium-badge:not(:hover)::before {
  opacity: 0;
  animation: none;
}
@keyframes reflexo-badge {
  0% { left: -40%; opacity: 0.2; }
  40% { left: 20%; opacity: 0.7; }
  60% { left: 60%; opacity: 0.5; }
  100% { left: 120%; opacity: 0; }
}


.button {
  background: #F2A20C;
  font-family: inherit;
  padding: 0.3em 1.5em;
  font-weight: 900;
  font-size: 18px;
  border: 3px solid black;
  border-radius: 0.4em;
  box-shadow: 0.1em 0.1em;
  cursor: pointer;
}

.button:hover {
  transform: translate(-0.05em, -0.05em);
  box-shadow: 0.15em 0.15em;
}

.button:active {
  transform: translate(0.05em, 0.05em);
  box-shadow: 0.05em 0.05em;
}

.conteudo-inicial {
  transition: opacity 0.4s ease, display 0.4s ease;
}

/* Estilos para card expandido em tela cheia */
.servico-card.expandido {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  box-sizing: border-box;
}

.servico-card.expandido .servico-detalhes {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* Overlay escuro para foco */
.servico-card.expandido::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* Estilos para o swiper de serviços */
.servico-swiper {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.servico-swiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
}

/* Para navegadores Webkit (Chrome, Safari, Edge) */
.servico-card.expandido .overflow-y-auto::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* Para Firefox */
.servico-card.expandido .overflow-y-auto {
  scrollbar-width: none;
}
