/* ==========================================================================
   SELMA LEMOS ESTÉTICA AVANÇADA - LUXURY SPA & CLINIC DESIGN SYSTEM
   Author: Senior UI/UX Designer & Front-End Developer
   Aesthetics: Clean, Sophisticated, Minimalist & Welcoming High-End Luxury
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- Root CSS Variables --- */
:root {
  /* Color Palette */
  --bg-primary: #FDFBF7;
  --bg-secondary: #F8F5F0;
  --bg-tertiary: #F1ECE4;
  --bg-surface: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.82);
  --bg-glass-card: rgba(255, 255, 255, 0.88);
  --bg-dark-slate: #151515;
  --bg-slate-card: #1E1E1E;

  /* Text Colors */
  --text-primary: #1A1A1A;
  --text-secondary: #585550;
  --text-muted: #847F78;
  --text-inverse: #FFFFFF;
  --text-inverse-muted: #D1CEC7;

  /* Accent Colors */
  --gold-primary: #C5A059;
  --gold-light: #DFC48E;
  --gold-subtle: #F3EBDD;
  --gold-dark: #9F7C38;
  --gold-gradient: linear-gradient(135deg, #DFCA9B 0%, #C5A059 50%, #A9833D 100%);
  --gold-glow: rgba(197, 160, 89, 0.28);
  
  --rose-gold: #D4A39B;
  --terracotta-soft: #C87D65;
  --terracotta-subtle: #FAF0EC;
  --nude-warm: #E6DDD5;
  --sage-spa: #8FA695;

  /* Borders & Dividers */
  --border-subtle: rgba(197, 160, 89, 0.22);
  --border-glass: rgba(255, 255, 255, 0.65);
  --border-light: rgba(0, 0, 0, 0.06);

  /* Shadows */
  --shadow-xs: 0 2px 6px rgba(26, 26, 26, 0.03);
  --shadow-sm: 0 8px 24px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 16px 36px rgba(26, 26, 26, 0.06);
  --shadow-lg: 0 24px 48px rgba(197, 160, 89, 0.12);
  --shadow-float: 0 30px 60px -12px rgba(26, 26, 26, 0.12);
  --shadow-glow: 0 0 35px var(--gold-glow);

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif-sub: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-padding: clamp(4.5rem, 8vw, 8rem) 1.5rem;
  --container-max: 1240px;
  --header-height: 84px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.68;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(at 0% 0%, rgba(197, 160, 89, 0.035) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(200, 125, 101, 0.025) 0px, transparent 50%);
}

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

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography Utilities --- */
.font-serif {
  font-family: var(--font-serif);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

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

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Section Header Shared */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(197, 160, 89, 0.12);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.1rem;
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.08);
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

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

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(197, 160, 89, 0.45);
  color: #FFFFFF;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% { left: -60%; }
  35% { left: 140%; }
  100% { left: 140%; }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--gold-dark);
}

.btn-dark {
  background: var(--bg-dark-slate);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: var(--gold-light);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-normal);
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(26, 26, 26, 0.05);
  border-bottom-color: rgba(197, 160, 89, 0.2);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-emblem {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.brand-logo:hover .brand-emblem {
  transform: rotate(5deg) scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-header-cta {
  padding: 0.72rem 1.45rem;
  font-size: 0.86rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(223, 196, 142, 0.16) 0%, transparent 45%),
              radial-gradient(circle at 10% 80%, rgba(200, 125, 101, 0.08) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-badge-google {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.hero-avatar-group {
  display: flex;
  margin-right: -0.3rem;
}

.hero-avatar-group img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -8px;
  object-fit: cover;
}

.hero-avatar-group img:first-child {
  margin-left: 0;
}

.google-stars {
  color: #F4B400;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.google-rating-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
}

.google-rating-text span {
  color: var(--text-muted);
  font-weight: 400;
}

.hero-title {
  font-size: clamp(2.3rem, 4.3vw, 3.8rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.18;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  font-family: var(--font-serif-sub);
  color: var(--gold-dark);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.2rem;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.hero-highlight-item {
  display: flex;
  flex-direction: column;
}

.hero-highlight-num {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.1;
}

.hero-highlight-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.35;
  margin-top: 0.25rem;
}

/* Hero Media / Floating composition */
.hero-media-wrapper {
  position: relative;
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 6px solid #FFFFFF;
  aspect-ratio: 3/4;
  max-width: 440px;
  margin: 0 auto;
  background: #1A1A1A;
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.hero-media-card:hover img {
  transform: scale(1.03);
}

/* Glassmorphism Floating Badges */
.floating-glass-badge {
  position: absolute;
  background: var(--bg-glass-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 15px 35px rgba(26, 26, 26, 0.08);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 2;
  animation: floatSubtle 6s ease-in-out infinite;
}

.floating-glass-badge.badge-top {
  top: -24px;
  right: -20px;
  animation-delay: 0s;
}

.floating-glass-badge.badge-bottom {
  bottom: -24px;
  left: -20px;
  animation-delay: 3s;
}

@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.badge-content h4 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.badge-content p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.2;
  margin-top: 2px;
}

/* ==========================================================================
   DIFERENCIAIS / 4 PILARES
   ========================================================================== */
.features-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 3.5rem;
}

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.7rem;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gold-subtle);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.feature-card:hover .feature-icon-box {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.35);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: auto;
}

/* ==========================================================================
   PROCEDIMENTOS & TRATAMENTOS
   ========================================================================== */
.treatments-section {
  padding: var(--section-padding);
  position: relative;
}

/* Category Filter Tabs */
.treatment-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.8rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.35);
}

/* Treatment Grid */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.treatment-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-subtle);
}

.treatment-img-wrap {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

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

.treatment-card:hover .treatment-img-wrap img {
  transform: scale(1.06);
}

.treatment-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(26, 26, 26, 0.82);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.treatment-tag.gold {
  background: rgba(197, 160, 89, 0.9);
  color: #FFFFFF;
}

.treatment-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.treatment-title {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.treatment-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.treatment-bullets {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.treatment-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.treatment-bullets li svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.treatment-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.treatment-duration {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-learn-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-learn-more:hover {
  color: var(--text-primary);
  transform: translateX(3px);
}

/* ==========================================================================
   SOBRE A ESPECIALISTA / SELMA LEMOS
   ========================================================================== */
.about-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 4.5rem;
}

.about-image-wrapper {
  position: relative;
}

.about-portrait-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 8px solid #FFFFFF;
  aspect-ratio: 3/4;
  max-width: 440px;
  margin: 0 auto;
  background: #1A1A1A;
}

.about-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--bg-dark-slate);
  color: #FFFFFF;
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(197, 160, 89, 0.3);
  text-align: center;
}

.badge-exp-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.badge-exp-text {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-inverse-muted);
  margin-top: 4px;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 600;
  margin-bottom: 1.4rem;
  line-height: 1.25;
}

.about-bio {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.8rem 0;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.credential-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-text h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.credential-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.founder-quote {
  border-left: 2px solid var(--gold-primary);
  padding-left: 1.4rem;
  margin: 1.5rem 0 2rem;
  font-family: var(--font-serif-sub);
  font-size: 1.22rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
}

.founder-signature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.signature-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.signature-role {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   RESULTADOS REAIS & COMPARADOR INTERATIVO
   ========================================================================== */
.results-section {
  padding: var(--section-padding);
  position: relative;
}

.results-interactive-wrapper {
  margin-top: 3.5rem;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.results-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

/* Interactive Before & After Slider */
.ba-slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 4px solid #FFFFFF;
  user-select: none;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-image-before {
  background-image: url('images/treatment_sculpt.jpg');
  filter: contrast(0.92) saturate(0.9);
}

.ba-image-after {
  background-image: url('images/treatment_sculpt.jpg');
  width: 50%;
  border-right: 2px solid var(--gold-primary);
  box-shadow: 2px 0 12px rgba(0,0,0,0.2);
  filter: contrast(1.05) saturate(1.1);
}

.ba-label {
  position: absolute;
  top: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
}

.ba-label-before {
  right: 1rem;
  background: rgba(26, 26, 26, 0.8);
  color: #FFFFFF;
}

.ba-label-after {
  left: 1rem;
  background: var(--gold-primary);
  color: #FFFFFF;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gold-primary);
  cursor: ew-resize;
  z-index: 5;
  transform: translateX(-50%);
}

.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.95rem;
}

.results-ethics-notice {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 1.2rem;
  border-left: 3px solid var(--gold-primary);
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #F4B400;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFFFFF;
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}

.author-info h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.author-info p {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 500;
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
  position: relative;
}

.faq-wrapper {
  max-width: 840px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background-color var(--transition-fast);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--gold-gradient);
  color: #FFFFFF;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 1.8rem 1.6rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-cta-box {
  margin-top: 3.5rem;
  text-align: center;
  background: #FFFFFF;
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.faq-cta-text h4 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-cta-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   AGENDAMENTO / CONTATO & MAPA
   ========================================================================== */
.contact-section {
  padding: var(--section-padding);
  position: relative;
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  margin-top: 3.5rem;
}

.contact-card-form {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.45rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 95px;
}

.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox-label input {
  accent-color: var(--gold-primary);
  width: 16px;
  height: 16px;
}

/* Contact Info & Map Card */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.clinic-location-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.clinic-location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-info-details p, .contact-info-details a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-info-details a:hover {
  color: var(--gold-dark);
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-dark-slate);
  color: #FFFFFF;
  padding: 5rem 1.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: var(--text-inverse-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 1.2rem 0 1.6rem;
  max-width: 320px;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: translateY(-3px);
  color: #FFFFFF;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-inverse-muted);
  transition: all var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: var(--text-inverse-muted);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 0.6rem;
}

.footer-hours-item span:first-child {
  font-weight: 600;
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-inverse-muted);
}

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

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

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.75rem 1.35rem 0.75rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55);
  color: #FFFFFF;
}

.floating-whatsapp-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: #25D366;
  opacity: 0.4;
  animation: pulseEffect 2s cubic-bezier(0.25, 0, 0, 1) infinite;
  z-index: -1;
}

@keyframes pulseEffect {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35, 1.45); opacity: 0; }
}

/* ==========================================================================
   TREATMENT MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(20px) scale(0.96);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-subtle);
}

.modal-backdrop.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
}

.modal-content-inner {
  padding: 2.5rem;
}

.modal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-subtle);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-body-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.8rem;
  background: var(--bg-secondary);
  padding: 1.2rem;
  border-radius: var(--radius-sm);
}

.modal-spec-item h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.modal-spec-item p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Delay helpers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ==========================================================================
   ESPECIALIZAÇÕES & QUALIFICAÇÕES (QUEM SOU)
   ========================================================================== */
.specialization-block {
  margin: 1.5rem 0 1.8rem;
}

.specialization-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.specialization-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.specialization-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.specialization-pill:hover {
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--gold-dark);
}

.specialization-pill .pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
  display: inline-block;
  flex-shrink: 0;
}

/* ==========================================================================
   BOX "POR QUE ACONTECE" NOS PROTOCOLOS
   ========================================================================== */
.protocol-reasons-box {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  margin-bottom: 1.1rem;
  border-left: 3px solid var(--gold-primary);
}

.protocol-reasons-title {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}

.protocol-reasons-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.protocol-reasons-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   NOSSO ESPAÇO SECTION
   ========================================================================== */
.space-section {
  padding: var(--section-padding);
  background: var(--bg-surface);
  position: relative;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.space-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  transition: all var(--transition-normal);
}

.space-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-subtle);
}

.space-card-img {
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
}

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

.space-card:hover .space-card-img img {
  transform: scale(1.06);
}

.space-card-info {
  padding: 1.5rem;
}

.space-card-info h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.space-card-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.space-hours-banner {
  margin-top: 3rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.space-hours-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.space-hours-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.space-hours-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.space-hours-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.space-hours-highlight {
  font-weight: 700;
  color: var(--gold-dark);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-media-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .space-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 820px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: flex-start;
    padding: calc(var(--header-height) + 1.5rem) 2rem 3rem;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
    transition: right var(--transition-normal);
    z-index: 1000;
    gap: 1.4rem;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .results-grid-top {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .space-hours-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem;
  }

  .space-hours-content {
    flex-direction: column;
    text-align: center;
  }

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

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

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

  .treatments-grid {
    grid-template-columns: 1fr;
  }

  .space-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .about-credentials {
    grid-template-columns: 1fr;
  }

  .about-experience-badge {
    right: 0;
    bottom: -1rem;
  }
}
