/* 
========================================================================
   BARBER ONE - PREMIUM LUXURY THEME
   Vanilla CSS Stylesheet (Modern Black, Gold & White Style)
========================================================================
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('design_tokens.css');
@import url('components.css');
@import url('utils.css');
@import url('loader.css');
@import url('toast.css');

/* --- Sistema de Variáveis Globais (Tokens de Design) --- */
:root {
  /* Cores Premium */
  --color-bg-primary: #050505;
  --color-bg-secondary: #0B0B0B;
  --color-bg-tertiary: #121212;
  --color-gold: #D4AF37;
  --color-gold-light: #E5C453;
  --color-gold-dark: #B3922E;
  --color-gold-glow: rgba(212, 175, 55, 0.35);
  --color-gold-subtle: rgba(212, 175, 55, 0.12);
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #CCCCCC;
  --color-text-muted: #777777;
  --color-white: #FFFFFF;
  --color-black: #000000;
  
  /* Sistema de Validação Integrado na Identidade */
  --color-error: #FFFFFF;
  --color-success: #D4AF37;
  
  /* Tipografia Clamped para Responsividade Fluída */
  --font-display: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Espaçamentos Fluídos */
  --space-xs: clamp(0.5rem, 1.5vw, 0.8rem);
  --space-sm: clamp(0.8rem, 2vw, 1.2rem);
  --space-md: clamp(1.2rem, 3.5vw, 2rem);
  --space-lg: clamp(2rem, 5vw, 3.5rem);
  --space-xl: clamp(3.5rem, 8vw, 6rem);
  
  /* Sombras */
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.2);
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.5);
  
  /* Raios de Borda */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-circle: 50%;
  
  /* Transições & Animações */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Resets e Estilos de Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow-x: hidden;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-light);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* --- Classes Utilitárias --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.gold-text {
  color: var(--color-gold);
}

.text-center {
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  margin: 15px auto 0;
}

.section-subtitle {
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  font-weight: 500;
  display: block;
}

/* Botões Premium */
.btn {
  display: inline-block;
  padding: clamp(12px, 2vw, 16px) clamp(24px, 3.5vw, 40px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(0.75rem, 1.8vw, 0.85rem);
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  border-radius: 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-bg-primary);
  border: 1px solid var(--color-gold);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary:focus {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.btn-secondary {
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-bg-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary:active {
  transform: translateY(-1px);
}

.btn-secondary:focus {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

/* --- Sistema de Revelação e Animações --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* --- Cabeçalho & Navegação --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  height: 80px;
  display: flex;
  align-items: center;
  background-color: transparent;
}

header.scrolled {
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gold-subtle);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 10px);
}

.logo svg {
  fill: var(--color-gold);
  width: clamp(24px, 5vw, 30px);
  height: clamp(24px, 5vw, 30px);
  flex-shrink: 0;
}

.logo-highlight {
  color: var(--color-gold);
}

.nav-menu {
  display: flex;
  gap: clamp(15px, 2.5vw, 30px);
}

.nav-link {
  font-size: clamp(0.75rem, 1.8vw, 0.85rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-secondary);
  padding: 5px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

/* --- Secção Hero --- */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-black);
  padding: 80px 0 0;
  box-sizing: border-box;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(5, 5, 5, 0.3) 0%, rgba(5, 5, 5, 0.95) 100%),
              linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(5,5,5,1) 100%);
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vh, 2.5rem);
  width: 90%;
  max-width: 1200px;
}

/* Animações de Entrada Suaves no Hero */
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline, .hero-title, .hero-subtitle, .hero-buttons {
  animation: heroEntrance 1.2s var(--transition-normal) both;
}

.hero-tagline { animation-delay: 0.15s; }
.hero-title { animation-delay: 0.35s; }
.hero-subtitle { animation-delay: 0.55s; }
.hero-buttons { animation-delay: 0.75s; }

.hero-tagline {
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  letter-spacing: clamp(2px, 0.5vw, 4px);
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  max-width: 100%;
  word-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Mantém sempre o mesmo espaçamento */
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}

.hero-buttons .btn {
  margin: 0;
  width: auto;
  min-width: clamp(140px, 25vw, 200px);
}

/* --- Secção Sobre Nós --- */
.about {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 45vw, 600px), 1fr));
  gap: var(--space-lg);
  align-items: center;
}

.about-img-box {
  position: relative;
  padding: 15px;
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 2px solid var(--color-gold);
  z-index: 1;
}

.about-img-box img {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-premium);
  border-radius: var(--radius-sm);
  width: 100%;
}

.about-content {
  text-align: left;
}

.about-content p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: 30px;
}

.highlight-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--color-gold);
  margin-bottom: 5px;
}

.highlight-item p {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* --- Secção Serviços e Preços --- */
.services {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(270px, 28vw, 350px), 1fr));
  gap: var(--space-md);
}

.service-card {
  background-color: rgba(18, 18, 18, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-gold-subtle);
  border-radius: var(--radius-md);
  padding: clamp(25px, 4vw, 40px) clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.18);
}

.service-card.highlighted {
  border-color: var(--color-gold);
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.12);
}

.service-card.highlighted:hover {
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.25);
}

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-gold);
  color: var(--color-bg-primary);
  padding: 4px 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.service-card-icon {
  color: var(--color-gold);
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.service-card-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-white);
}

.service-card-desc {
  font-size: clamp(0.8rem, 1.8vw, 0.88rem);
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.service-card-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
}

.service-card-duration {
  font-size: clamp(0.75rem, 1.5vw, 0.82rem);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card-duration svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.service-card-price {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--color-gold);
}

.service-card .btn {
  width: 100%;
}

/* --- Secção Equipa --- */
.team {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 30vw, 350px), 1fr));
  gap: var(--space-md);
}

.team-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-gold-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.team-img {
  height: clamp(280px, 40vh, 380px);
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-img img {
  transform: scale(1.08);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 5px;
}

.team-role {
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* --- Secção Galeria & Lightbox (Transformações) --- */
.gallery {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg-primary);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: 10px 22px;
  font-size: clamp(0.75rem, 1.8vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-gold-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background-color: transparent;
  transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--color-bg-primary);
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Contactos desktop: compactação sem impacto no mobile */
@media (min-width: 769px) {
  .contact.contact {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .contact .text-center {
    margin-bottom: 22px;
  }

  .contact .section-subtitle {
    margin-bottom: 8px;
  }

  .contact .section-title {
    margin-bottom: 0;
  }

  .contact .section-title::after {
    margin-top: 8px;
  }

  .contact .contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
  }

  .contact .contact-info-wrapper {
    gap: 10px;
  }

  .contact .contact-card {
    padding: 16px 20px;
    gap: 14px;
  }

  .contact .contact-icon {
    width: 42px;
    height: 42px;
  }

  .contact .contact-icon svg {
    width: 19px;
    height: 19px;
  }

  .contact .contact-card-content h4 {
    margin-bottom: 2px;
  }

  .contact .contact-card-content p {
    line-height: 1.35;
  }

  .contact .map-placeholder {
    height: 300px;
    min-height: 300px;
  }

  .contact .map-overlay {
    padding: 20px;
  }

  .contact .map-marker {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .contact .map-marker svg {
    width: 23px;
    height: 23px;
  }

  .contact .map-title {
    margin-bottom: 6px;
  }

  .contact .map-desc {
    margin-bottom: 16px;
  }
}

/* Compactação exclusiva da secção Contactos */
@media (max-width: 768px) {
  .contact.contact {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .contact .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact .contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact .contact-card {
    min-width: 0;
    padding: 14px 12px;
    gap: 10px;
  }

  .contact-card:first-child {
    grid-column: 1 / -1;
  }

  .contact .contact-icon {
    width: 36px;
    height: 36px;
  }

  .contact .contact-icon svg {
    width: 17px;
    height: 17px;
  }

  .contact .contact-card-content h4 {
    font-size: 0.82rem;
    line-height: 1.25;
    letter-spacing: 0.5px;
  }

  .contact .contact-card-content p {
    font-size: 0.78rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .contact .map-placeholder {
    min-height: 0;
    height: 240px;
  }

  .contact .map-overlay {
    padding: 18px;
  }

  .contact .map-marker {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .contact .map-marker svg {
    width: 21px;
    height: 21px;
  }

  .contact .map-title {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .contact .map-desc {
    font-size: 0.78rem;
    margin-bottom: 14px;
  }
}

.gallery-card {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gold-subtle);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.gallery-card.filtered-out {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Slider de Comparação */
.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .slider-image {
  transform: scale(1.03);
}

.img-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  width: 50%;
  z-index: 2;
}

.img-after-wrapper .slider-image {
  width: 100%;
  height: 100%;
  max-width: none;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.slider-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-gold);
  left: 50%;
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 0 10px var(--color-gold-glow);
}

.slider-divider::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: var(--color-bg-secondary);
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

/* Etiquetas Antes / Depois */
.badge-label {
  position: absolute;
  bottom: 15px;
  padding: 3px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 4;
  pointer-events: none;
  background-color: rgba(5, 5, 5, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-primary);
}

.badge-before {
  left: 15px;
}

.badge-after {
  right: 15px;
  border-color: var(--color-gold-subtle);
  color: var(--color-gold);
}

/* Botão Ver Resultado */
.btn-view-result {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: rgba(5, 5, 5, 0.85);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: auto;
  z-index: 12;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.comparison-slider:hover .btn-view-result,
.btn-view-result:focus {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.btn-view-result:hover {
  background-color: var(--color-gold);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-gold);
}

.btn-view-result svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Informações do Cartão */
.gallery-card-info {
  padding: 20px;
  text-align: center;
}

.gallery-card-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-white);
}

.gallery-card-category {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(15px);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-counter {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  z-index: 2010;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border: 2px solid var(--color-gold);
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  margin-top: 15px;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  letter-spacing: 1px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-white);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.lightbox-close {
  top: -50px;
  right: 0;
}

.lightbox-prev {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--color-gold);
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* --- Secção Testemunhos --- */
.reviews {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg-secondary);
}

.reviews-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.review-slide {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-gold-subtle);
  padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);
  border-radius: var(--radius-md);
  text-align: center;
  display: none;
}

.review-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

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

.review-quote {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-style: italic;
  margin-bottom: 25px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.review-author {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  margin-bottom: 5px;
}

.review-stars {
  color: var(--color-gold);
  display: flex;
  justify-content: center;
  gap: 5px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-circle);
  background-color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.review-dot.active {
  background-color: var(--color-gold);
  transform: scale(1.2);
}

/* --- Secção Reservas --- */
.booking {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg-primary);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(290px, 40vw, 550px), 1fr));
  gap: var(--space-lg);
}

.booking-info {
  padding: clamp(25px, 4vw, 40px);
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-gold-subtle);
  border-radius: var(--radius-md);
}

.booking-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  margin-bottom: 20px;
  color: var(--color-gold);
}

.booking-info p {
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

.booking-hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  padding: 12px 0;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
}

.booking-hours-list li:last-child {
  border-bottom: none;
}

.booking-hours-list span:last-child {
  color: var(--color-gold);
  font-weight: 600;
}

.booking-form-box {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-gold-subtle);
  border-radius: var(--radius-md);
  padding: clamp(25px, 4vw, 40px);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

/* Validações integradas nas cores oficiais */
.form-error {
  color: var(--color-gold);
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

.form-control.invalid {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.03);
}

.form-control.valid {
  border-color: var(--color-gold);
}

/* --- Assistente de Marcações (Booking Wizard) --- */
.booking-wizard {
  position: relative;
  width: 100%;
}

/* Barra de Progresso */
.wizard-progress-bar {
  position: relative;
  margin-bottom: var(--space-md);
  padding: 0 10px;
}

.wizard-progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 2px;
  background-color: var(--color-gold);
  z-index: 1;
  transition: width 0.35s ease;
}

.wizard-progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 2px;
  background-color: rgba(255, 255, 255, 0.08);
  z-index: 0;
}

.wizard-steps-indicators {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.step-indicator {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-circle);
  background-color: var(--color-bg-secondary);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-indicator.active {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: var(--color-bg-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.step-indicator.completed {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
  color: var(--color-bg-primary);
}

/* Etapas */
.wizard-step {
  display: none;
  animation: stepFadeIn 0.4s ease-out forwards;
}

.wizard-step.active {
  display: block;
}

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

.wizard-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  border-left: 2px solid var(--color-gold);
  padding-left: 10px;
}

/* Lista de Seleções (Serviços e Barbeiros) */
.services-list-container,
.barbers-list-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 5px;
  margin-bottom: var(--space-md);
}

/* Custom Scrollbar para os Containers */
.services-list-container::-webkit-scrollbar,
.barbers-list-container::-webkit-scrollbar {
  width: 4px;
}
.services-list-container::-webkit-scrollbar-thumb,
.barbers-list-container::-webkit-scrollbar-thumb {
  background: var(--color-gold-subtle);
  border-radius: var(--radius-sm);
}

.booking-selection-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.booking-selection-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.3);
}

.booking-selection-card.selected {
  background-color: rgba(212, 175, 55, 0.06);
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.booking-selection-card.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.selection-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.selection-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
}

.selection-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gold);
}

.selection-card-desc {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
}

.selection-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Configuração do Barbeiro */
.barber-selection-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.barber-selection-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  object-fit: cover;
  border: 1px solid var(--color-gold-subtle);
}

.barber-selection-info {
  flex-grow: 1;
}

.barber-status-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.status-available {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
}

.status-unavailable {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
}

/* Calendário */
.calendar-container {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 15px;
  margin-bottom: var(--space-md);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.calendar-nav {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-gold);
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.calendar-nav:hover {
  background-color: var(--color-gold);
  color: var(--color-bg-primary);
  border-color: var(--color-gold);
}

.calendar-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--color-text-primary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.calendar-day:hover:not(.empty):not(.disabled) {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-gold);
}

.calendar-day.selected {
  background-color: var(--color-gold) !important;
  color: var(--color-bg-primary) !important;
  font-weight: bold;
  box-shadow: var(--shadow-gold);
}

.calendar-day.disabled {
  opacity: 0.15;
  cursor: not-allowed;
}

/* Horários */
.times-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: var(--space-md);
  max-height: 280px;
  overflow-y: auto;
  padding-right: 5px;
}

@media (max-width: 480px) {
  .times-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.time-slot-btn {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-primary);
  padding: 12px 5px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.time-slot-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.time-slot-btn.selected {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg-primary);
  font-weight: bold;
}

/* Sumário e Navegação do Assistente */
.booking-summary-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.wizard-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  gap: 15px;
}

.wizard-navigation .btn {
  padding: 12px 25px;
  font-size: 0.85rem;
}

.wizard-navigation .btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.form-control.error {
  border-color: var(--color-white);
  background-color: rgba(255,255,255,0.03);
}

.toast-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.toast-content p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* --- Secção Contactos --- */
.contact {
  padding: var(--space-xl) 0;
  background-color: var(--color-bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(290px, 40vw, 550px), 1fr));
  gap: var(--space-lg);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.contact-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-gold-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  background-color: var(--color-gold-subtle);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-circle);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-card-content h4 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.contact-card-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Google Maps Placeholder */
.map-placeholder {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-gold-subtle);
  border-radius: var(--radius-md);
  height: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 0), radial-gradient(rgba(212, 175, 55, 0.15) 1.5px, transparent 0);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
}

.map-overlay {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 30px;
}

.map-marker {
  width: 60px;
  height: 60px;
  background-color: var(--color-gold-subtle);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin: 0 auto 20px;
  animation: pulseGold 2s infinite;
}

.map-marker svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.map-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  margin-bottom: 10px;
}

.map-desc {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 25px;
}

/* --- Rodapé --- */
footer {
  background-color: #030303;
  border-top: 1px solid var(--color-gold-subtle);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gold-subtle);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  color: var(--color-gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-copyright-group {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.footer-signature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  white-space: nowrap;
}

.footer-signature-label {
  color: var(--color-text-muted);
}

.criasite-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  line-height: 1;
}

.criasite-brand-main {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.criasite-symbol {
  color: #2563eb;
  font-family: monospace;
  font-size: 0.85rem;
  font-weight: 700;
  animation: criasite-symbol-blink 1.2s steps(2, start) infinite;
}

.criasite-word {
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.criasite-word-cria {
  color: #1e293b;
  font-weight: 900;
}

.criasite-word-site {
  color: #2563eb;
  font-weight: 300;
}

.criasite-tagline {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

@keyframes criasite-symbol-blink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0.35; }
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-bottom-links a:hover {
  color: var(--color-gold);
}

/* --- Elementos Flutuantes --- */
/* Botão Voltar ao Topo */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--color-gold);
  color: var(--color-bg-primary);
  width: 45px;
  height: 45px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-white);
  color: var(--color-bg-primary);
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background-color: #25d366;
  color: var(--color-white);
  width: 45px;
  height: 45px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* --- Ajustes de Responsividade --- */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
    z-index: 1001;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 1px solid var(--color-gold-subtle);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: var(--radius-circle);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-copyright-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .footer-signature {
    justify-content: center;
    white-space: normal;
    flex-wrap: wrap;
    max-width: 100%;
  }
}

/* Compactação visual Barber One — preserva Hero, reservas e admin */

/* Legado */
@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 32px;
  }

  .about-img-box {
    max-width: 520px;
    padding: 10px;
    margin: 0 auto;
  }

  .about-img-box img {
    max-height: 460px;
    object-fit: cover;
  }
}

.about-highlights {
  gap: 18px;
  margin-top: 22px;
}

/* Serviços: uma linha no desktop e swipe nativo no mobile */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }

  .service-card {
    padding: 24px 16px;
  }
}

@media (min-width: 576px) and (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .service-card {
    padding: 26px 18px;
  }
}

@media (max-width: 575px) {
  .services-grid,
  .team-grid,
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding: 4px 2px 14px;
    gap: 16px;
  }

  .service-card,
  .team-card,
  .gallery-card {
    flex: 0 0 84vw;
    width: 84vw;
    scroll-snap-align: start;
  }

  .service-card {
    padding: 24px 18px;
  }
}

/* Transformações: uma faixa contínua sem reduzir os comparadores */
.gallery-grid {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 14px;
  gap: 24px;
}

.gallery-card {
  flex: 0 0 clamp(280px, 24vw, 360px);
  scroll-snap-align: start;
}

@media (max-width: 991px) {
  .gallery-card {
    flex-basis: min(44vw, 360px);
  }
}

@media (max-width: 575px) {
  .gallery-card {
    flex-basis: 84vw;
  }
}

/* Equipa e testemunhos */
@media (max-width: 575px) {
  .team-img {
    height: 280px;
  }

  .team-info {
    padding: 18px;
  }

  .reviews {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .review-slide {
    padding: 26px 18px;
  }

  .review-quote {
    margin-bottom: 16px;
    line-height: 1.65;
  }

  .reviews-dots {
    margin-top: 18px;
  }
}

/* Footer compacto e navegação sem duplicações */
.footer-about p {
  max-width: 360px;
  line-height: 1.5;
  margin-bottom: 16px;
}

footer .footer-links-col:first-of-type .footer-links li:nth-child(2),
footer .footer-links-col:first-of-type .footer-links li:nth-child(4),
footer .footer-links-col:first-of-type .footer-links li:nth-child(6),
footer .footer-links-col:last-of-type .footer-links li:nth-child(3) {
  display: none;
}

footer {
  padding: 48px 0 24px;
}

.footer-grid {
  gap: 28px;
  margin-bottom: 30px;
}

.footer-title {
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-bottom {
  padding-top: 20px;
}

@media (max-width: 575px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    margin-bottom: 22px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-about p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    gap: 10px;
  }

  .footer-bottom-links {
    gap: 12px;
  }
}

/* Espaçamento global: reduzir apenas secções de conteúdo, nunca o Hero */
.about,
.services,
.team,
.gallery,
.reviews,
.booking,
.contact {
  padding-top: clamp(48px, 6vw, 78px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

@media (max-width: 575px) {
  .about,
  .services,
  .team,
  .gallery,
  .booking,
  .contact {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}
