  /* ===== 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; }

  /* ===== 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 scissors {
    0%, 100% { transform: rotate(0deg); }
    25%       { transform: rotate(-15deg); }
    75%       { transform: rotate(15deg); }
  }

  @keyframes floatIcon {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-6px); }
  }

  @keyframes rippleAnim {
    from { transform: scale(0); opacity: 1; }
    to   { transform: scale(1); opacity: 0; }
  }

  /* 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);
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  /* ===== 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: 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);
  }

  .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; }

  .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;
  }

  /* Ícones da navegação: cor amarela/dourada (padronizada) */
  .nav-inner .nav-brand,
  .nav-brand-icon,
  .nav-menu i,
  .btn-menu-booksy,
  .nav-link i {
    color: #d4af37;
  }

  .btn-menu-booksy{
    display: flex;
    align-items: center;
    gap: 7px;
    color: #d4af37 !important;
    text-decoration: none;
  }

  .btn-menu-booksy i{
    color: #d4af37 !important;
}

  /* 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);
    color: #d4af37;
  }

  .nav-menu.open { display: flex; }
  .nav-menu li { width: 100%; }

  /* nav links */
  .nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d4af37 !important;
  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 !important;
  background-color: rgba(212,175,55,0.08);
}

.nav-link:hover i {
  color: #d4af37 !important;
}

  .nav-link i {
  color: #d4af37 !important;
  font-size: 0.85rem;
}

  /* 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;
  }

  .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);
    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;
      color: #d4af37;
    }

    .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;
    background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 70%);
  }

  .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 cubic-bezier(.34,1.56,.64,1);
  }

  .center img:hover { transform: scale(1.08) rotate(5deg); }

  @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; }

  .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);
    will-change: transform;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.15s ease-out;
  }

  .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-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;
    overflow: hidden;
  }

  .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: #666;
    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;
    transition: background-color 0.25s, border-left-color 0.25s, transform 0.2s, box-shadow 0.25s;
  }

  .servico-item:hover {
    background-color: rgba(212,175,55,0.08);
    border-left-color: #d4af37;
    transform: translateX(4px);
    box-shadow: 0 0 12px rgba(212,175,55,0.15);
  }

  .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, box-shadow 0.3s;
  }

  .membro:hover {
    background-color: rgba(212,175,55,0.05);
    border-color: rgba(212,175,55,0.25);
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }

  .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;
    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;
    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; }

  .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;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
  }

  .botoes-agendamento a:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
    filter: brightness(1.1);
  }

  .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 rgba(212,175,55,0.12);
    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; }

  /* ===== FOCO VISÍVEL (acessibilidade) ===== */

  :focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 3px;
    border-radius: 4px;
  }