/* ===== RESET & BASE ===== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background-color: #0f0f0f;
  color: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }

/* ===== SCROLL PROGRESS BAR ===== */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #b8952a, #d4af37, #f0d060, #d4af37);
  background-size: 200% auto;
  animation: shimmer 2s linear infinite;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(212,175,55,0.8), 0 0 20px rgba(212,175,55,0.4);
  transition: width 0.1s linear;
}

/* ===== CURSOR RING ===== */

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, border-color 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}

#cursor-ring.hover {
  width: 52px;
  height: 52px;
  border-color: rgba(212, 175, 55, 0.9);
  background: rgba(212, 175, 55, 0.07);
}

@media (hover: none) {
  #cursor-ring { display: none; }
}

/* ===== CANVAS PARTÍCULAS ===== */

#particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* garante que o conteúdo fica acima do canvas */
nav, main, footer { position: relative; z-index: 1; }

/* ===== KEYFRAMES ===== */

@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(212,175,55,0.25), 0 0 60px rgba(212,175,55,0.08); }
  50%       { box-shadow: 0 0 55px rgba(212,175,55,0.55), 0 0 100px rgba(212,175,55,0.2); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes badgePop {
  0%  { transform: scale(0.7); opacity: 0; }
  70% { transform: scale(1.06); }
  100%{ transform: scale(1);   opacity: 1; }
}

@keyframes goldLine {
  0%   { width: 0; opacity: 0; }
  100% { width: 100%; opacity: 1; }
}

@keyframes floatParticle {
  0%   { transform: translateY(0)   translateX(0)   scale(1);   opacity: 0.6; }
  33%  { transform: translateY(-18px) translateX(8px)  scale(1.1); opacity: 1; }
  66%  { transform: translateY(-8px)  translateX(-6px) scale(0.9); opacity: 0.7; }
  100% { transform: translateY(0)   translateX(0)   scale(1);   opacity: 0.6; }
}

@keyframes scissors {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-15deg); }
  75%       { transform: rotate(15deg); }
}

@keyframes shimmerSweep {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes memberGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(212,175,55,0.15), 0 8px 32px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 0 2px rgba(212,175,55,0.5), 0 8px 40px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.12); }
}

@keyframes rippleAnim {
  from { transform: scale(0); opacity: 1; }
  to   { transform: scale(1); opacity: 0; }
}

@keyframes borderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes neonPulse {
  0%,100% { box-shadow: 0 0 8px rgba(212,175,55,0.3), 0 0 20px rgba(212,175,55,0.1); }
  50%     { box-shadow: 0 0 20px rgba(212,175,55,0.7), 0 0 40px rgba(212,175,55,0.3), 0 0 60px rgba(212,175,55,0.1); }
}

@keyframes typewriterBlink {
  0%,100% { border-color: #d4af37; }
  50%     { border-color: transparent; }
}

@keyframes floatIcon {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%     { transform: translateY(-12px) rotate(5deg); }
  66%     { transform: translateY(-5px) rotate(-5deg); }
}

/* scroll-reveal base */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1),
              transform 0.65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TOPBAR / NAV ===== */

nav {
  background: linear-gradient(180deg, rgba(8,8,8,0.98) 0%, rgba(14,12,5,0.97) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: navSlideDown 0.5s cubic-bezier(.22,1,.36,1) both;
  transition: padding 0.3s, box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  border-bottom-color: rgba(212,175,55,0.2);
}

/* linha dourada no topo da nav */
.nav-gold-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #b8952a 20%, #d4af37 50%, #f0d060 65%, #d4af37 80%, transparent 100%);
  animation: goldLine 1s 0.3s ease both;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 13px 20px;
  transition: padding 0.3s;
}

nav.scrolled .nav-inner { padding: 9px 20px; }

/* brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-brand-icon {
  font-size: 1rem;
  color: #d4af37;
  animation: scissors 4s ease-in-out infinite;
  transform-origin: center;
}

/* hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #d4af37;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.hamburger span:nth-child(2) { width: 70%; }

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 100%; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* nav menu – mobile */
.nav-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10,9,3,0.99) 0%, rgba(12,10,3,0.98) 100%);
  padding: 16px 20px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.nav-menu.open { display: flex; }
.nav-menu li { width: 100%; }

/* nav links */
.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ccc;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.25s, background-color 0.25s;
}

.nav-link:hover {
  color: #d4af37;
  background-color: rgba(212,175,55,0.06);
}

.nav-link i { font-size: 0.85rem; color: #d4af37; }

/* botão CTA na nav */
.nav-link-cta {
  background: linear-gradient(135deg, #c9a227, #d4af37);
  color: #0f0f0f !important;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 20px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
  transition: transform 0.25s, box-shadow 0.25s, background 0.3s;
}

.nav-link-cta i { color: #0f0f0f !important; }

.nav-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.5);
  background: linear-gradient(135deg, #d4af37, #e8c84a);
  color: #0f0f0f !important;
}

/* desktop */
@media (min-width: 768px) {
  .hamburger { display: none; }

  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    background: none;
    padding: 0;
    border: none;
    gap: 6px;
  }

  .nav-menu li { width: auto; }
  .nav-link { width: auto; }
}

/* ===== MAIN ===== */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px 80px;
}

/* ===== HERO ===== */

.hero {
  padding-top: 16px;
  position: relative;
  text-align: center;
}

/* partículas flutuantes em CSS */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  pointer-events: none;
}

.hero::before {
  width: 300px; height: 300px;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  animation: floatParticle 6s ease-in-out infinite;
}

.hero::after {
  width: 180px; height: 180px;
  top: 60px; right: 5%;
  animation: floatParticle 8s 2s ease-in-out infinite;
  opacity: 0.5;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.center img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  object-fit: cover;
  animation: logoPulse 4s ease-in-out infinite;
  transition: transform 0.35s;
}

.center img:hover { transform: scale(1.06) rotate(3deg); }

@media (min-width: 480px) { .center img { width: 160px; height: 160px; } }
@media (min-width: 768px) { .center img { width: 185px; height: 185px; } }

.nome {
  text-align: center;
  margin-top: 22px;
  padding: 0 8px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.nome h1 {
  font-size: clamp(1.8rem, 6vw, 3.8rem);
  font-weight: 700;
  color: #d4af37;
  line-height: 1.15;
  text-shadow: 0 0 60px rgba(212,175,55,0.2);
  letter-spacing: -0.5px;
}

.badges-hero {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.badge-booksy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #1e1800, #2d2300);
  border: 1px solid rgba(212,175,55,0.45);
  color: #d4af37;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 30px;
  letter-spacing: 0.4px;
  animation: badgePop 0.5s 0.6s ease both;
}

/* ===== RATING BAR ===== */

.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 24px;
  background: linear-gradient(135deg, #181818, #1a1500);
  border: 1px solid rgba(212,175,55,0.1);
  border-left: 3px solid #d4af37;
  border-radius: 12px;
  padding: 16px 24px;
  animation: fadeUp 0.8s 0.4s ease both;
}

.rating-stars {
  color: #d4af37;
  font-size: 1rem;
  letter-spacing: 3px;
  text-shadow: 0 0 8px rgba(212,175,55,0.5);
}

.rating-score {
  font-size: 1.6rem;
  font-weight: 700;
  color: #d4af37;
}

.rating-count { color: #999; font-size: 0.88rem; }

.rating-link {
  color: #d4af37;
  font-size: 0.83rem;
  font-weight: 600;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(212,175,55,0.35);
  transition: border-color 0.3s, color 0.3s;
}

.rating-link:hover { border-color: #d4af37; color: #e5c158; }

/* ===== BOAS-VINDAS ===== */

.boasvindas {
  text-align: center;
  max-width: 780px;
  margin: 32px auto 0;
  line-height: 1.85;
  font-size: 0.95rem;
  color: #b0b0b0;
  padding: 0 4px;
  animation: fadeUp 0.8s 0.5s ease both;
}

.boasvindas p + p { margin-top: 10px; }

@media (min-width: 768px) { .boasvindas { font-size: 1rem; } }

/* ===== CARDS (base) ===== */

.card {
  background-color: #161616;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 28px 20px;
  margin-top: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  border-color: rgba(212,175,55,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.06);
}

@media (min-width: 768px) {
  .card { border-radius: 22px; padding: 40px; margin-top: 28px; }
}

.card > h2 {
  color: #d4af37;
  font-size: clamp(1.15rem, 3.5vw, 1.5rem);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}

/* ===== COMBO DESTAQUE ===== */

.combo-destaque {
  position: relative;
  border: 1px solid rgba(212,175,55,0.25);
  background: radial-gradient(ellipse at top, #1e1900 0%, #111100 60%, #0f0f0f 100%);
  text-align: center;
  overflow: hidden;
}

.combo-destaque::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 65%);
  pointer-events: none;
  animation: floatParticle 7s ease-in-out infinite;
}

.combo-destaque::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 65%);
  pointer-events: none;
  animation: floatParticle 9s 3s ease-in-out infinite;
}

.combo-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #d4af37;
  color: #0f0f0f;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.combo-destaque h2 {
  color: #f5f5f5;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  justify-content: center;
  margin-bottom: 10px;
  border: none;
  padding: 0;
}

.combo-desc {
  color: #999;
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.combo-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.combo-preco {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #b8952a, #d4af37, #f0d060, #d4af37, #b8952a);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.combo-duracao {
  font-size: 0.95rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255,255,255,0.05);
  padding: 6px 14px;
  border-radius: 20px;
}

.btn-agendar-combo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #c9a227, #d4af37, #e8c84a);
  color: #0f0f0f;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 36px;
  border-radius: 30px;
  box-shadow: 0 6px 24px rgba(212,175,55,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  z-index: 1;
}

.btn-agendar-combo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(212,175,55,0.6);
}

/* ===== SERVIÇOS E PREÇOS ===== */

.servicos-grupo { margin-bottom: 28px; }
.servicos-grupo:last-of-type { margin-bottom: 0; }

.grupo-titulo {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #555;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.servicos-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.servico-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background-color: rgba(255,255,255,0.03);
  border-radius: 10px;
  border-left: 3px solid rgba(212,175,55,0.2);
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.25s, border-left-color 0.25s, transform 0.2s;
}

.servico-item:hover {
  background-color: rgba(212,175,55,0.08);
  border-left-color: #d4af37;
  transform: translateX(4px);
}

.servico-item.destaque {
  border-left-color: #d4af37;
  background-color: rgba(212,175,55,0.07);
}

.servico-info { display: flex; flex-direction: column; gap: 3px; }
.servico-nome { font-weight: 500; font-size: 0.95rem; color: #f5f5f5; }

.servico-duracao {
  font-size: 0.76rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.servico-direita {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.servico-preco {
  font-size: 1.05rem;
  font-weight: 700;
  color: #d4af37;
  white-space: nowrap;
}

.servico-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #0f0f0f;
  background-color: #d4af37;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s, transform 0.25s;
}

.servico-item:hover .servico-cta { opacity: 1; transform: translateY(0); }

@media (hover: none) {
  .servico-cta { opacity: 1; transform: translateY(0); }
}

.btn-ver-booksy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  background-color: transparent;
  color: #d4af37;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 24px;
  border-radius: 30px;
  border: 1px solid rgba(212,175,55,0.4);
  transition: background-color 0.3s, border-color 0.3s, transform 0.25s;
}

.btn-ver-booksy:hover {
  background-color: rgba(212,175,55,0.1);
  border-color: #d4af37;
  transform: translateY(-2px);
}

@media (min-width: 600px) {
  .servicos-grid { display: grid; grid-template-columns: 1fr 1fr; }
}

/* ===== EQUIPE ===== */

.equipe-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.membro {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  flex: 1 1 160px;
  max-width: 230px;
  transition: border-color 0.3s, transform 0.3s, background-color 0.3s;
}

.membro:hover {
  background-color: rgba(212,175,55,0.05);
  border-color: rgba(212,175,55,0.25);
  transform: translateY(-6px);
}

.membro-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d2200, #1a1400);
  border: 2px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: #d4af37;
  box-shadow: 0 0 20px rgba(212,175,55,0.12);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.membro:hover .membro-avatar {
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
  border-color: rgba(212,175,55,0.7);
  transform: scale(1.1);
}

.membro h3 { font-size: 1rem; font-weight: 600; margin-bottom: 5px; }
.membro p  { font-size: 0.8rem; color: #666; letter-spacing: 0.3px; }

/* ===== COMODIDADES ===== */

.comodidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.comodidade-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 12px;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  text-align: center;
  font-size: 0.82rem;
  color: #aaa;
  transition: background-color 0.25s, border-color 0.25s, transform 0.25s;
}

.comodidade-item:hover {
  background-color: rgba(212,175,55,0.06);
  border-color: rgba(212,175,55,0.2);
  transform: translateY(-4px);
}

.comodidade-item i {
  font-size: 1.5rem;
  color: #d4af37;
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.35));
  transition: transform 0.3s;
}

.comodidade-item:hover i { transform: scale(1.2); }

/* ===== MAPA ===== */

.endereco p { color: #999; font-size: 0.9rem; }

.map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.12);
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.btn-mapa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 26px;
  background-color: #d4af37;
  color: #0f0f0f;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.32);
  transition: background-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.btn-mapa:hover {
  background-color: #e5c158;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.45);
}

/* ===== HORÁRIOS ===== */

.funcionamento ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.funcionamento li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93rem;
  padding: 15px 18px;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  flex-wrap: wrap;
  gap: 6px;
  transition: border-color 0.25s, background-color 0.25s;
}

.funcionamento li:hover {
  border-color: rgba(212,175,55,0.2);
  background-color: rgba(212,175,55,0.04);
}

.funcionamento li span:first-child { font-weight: 500; color: #ddd; }
.funcionamento li span:last-child  { color: #d4af37; font-weight: 700; }

/* ===== AGENDAMENTO ===== */

.agendamento { text-align: center; }
.agendamento p { color: #999; font-size: 0.92rem; }

.botoes-agendamento {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

@media (min-width: 480px) {
  .botoes-agendamento { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

.botoes-agendamento a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.98rem;
  min-width: 160px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.botoes-agendamento a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.btn-booksy {
  background: linear-gradient(135deg, #c9a227, #d4af37);
  color: #0f0f0f;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #1da851, #25D366);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}

.btn-instagram {
  background: linear-gradient(135deg, #6a1fa0, #c13584, #e1306c, #f77737);
  color: #fff;
  box-shadow: 0 4px 16px rgba(193,53,132,0.25);
}

/* ===== FOOTER ===== */

footer {
  text-align: center;
  padding: 36px 16px;
  margin-top: 70px;
  border-top: 1px solid transparent;
  background-image: linear-gradient(#0f0f0f, #0f0f0f),
                    linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #444;
  font-size: 0.83rem;
  line-height: 2.2;
}

.footer-sub a {
  color: #d4af37;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}

.footer-sub a:hover { opacity: 1; color: #e5c158; }

/* ===== SHIMMER SWEEP NO H1 ===== */

.nome h1 {
  position: relative;
  animation: typewriterBlink 0.7s step-end infinite;
}

.nome h1.shimmer-sweep {
  background: linear-gradient(
    90deg,
    #d4af37 0%,
    #d4af37 30%,
    #fff8dc 48%,
    #fffbe6 50%,
    #fff8dc 52%,
    #d4af37 70%,
    #d4af37 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerSweep 0.9s ease forwards;
}

/* ===== NEON NOS CARDS ===== */

.card {
  animation: neonPulse 4s ease-in-out infinite;
}

.combo-destaque {
  animation: neonPulse 3s ease-in-out infinite;
}

/* ===== GLOW PULSANTE NOS CARDS DE EQUIPE ===== */

.membro {
  position: relative;
  animation: memberGlow 3s ease-in-out infinite;
}

/* ===== ÍCONES DAS COMODIDADES FLUTUANTES ===== */

.comodidade-item i {
  animation: floatIcon 3s ease-in-out infinite;
}

.comodidade-item:nth-child(2) i { animation-delay: 0.5s; }
.comodidade-item:nth-child(3) i { animation-delay: 1.0s; }
.comodidade-item:nth-child(4) i { animation-delay: 1.5s; }

/* ===== RIPPLE (overflow dos links) ===== */

.botoes-agendamento a,
.btn-agendar-combo,
.btn-mapa,
.btn-ver-booksy,
.nav-link-cta {
  overflow: hidden;
}

/* ===== SERVICO ITEM — neon border hover ===== */

.servico-item:hover {
  box-shadow: 0 0 12px rgba(212,175,55,0.2), inset 0 0 12px rgba(212,175,55,0.04);
}

/* ===== RATING STARS PISCAM ===== */

.rating-stars i {
  display: inline-block;
  animation: floatIcon 2s ease-in-out infinite;
}

.rating-stars i:nth-child(1) { animation-delay: 0.0s; }
.rating-stars i:nth-child(2) { animation-delay: 0.1s; }
.rating-stars i:nth-child(3) { animation-delay: 0.2s; }
.rating-stars i:nth-child(4) { animation-delay: 0.3s; }
.rating-stars i:nth-child(5) { animation-delay: 0.4s; }

/* ===== BADGE BOOKSY PULSA ===== */

.badge-booksy {
  animation: badgePop 0.5s 0.6s ease both, neonPulse 3s 1s ease-in-out infinite;
}

/* ===== LOGO ROTACIONA LEVEMENTE NO HOVER ===== */

.center img:hover {
  transform: scale(1.08) rotate(5deg);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1);
}

/* ===== HERO — gradiente animado de fundo ===== */

.hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 70%);
}

/* ===== GRUPOS DE SERVIÇO — linha shimmer ===== */

.grupo-titulo {
  background: linear-gradient(90deg, #555, #d4af37, #555);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ===== NAV BRAND PULSA ===== */

.nav-brand {
  animation: neonPulse 4s ease-in-out infinite;
  border-radius: 6px;
  padding: 4px 6px;
}

/* ===== BOTOES — shimmer de fundo ===== */

.btn-agendar-combo,
.btn-booksy {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

/* ===== CARD TILT — transição suave ao sair ===== */

.card {
  will-change: transform;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.15s ease-out;
}
