/* Header Home */
:root {
  --hh-bg-start: #0a2f2f;
  --hh-bg-end: #0d3b3b;
  --hh-cyan: #00ffcc;
  --hh-orange: #ffa500;
  --hh-purple: #a855f7;
  --hh-white: #ffffff;
}

.header-home {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--hh-bg-start) 0%, var(--hh-bg-end) 100%);
  border-bottom: 1px solid rgba(0, 255, 204, 0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}

.header-home__content {
  max-width: 1760px;
  margin: 0 auto;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-home__brand { display: inline-flex; align-items: center; text-decoration: none; }
.header-home__logo { height: 42px; width: auto; filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,255,204,.3)); }

.header-home__nav { display: flex; align-items: center; gap: .875rem; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 10px 20px;
  border-radius: 24px;
  text-decoration: none;
  color: var(--hh-white);
  backdrop-filter: blur(10px);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .01em;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  position: relative;
  white-space: nowrap;
}

.btn-pill svg { color: inherit; }
.btn-pill span { color: inherit; }

/* Reservas - roxo destacado */
.btn-pill--reservas {
  border: 1.5px solid rgba(168, 85, 247, .6);
  background: linear-gradient(135deg, rgba(168, 85, 247, .2) 0%, rgba(147, 51, 234, .18) 100%);
  box-shadow: 0 2px 10px rgba(168, 85, 247, .25);
}
.btn-pill--reservas:hover {
  border-color: rgba(192, 132, 252, .85);
  background: linear-gradient(135deg, rgba(168, 85, 247, .95) 0%, rgba(147, 51, 234, .92) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168, 85, 247, .5), 0 0 0 1px rgba(192, 132, 252, .4);
}

/* Club - laranja */
.btn-pill--club {
  border: 1.5px solid rgba(255,165,0,.5);
  background: rgba(255,165,0,.08);
}
.btn-pill--club:hover {
  background: rgba(255,165,0,.95);
  color: #0a2f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,165,0,.35);
}

/* Admin - ciano */
.btn-pill--admin {
  border: 1.5px solid rgba(0,255,204,.5);
  background: rgba(0,255,204,.08);
}
.btn-pill--admin:hover {
  background: rgba(0,255,204,.95);
  color: #0a2f2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,255,204,.35);
}

/* Responsivo */
@media (max-width: 768px) {
  .header-home__content { padding: 10px 24px; gap: 1rem; }
  .header-home__logo { height: 36px; }
  .header-home__nav { gap: .5rem; }
  .btn-pill { padding: 8px 14px; font-size: .8rem; }
  
  /* Ocultar texto em telas médias, manter ícones */
  .btn-pill__text { 
    display: inline;
    font-size: .75rem;
  }
}

@media (max-width: 640px) {
  .header-home__content { padding: 10px 16px; gap: .75rem; }
  .header-home__logo { height: 32px; }
  .header-home__nav { gap: .5rem; }
  
  /* Ocultar apenas o texto do botão admin no mobile */
  .btn-pill--admin .btn-pill__text { 
    display: none;
  }
  
  .btn-pill--admin { 
    padding: 10px;
    min-width: 42px;
    justify-content: center;
  }
  
  .btn-pill--admin i {
    margin: 0;
  }
  
  /* Manter texto visível para outros botões */
  .btn-pill { 
    padding: 8px 12px;
    font-size: .75rem;
  }
}

@media (max-width: 480px) {
  .header-home__logo { height: 28px; }
  .header-home__content { padding: 8px 12px; }
  .header-home__nav { gap: .375rem; }
  
  .btn-pill { 
    padding: 7px 10px;
    font-size: .7rem;
  }
  
  .btn-pill--admin { 
    padding: 9px;
    min-width: 40px;
  }
}
