/* 
 * Dudu Lima Barbearia - Custom Premium Stylesheet
 * Vibe: Conforto, Acolhimento, Sofisticação, Alta Conversão
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* --- Design System & CSS Variables --- */
:root {
  /* Color Palette - Warm Dark Luxury Lounge */
  --bg-main: #0c0705;          /* Café extra escuro - Quase preto */
  --bg-card: #160c08;          /* Marrom chocolate profundo */
  --bg-card-light: #21130d;    /* Marrom chocolate suave para hover e destaque */
  --primary-gold: #c89d7c;     /* Bronze clássico / Ouro envelhecido */
  --primary-glow: #e5c158;     /* Ouro brilhante para realce e foco */
  --text-light: #f7f4f0;       /* Creme suave para leitura confortável */
  --text-muted: #c4bbae;      /* Creme acinzentado para descrições */
  --accent-red: #d32f2f;       /* Vermelho sutil (estilo barbearia tradicional) */
  --glass-bg: rgba(22, 12, 8, 0.7);
  --glass-border: rgba(200, 157, 124, 0.15);
  
  /* Fonts */
  --font-title: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Shadows */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --glow-shadow: 0 0 20px rgba(200, 157, 124, 0.3);
  --gold-gradient: linear-gradient(135deg, #c89d7c 0%, #b38562 100%);
  --gold-glow-gradient: linear-gradient(135deg, #e5c158 0%, #c89d7c 100%);
  --dark-gradient: linear-gradient(180deg, #160c08 0%, #0c0705 100%);
}

/* --- Resets & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card-light);
  border: 2px solid var(--bg-main);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

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

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* Decorative Background Light Gradients */
.glow-bg {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 157, 124, 0.08) 0%, rgba(12, 7, 5, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.glow-1 { top: 10%; left: -10%; }
.glow-2 { top: 40%; right: -10%; }
.glow-3 { bottom: 10%; left: 20%; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

h2 span {
  color: var(--primary-gold);
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  border-radius: var(--border-radius-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0c0705;
  box-shadow: 0 4px 15px rgba(200, 157, 124, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-shadow);
  color: #0c0705;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  border: 1px solid var(--primary-gold);
  color: var(--text-light);
  background: rgba(200, 157, 124, 0.05);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: #0c0705;
  transform: translateY(-3px);
}

/* Animated Pulse Ring for booking buttons */
.pulse-btn {
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 157, 124, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(200, 157, 124, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 157, 124, 0);
  }
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
}

header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.8rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-gold);
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 110;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 50%, rgba(33, 19, 13, 0.3) 0%, rgba(12, 7, 5, 1) 75%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-exclusivo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 157, 124, 0.12);
  border: 1px solid var(--glass-border);
  color: var(--primary-gold);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.badge-exclusivo i {
  font-size: 0.9rem;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -1.5px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-glow) 0%, var(--primary-gold) 50%, #b38562 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  text-shadow: 0 0 40px rgba(229, 193, 88, 0.15);
}

.hero-desc {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.hero-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 7, 5, 0.9) 0%, transparent 40%);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.hero-img-wrapper:hover .hero-img {
  transform: scale(1.05);
}

/* Floating Cards in Hero */
.floating-card {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 1.2rem 1.8rem;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  z-index: 5;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.floating-card:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.05) rotate(1.5deg) !important;
  border-color: var(--primary-gold);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5), var(--glow-shadow);
}

.float-card-1 {
  bottom: 8%;
  left: -12%;
  animation-delay: 0s;
}

.float-card-2 {
  top: 15%;
  right: -5%;
  animation-delay: 3s;
}

.floating-card i {
  color: var(--primary-gold);
  font-size: 1.8rem;
}

.floating-card-text h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-light);
}

.floating-card-text p {
  font-size: 0.85rem;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* --- Conceito / Diferenciais (Conforto & Acolhimento) --- */
.conceito {
  background-color: #110906;
}

.conceito-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.conceito-media {
  position: relative;
}

.conceito-img-stack {
  position: relative;
  height: 480px;
}

.stack-img {
  position: absolute;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.stack-img-1 {
  width: 70%;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 2;
}

.stack-img-2 {
  width: 60%;
  height: 300px;
  bottom: 0;
  right: 0;
  z-index: 1;
}

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

.stack-img:hover img {
  transform: scale(1.05);
}

.diferenciais-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.diferencial-item {
  display: flex;
  gap: 1.5rem;
}

.diferencial-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-gold);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.diferencial-item:hover .diferencial-icon {
  background: var(--primary-gold);
  color: #0c0705;
  box-shadow: var(--glow-shadow);
  transform: rotate(5deg) scale(1.05);
}

.diferencial-text h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* --- Serviços --- */
.servicos-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.tabs-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.tab-btn {
  padding: 1rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #0c0705;
  border-color: var(--primary-gold);
  box-shadow: var(--glow-shadow);
}

.servicos-pane {
  display: none;
}

.servicos-pane.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  animation: fadeIn 0.6s ease;
}

.servico-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.servico-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.servico-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-gold);
  background: var(--bg-card-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(200, 157, 124, 0.15);
}

.servico-card:hover::after {
  opacity: 1;
}

.servico-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.servico-nome {
  font-size: 1.6rem;
  font-family: var(--font-title);
  color: var(--text-light);
}

.servico-preco {
  font-size: 1.8rem;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary-gold);
  white-space: nowrap;
}

.servico-desc {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.servico-card-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(200, 157, 124, 0.2);
}

.servico-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.servico-book-link {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.servico-book-link:hover {
  color: var(--primary-glow);
}

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

/* --- Consultor de Estilo Widget (Inovação) --- */
.consultor {
  background-color: #110906;
}

.consultor-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.quiz-container {
  background: var(--bg-card);
  border: 1px solid var(--primary-gold);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

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

.quiz-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--gold-gradient);
  width: 0;
  transition: width 0.3s ease;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.quiz-question {
  font-size: 2.2rem;
  line-height: 1.35;
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  margin-bottom: 2.5rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.quiz-option-btn {
  background: rgba(200, 157, 124, 0.05);
  border: 1.5px solid var(--glass-border);
  padding: 1.25rem 2rem;
  border-radius: var(--border-radius-sm);
  text-align: left;
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quiz-option-btn::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: inline-block;
  transition: var(--transition-fast);
}

.quiz-option-btn:hover {
  background: rgba(200, 157, 124, 0.1);
  border-color: var(--primary-gold);
}

.quiz-option-btn.selected {
  border-color: var(--primary-glow);
  background: rgba(200, 157, 124, 0.15);
}

.quiz-option-btn.selected::before {
  background: var(--primary-glow);
  border-color: var(--primary-glow);
}

.quiz-nav {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}

/* Quiz Result Styling */
.result-card {
  text-align: center;
  animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.result-badge {
  color: var(--primary-glow);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.result-title {
  font-size: 2.5rem;
  line-height: 1.35;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  margin-bottom: 1.5rem;
}

.result-desc {
  margin-bottom: 2.5rem;
}

.result-service-box {
  background: rgba(12, 7, 5, 0.5);
  border: 1px dashed var(--glass-border);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result-service-info {
  text-align: left;
}

.result-service-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.result-service-price {
  font-size: 1.4rem;
  font-family: var(--font-title);
  color: var(--primary-gold);
  font-weight: 700;
}

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

/* --- Galeria / Portfólio de Cortes --- */
.galeria-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.galeria-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

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

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 7, 5, 0.95) 0%, rgba(22, 12, 8, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.galeria-item:hover .galeria-img {
  transform: scale(1.08);
}

.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

.galeria-tag {
  font-size: 0.75rem;
  color: #0c0705;
  background: var(--primary-gold);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  align-self: flex-start;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.galeria-title {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.galeria-author {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.galeria-author i {
  color: var(--primary-gold);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 7, 5, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

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

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-light);
}

.lightbox-caption h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.lightbox-caption p {
  font-size: 0.95rem;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary-gold);
  transform: scale(1.1);
}

/* --- Depoimentos --- */
.depoimentos {
  background-color: #110906;
}

.depoimentos-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.depoimentos-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.depoimento-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: var(--border-radius-md);
  position: relative;
  transition: var(--transition-smooth);
}

.depoimento-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-gold);
  background: var(--bg-card-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(200, 157, 124, 0.05);
}

.depoimento-card:hover .depoimento-quote-icon {
  color: rgba(229, 193, 88, 0.15);
  transform: scale(1.1) rotate(-5deg);
}

.depoimento-card:hover .stars {
  transform: scale(1.03);
}

.depoimento-quote-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: rgba(200, 157, 124, 0.08);
  font-family: var(--font-title);
  line-height: 1;
}

.stars {
  color: var(--primary-glow);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.25rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.depoimento-text {
  font-style: italic;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.autor-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-gold);
  object-fit: cover;
}

.autor-info h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}

.autor-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Localização e Contato --- */
.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: stretch;
}

.contato-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.info-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-gold);
  font-size: 1.25rem;
}

.info-card-text h4 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.info-card-text p {
  font-size: 0.95rem;
}

.info-card-text a:hover {
  color: var(--primary-gold);
}

.map-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  height: 100%;
  min-height: 450px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.9) contrast(1.1) invert(0.9) hue-rotate(15deg); /* Elegant dark map effect */
  opacity: 0.85;
}

/* --- Interactive Booking Modal --- */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(12, 7, 5, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.booking-modal.active {
  display: flex;
  opacity: 1;
}

.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--primary-gold);
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  position: relative;
  animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.booking-close:hover {
  color: var(--primary-gold);
  transform: rotate(90deg);
}

.booking-header {
  text-align: center;
  margin-bottom: 3rem;
}

.booking-header h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  background: rgba(12, 7, 5, 0.5);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  padding: 1.1rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-gold);
  background: rgba(12, 7, 5, 0.8);
  box-shadow: 0 0 10px rgba(200, 157, 124, 0.15);
}

select.form-control option {
  background-color: var(--bg-card);
  color: var(--text-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* --- Footer --- */
footer {
  background-color: #080403;
  padding: 5rem 0 3rem 0;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-link:hover {
  color: #0c0705;
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-3px) rotate(8deg);
  box-shadow: var(--glow-shadow);
}

.footer-divider {
  border-top: 1px solid rgba(200, 157, 124, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-divider p {
  font-size: 0.85rem;
}

.dev-credit {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dev-credit i {
  color: var(--accent-red);
}

/* --- Scroll animations using JS and CSS classes --- */
/* --- CINEMATIC SCROLL REVEALS (APPLE-INSPIRED SPRING DYNAMICS) --- */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  will-change: transform, opacity;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  will-change: transform, opacity;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade {
  opacity: 0;
  will-change: opacity;
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

.reveal-fade.active {
  opacity: 1;
}

/* Stagger reveals */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* --- Responsive Breakpoints --- */

@media (max-width: 1100px) {
  h2 { font-size: 2.6rem; }
  .hero-title { font-size: 3.8rem; }
  .hero-grid, .conceito-grid, .consultor-grid, .localizacao-grid {
    gap: 3.5rem;
  }
}

@media (max-width: 968px) {
  section { padding: 6rem 0; }
  
  .hamburger {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem;
    gap: 3rem;
    z-index: 105;
    transition: var(--transition-smooth);
  }
  
  nav.active {
    right: 0;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  
  .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);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 5rem;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .float-card-1 {
    left: 2%;
  }
  .float-card-2 {
    right: 2%;
  }
  
  .conceito-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .conceito-img-stack {
    height: 380px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stack-img-1 { height: 320px; }
  .stack-img-2 { height: 240px; }
  
  .servicos-pane.active {
    grid-template-columns: 1fr;
  }
  
  .consultor-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .quiz-container {
    padding: 3rem;
  }
  
  .depoimentos-slider {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .localizacao-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .map-wrapper {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  html { font-size: 15px; }
  
  section { padding: 4.5rem 0; }
  
  .container { padding: 0 1.25rem; }
  
  h2 { font-size: 2.2rem; }
  
  .hero-title { font-size: 2.8rem; }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .floating-card {
    padding: 0.8rem 1.2rem;
  }
  
  .floating-card i {
    font-size: 1.4rem;
  }
  
  .floating-card-text h4 {
    font-size: 0.95rem;
  }
  
  .tabs-container {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    padding: 0.8rem 1.5rem;
    flex-grow: 1;
    text-align: center;
  }
  
  .servico-card {
    padding: 1.8rem;
  }
  
  .servico-nome { font-size: 1.4rem; }
  .servico-preco { font-size: 1.5rem; }
  
  .quiz-container {
    padding: 1.8rem;
    min-height: 420px;
  }
  
  .quiz-question {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .quiz-option-btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .booking-card {
    padding: 2rem 1.5rem;
  }
  
  .booking-header h3 {
    font-size: 1.8rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-divider {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* --- BEFORE & AFTER SLIDER WIDGET --- */
/* --- BEFORE & AFTER CARD FRAME (PREMIUM UPGRADE) --- */
.antes-depois-card-frame {
  background: var(--bg-card);
  border: 1.5px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(200, 157, 124, 0.05);
  max-width: 640px;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.antes-depois-card-frame:hover {
  border-color: rgba(200, 157, 124, 0.3);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(200, 157, 124, 0.1);
}

.antes-depois-frame-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(200, 157, 124, 0.1);
  padding-bottom: 0.75rem;
}

.frame-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.frame-year {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.antes-depois-frame-footer {
  margin-top: 1rem;
  text-align: center;
}

.antes-depois-frame-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  animation: gentle-pulse 2s infinite ease-in-out;
}

@keyframes gentle-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* --- BEFORE & AFTER SLIDER WIDGET --- */
.antes-depois-container {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(200, 157, 124, 0.2);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
  user-select: none;
  cursor: ew-resize;
}

.antes-depois-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

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

.depois-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.antes-depois-slider-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary-gold);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
}

.antes-depois-glow-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 6px;
  background: var(--gold-glow-gradient);
  transform: translateX(-50%);
  filter: blur(4px);
  opacity: 0.8;
}

.antes-depois-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(22, 12, 8, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  z-index: 4;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  box-shadow: 0 0 0 0 rgba(200, 157, 124, 0.4), 0 10px 20px rgba(0,0,0,0.6);
  transition: var(--transition-fast);
  animation: button-glow-pulse 2s infinite ease-in-out;
}

@keyframes button-glow-pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 157, 124, 0.4), 0 6px 15px rgba(0,0,0,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(200, 157, 124, 0), 0 6px 15px rgba(0,0,0,0.5); }
  100% { box-shadow: 0 0 0 0 rgba(200, 157, 124, 0), 0 6px 15px rgba(0,0,0,0.5); }
}

.antes-depois-button:hover {
  background-color: var(--primary-gold);
  color: var(--bg-main);
  transform: translate(-50%, -50%) scale(1.08);
}

.antes-depois-label {
  position: absolute;
  bottom: 20px;
  padding: 0.5rem 1.25rem;
  background: rgba(22, 12, 8, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(200, 157, 124, 0.25);
  color: var(--text-light);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.label-antes {
  left: 20px;
}

.label-depois {
  right: 20px;
}

/* --- REVIEWS STYLED INITIALS BADGE --- */
.autor-avatar-initials {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-gold);
  background: var(--bg-card-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* --- HISTORIA / STORY GRID STYLES --- */
.dono-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

/* --- DONO MOSAIC COLLAGE (PREMIUM ASYMMETRIC GRID) --- */
.dono-mosaic-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 520px;
  gap: 1.25rem;
  position: relative;
}

.collage-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1.5px solid var(--glass-border);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Asymmetric Mosaic Grid Coordinates */
.collage-item.portrait {
  grid-column: 1 / 8;
  grid-row: 1 / 13;
}

.collage-item.action {
  grid-column: 8 / 13;
  grid-row: 1 / 7;
}

.collage-item.tools {
  grid-column: 8 / 13;
  grid-row: 7 / 13;
  border-color: rgba(200, 157, 124, 0.25); /* Highlight clippers border */
}

/* Overlay Hover Effects inside Collage */
.collage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 7, 5, 0.85) 0%, rgba(12, 7, 5, 0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.collage-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(22, 12, 8, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(200, 157, 124, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.collage-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--glow-shadow);
  z-index: 5;
}

.collage-item:hover img {
  transform: scale(1.06);
}

.collage-item:hover .collage-overlay {
  background: linear-gradient(to top, rgba(12, 7, 5, 0.95) 0%, rgba(12, 7, 5, 0.05) 60%);
}

.collage-item:hover .collage-tag {
  background: var(--primary-gold);
  color: var(--bg-main);
  border-color: var(--primary-gold);
}

@media (max-width: 968px) {
  .dono-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .dono-mosaic-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 1.5rem;
    max-width: 550px;
    margin: 0 auto;
  }

  .collage-item.portrait, 
  .collage-item.action, 
  .collage-item.tools {
    grid-column: span 1;
    grid-row: auto;
    height: 320px;
  }
}

/* --- DU LIMA CLUB (ASSINATURA) SECTION --- */
.club {
  background-color: #0c0705;
}
.club-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem auto;
}
.club-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.club-plan-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.club-plan-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}
.club-plan-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-gold);
  background: var(--bg-card-light);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(200, 157, 124, 0.15);
}
.club-plan-card:hover::after {
  opacity: 1;
}

/* Elite card variant with gold tint border */
.club-plan-card.elite {
  border-color: rgba(229, 193, 88, 0.3);
}
.club-plan-card.elite::after {
  background: linear-gradient(135deg, var(--primary-glow) 0%, transparent 100%);
}

.club-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200, 157, 124, 0.12);
  color: var(--primary-gold);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.club-plan-card.elite .club-plan-badge {
  background: rgba(229, 193, 88, 0.12);
  color: var(--primary-glow);
}
.club-plan-title {
  font-size: 1.6rem;
  font-family: var(--font-title);
  color: var(--text-light);
  margin-bottom: 1rem;
}
.club-plan-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(200, 157, 124, 0.1);
}
.club-plan-benefit, .club-plan-recurrence {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.club-plan-benefit i, .club-plan-recurrence i {
  color: var(--primary-gold);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}
.club-plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.club-plan-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(200, 157, 124, 0.2);
}
.club-plan-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.club-plan-btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.club-plan-sub-booking {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(200, 157, 124, 0.05);
  padding-top: 0.75rem;
}
.club-plan-sub-booking a {
  color: var(--primary-gold);
  font-weight: 700;
  margin-left: 0.25rem;
  transition: var(--transition-fast);
}
.club-plan-sub-booking a:hover {
  color: var(--primary-glow);
  text-decoration: underline;
}
.club-booking-alert {
  background: var(--bg-card);
  border: 1px solid rgba(200, 157, 124, 0.15);
  border-radius: var(--border-radius-md);
  padding: 1.8rem 2.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.club-booking-alert p {
  font-size: 0.95rem;
  color: var(--text-light);
}
.club-booking-alert i {
  color: var(--primary-gold);
  margin-right: 0.5rem;
}

/* --- TRINKS BOOKING & DIVIDER IN MODAL --- */
.trinks-booking-box {
  margin-bottom: 2.5rem;
  text-align: center;
}
.trinks-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.booking-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.booking-divider::before, .booking-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px dashed rgba(200, 157, 124, 0.25);
}
.booking-divider::before {
  margin-right: .75em;
}
.booking-divider::after {
  margin-left: .75em;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  color: #0c0705;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(200, 157, 124, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999; /* Ensure high priority z-index */
  transition: var(--transition-smooth);
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg) translateY(-3px);
  background: var(--gold-glow-gradient);
  color: #0c0705;
  box-shadow: 0 10px 25px rgba(229, 193, 88, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.4);
}
.whatsapp-float-tooltip {
  position: absolute;
  right: 80px;
  background-color: var(--bg-card);
  border: 1px solid var(--primary-gold);
  color: var(--text-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

/* --- ADDITIONAL RESPONSIVENESS OVERRIDES --- */
@media (max-width: 968px) {
  .club-plans-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .club-plans-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto 3rem auto;
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 30px; /* Safe margin from screen bottom to avoid mobile browser address bars */
    right: 25px;  /* Safe margin from screen right */
    width: 55px;
    height: 55px;
    font-size: 26px;
    box-shadow: 0 6px 20px rgba(200, 157, 124, 0.5);
  }
  .whatsapp-float-tooltip {
    display: none;
  }
}


