﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/*  DESIGN TOKENS â€” Sidmar Lima Â· Canonical Source                            */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  /* Primary Palette */
  --white:              #ffffff;
  --black:              #1a2a32;
  --off-white:          #EAF0F1;
  --surface:            #f0f5f6;

  /* Dark Scale */
  --dark-900:           #1a2a32;
  --brand-deep:         #1a2a32;
  --dark-800:           #1e3040;
  --dark-700:           #253a48;
  --dark-600:           #2e4758;
  --dark-500:           #3E5664;

  /* Text */
  --text-primary:       #ffffff;
  --text-muted:         rgba(234,240,241,0.75);
  --text-subtle:        #83B3BF;
  --text-dim:           rgba(255,255,255,0.1);
  --text-dark:          #1e3040;

  /* Brand Accent */
  --brand-slate:        #3E5664;
  --brand-teal:         #3190A7;
  --brand-mist:         #EAF0F1;
  --brand-powder:       #83B3BF;

  /* Neutral Scale */
  --neutral-50:         #EAF0F1;
  --neutral-100:        #d5e4e7;
  --neutral-200:        #B8CDD2;
  --neutral-300:        #83B3BF;
  --neutral-400:        #5e8fa0;
  --neutral-500:        #4a7282;
  --neutral-600:        #3E5664;
  --neutral-700:        #2e4758;
  --neutral-800:        #1e3040;
  --neutral-900:        #0f1e28;

  /* Glass / Overlays */
  --glass-white:        rgba(255,255,255,0.06);
  --glass-white-10:     rgba(255,255,255,0.10);
  --glass-white-15:     rgba(255,255,255,0.15);
  --glass-brand:        rgba(49,144,167,0.12);
  --border-glass:       rgba(131,179,191,0.15);
  --border-light:       rgba(26, 42, 50, 0.08);
  --glass-dark:         rgba(26, 42, 50, 0.4);

  /* Typography - Modern Stacks */
  --font-primary:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif:         'Instrument Serif', Georgia, serif;
  --font-mono:          'JetBrains Mono', monospace;

  /* Typography Scale (Fluid Clamp System) */
  /* Formula: clamp(min, preferred, max) */
  --fs-h1:      clamp(2.5rem, 5vw + 1rem, 3.75rem);   /* 40px - 60px */
  --fs-h2:      clamp(2.5rem, 3vw + 1.5rem, 3.125rem);  /* 40px - 50px */
  --fs-h3:      clamp(2rem, 2vw + 1rem, 2.5rem);      /* 32px - 40px */
  --fs-h4:      clamp(1.75rem, 1vw + 1rem, 2rem);     /* 28px - 32px (Added ~8px) */
  --fs-h5:      clamp(1.06rem, 0.5vw + 1rem, 1.125rem); /* 17px - 18px */
  --fs-body-lg: clamp(1.06rem, 0.5vw + 1rem, 1.125rem); /* 17px - 18px */
  --fs-body:    clamp(0.93rem, 0.2vw + 0.9rem, 1rem);   /* 15px - 16px */
  --fs-small:   0.875rem;                              /* 14px */
  --fs-caption: 0.6875rem;                             /* 11px */

  /* Motion Easing */
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out:    cubic-bezier(0.85, 0, 0.15, 1);

  /* Border Radius - Unified Rounded System */
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --radius-full:    9999px;
}

@media (max-width: 640px) {
  :root {
    --fs-body: 1rem;
    --fs-body-lg: 1rem;
    --fs-h2: 2rem;        /* Reduzido apenas no mobile */
    --fs-h3: 1.75rem;     /* Reduzido apenas no mobile */
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* RESET & GLOBALS                                                             */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-primary);
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
img, svg { display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
a { text-decoration: none; color: inherit; }
em { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: inherit; }
blockquote { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* KEYFRAMES (from design system)                                              */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes slideUpFade {
  0%   { opacity: 0; transform: translateY(40px) scale(0.98); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes ds-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes orb-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.08); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.75); }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes beam-spin { to { transform: rotate(360deg); } }
@keyframes shimmer-run {
  from { transform: translateX(-100%) skewX(-15deg); }
  to   { transform: translateX(200%) skewX(-15deg); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes clip-in {
  0%   { clip-path: inset(100% 0 0 0); transform: translateY(20px); }
  100% { clip-path: inset(0 0 0 0); transform: translateY(0); }
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* UTILITY ANIMATIONS                                                          */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Reveal classes disabled as per request to remove appearance effects */
.animate-fade-up { opacity: 1; transform: none; }
.delay-1, .delay-2, .delay-3, .delay-4 { animation-delay: 0s; }

.delay-100, .delay-200, .delay-300, .delay-400 { transition-delay: 0s !important; }

.motion-enter { opacity: 1; } /* Ensuring visibility */
.scroll-reveal { opacity: 1; } /* Ensuring visibility */

.hover-lift {
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

  /* â”€â”€â”€ TYPOGRAPHY PRESETS â”€â”€â”€ */
  /* â”€â”€â”€ TYPOGRAPHY PRESETS (Unified Scale) â”€â”€â”€ */
  .type-h1 { font-family: var(--font-primary); font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.05em; line-height: 1.1; }
  .type-h2 { font-family: var(--font-primary); font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; }
  .type-h3 { font-family: var(--font-primary); font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.03em; line-height: 1.2; }
  .type-h4 { font-family: var(--font-primary); font-size: var(--fs-h4); font-weight: 500; letter-spacing: -0.02em; line-height: 1.4; }
  .type-h5 { font-family: var(--font-primary); font-size: var(--fs-h5); font-weight: 600; letter-spacing: -0.01em; line-height: 1.4; }
  .type-h6 { font-family: var(--font-primary); font-size: var(--fs-body); font-weight: 600; letter-spacing: 0; line-height: 1.4; }
  
  .type-body-lg { font-family: var(--font-primary); font-size: var(--fs-body-lg); font-weight: 400; line-height: 1.6; letter-spacing: 0; }
  .type-body    { font-family: var(--font-primary); font-size: var(--fs-body); font-weight: 400; line-height: 1.6; letter-spacing: 0; }
  .type-small   { font-family: var(--font-primary); font-size: var(--fs-small); font-weight: 400; line-height: 1.5; letter-spacing: 0; }
  
  .type-editorial { 
    font-family: var(--font-serif); 
    font-size: clamp(32px, 5vw, 48px); 
    font-weight: 400; 
    font-style: italic; 
    line-height: 1.1; 
    letter-spacing: -0.02em; 
  }
  .type-caption { font-family: var(--font-mono); font-size: var(--fs-caption); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }

  /* NOTE: canonical .eyebrow is defined below with ::before line â€” do not re-declare here */



/* Hero text mask reveal â€” DS canonical clip-path pattern */
.hero-text-mask {
  overflow: hidden; display: block;
}
.hero-text-mask > span {
  display: block;
  transform: translateY(0);
  transition: transform 1.1s var(--ease-out-expo);
}
.hero-text-mask.active > span {
  transform: translateY(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* GLASS BADGE PILL                                                            */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.glass-badge {
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  background: var(--glass-white); border-radius: var(--radius-full);
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  border: 1px solid var(--border-glass);
  font-family: var(--font-primary); font-size: 12px; font-weight: 500;
  color: var(--text-muted); white-space: nowrap;
  transition: background 0.25s, transform 0.25s;
}
.glass-badge:hover { background: var(--glass-white-15); transform: translateY(-2px); }
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-teal); flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* GLOW CARD                                                                   */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.glow-card {
  background: var(--glass-white-10);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s var(--ease-out-expo);
}

/* Light background variant for cards to maintain contrast */
.section-mist .glow-card {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(49, 144, 167, 0.15);
  box-shadow: 0 10px 30px rgba(49, 144, 167, 0.05);
}
.glow-card::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(131,179,191,0.15) 0%, transparent 70%);
  top: var(--mouse-y, -250px); left: var(--mouse-x, -250px);
  transform: translate(-50%, -50%);
  pointer-events: none; opacity: 0; transition: opacity 0.5s ease;
}
.glow-card:hover::after { opacity: 1; }
.glow-card:hover {
  border-color: rgba(131,179,191,0.15); /* Softer premium border */
  box-shadow: 
    0 0 40px rgba(49,144,167,0.05), 
    0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-5px);
}

/* Text decoration utilities â€” unified weights */
.text-editorial { font-family: var(--font-serif); font-weight: 400; font-style: italic; }
.text-medium, .text-semibold { font-weight: 500; }
.text-bold { font-weight: 600; } 
.text-muted { color: var(--text-muted); }
.text-powder { color: var(--brand-powder); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* NAV LINK HOVER EFFECT (from framer-Qte3V)                                  */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nav-link-wrap {
  cursor: pointer; display: inline-flex; align-items: center;
  height: 28px; overflow: hidden; position: relative;
}
.nav-link-inner {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; height: 100%;
}
.nav-link-text {
  font-family: var(--font-primary); font-size: 14px; font-weight: 500;
  color: var(--text-muted); transition: color 0.2s;
}
.nav-link-hover {
  z-index: 1; position: absolute; bottom: -24px;
  font-family: var(--font-primary); font-size: 14px; font-weight: 500;
  color: var(--white); transition: bottom 0.2s var(--ease-out-expo);
}
.nav-link-wrap:hover .nav-link-text { color: transparent; }
.nav-link-wrap:hover .nav-link-hover { bottom: 50%; transform: translateY(50%); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* BTN COMPONENTS (canonical from DS)                                         */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn-pill, .framer-v4OWb-btn {
  cursor: pointer; will-change: transform;
  display: inline-flex; align-items: center;
  gap: 14px; height: min-content;
  padding: 6px 6px 6px 18px; overflow: hidden;
  position: relative; border-radius: var(--radius-full);
  border: none; white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-pill:hover, .framer-v4OWb-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-pill:active, .framer-v4OWb-btn:active { transform: translateY(0) scale(0.98); }

.btn-pill-white, .btn-primary { background: var(--white); }
.btn-pill-white .btn-label, .btn-primary .btn-label { font-size: 14px; font-weight: 600; color: var(--text-dark); z-index: 1; position: relative; }
.btn-pill-white .btn-icon-wrap, .btn-primary .btn-icon-wrap {
  background: var(--dark-800); border-radius: var(--radius-full);
  display: flex; justify-content: center; align-items: center;
  padding: 10px; z-index: 1; transition: transform 0.3s var(--ease-spring);
}
.btn-pill:hover .btn-icon-wrap, .framer-v4OWb-btn:hover .btn-icon-wrap { transform: scale(1.08); }

.btn-pill-outline, .btn-secondary {
  padding: 12px 24px; gap: 0;
  border: 1px solid var(--border-glass); border-radius: var(--radius-full);
  background: transparent;
}
.btn-pill-outline .btn-label, .btn-secondary .btn-label { font-size: 14px; font-weight: 600; color: var(--white); }

/* Beam button - Premium Professional Version */
.btn-beam {
  position: relative; overflow: hidden;
  background: var(--brand-teal); color: var(--white);
  padding: 16px 32px; border-radius: var(--radius-full);
  font-family: var(--font-primary); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), background 0.4s;
  border: none; cursor: pointer;
  z-index: 1;
}
.btn-beam:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(49, 144, 167, 0.3);
  background: #37a3bd; /* Slightly lighter teal */
}
.btn-beam:active { transform: translateY(0) scale(0.98); }

/* Shimmer Beam Effect */
.btn-beam::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0) 30%, 
    rgba(255, 255, 255, 0.4) 50%, 
    rgba(255, 255, 255, 0) 70%, 
    transparent 100%
  );
  transform: translateX(-150%) skewX(-15deg);
  pointer-events: none;
}
.btn-beam:hover::before {
  animation: shimmer-run 1.2s var(--ease-out-expo) infinite;
}

/* Spinner Beam Button */
.beam-btn {
  position: relative; overflow: hidden;
  border-radius: var(--radius-full); padding: 2px;
  background: var(--border-glass); cursor: pointer; display: inline-block;
}
.beam-btn-content {
  background: var(--dark-800); color: var(--white);
  padding: 10px 24px; border-radius: var(--radius-full);
  position: relative; z-index: 2;
  font-family: var(--font-primary); font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; font-size: 12px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.3s;
}
.beam-btn:hover .beam-btn-content { background: var(--dark-700); }
.beam-spinner {
  position: absolute; inset: -50%; width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0 320deg, var(--brand-teal) 360deg);
  animation: beam-spin 3s linear infinite;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* MARQUEE                                                                     */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.marquee-container {
  display: flex; overflow: hidden; user-select: none;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 50s linear infinite; gap: 0;
}
.marquee-container:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-subtle); padding: 0 32px; white-space: nowrap;
  flex-shrink: 0; display: flex; align-items: center; gap: 24px;
}
.marquee-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--brand-teal); flex-shrink: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* AMBIENT ORB BACKGROUNDS                                                     */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(49,144,167,0.18), transparent 70%);
  top: -100px; right: -100px;
  animation: orb-pulse 8s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(62,86,100,0.25), transparent 70%);
  bottom: 0; left: -80px;
  animation: orb-pulse 10s ease-in-out infinite 2s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(131,179,191,0.12), transparent 70%);
  top: 40%; left: 45%;
  animation: orb-pulse 12s ease-in-out infinite 4s;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* GRID DOT BG                                                                 */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.bg-grid-dark {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  z-index: 1;
}
.bg-grid-light {
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  z-index: 1;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* LAYOUT CONTAINER                                                            */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 24px;
  position: relative; z-index: 1;
}
.container-narrow { max-width: 860px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€â”€ SITE HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-header {
  position: fixed; top: 16px; left: 50%; 
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1400px;
  z-index: 1000;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%); /* Smoky White Gradient */
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  height: 68px; /* Slightly taller for more presence */
  display: flex; align-items: center;
  transition: all 0.5s var(--ease-out-expo);
  overflow: visible;
}
.pain-cell {
  background: rgba(255, 255, 255, 0.03); /* Fundo branco ultra leve */
  backdrop-filter: blur(8px); /* Desfoque fino */
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08); /* Borda sutil de vidro */
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.pain-cell:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(49, 144, 167, 0.3);
  transform: translateX(8px); /* Feedback lateral suave */
}
.site-header.header--hidden {
  transform: translate(-50%, -120%);
}
.site-header.scrolled {
  top: 12px;
  /* Whiter on the left for logo contrast, more transparent on the right */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 100%);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.site-header.scrolled .brand { color: var(--dark-900); }
.site-header.scrolled .brand-crp { color: var(--brand-teal); }
  .site-header.scrolled .nav-links a { color: var(--dark-600); }
  .site-header.scrolled .nav-links a:hover { color: var(--brand-teal); }
.site-header.scrolled .nav-toggle-bar { background: var(--dark-800); }

.site-header.scrolled::after { opacity: 0.3; }
.site-header .container {
  max-width: 100%;
  padding: 0 32px;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  position: relative;
}
.brand-logo {
  height: 38px; /* Restaurado para a altura anterior */
  width: auto;
  display: block;
  transition: all 0.4s var(--ease-out-expo);
}
.logo-scrolled {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.logo-initial {
  opacity: 1;
  transform: translateY(0);
}

.site-header.scrolled .logo-initial {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}
.site-header.scrolled .logo-scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.brand:hover .brand-logo {
  transform: scale(1.04);
}
.brand-crp {
  display: block;
  font-family: var(--font-mono); font-size: 10px;
  font-weight: 500; color: var(--brand-slate); /* Darker for light header */
  letter-spacing: 0.10em; text-transform: uppercase;
}

/* Desktop Nav */
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  display: inline-flex; align-items: center;
  position: relative;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
  color: #83B3BF !important;
  background: rgba(255, 255, 255, 0.12) !important; /* Softer whitish glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Scrolled state overrides - maintaining soft glass */
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  background: rgba(255, 255, 255, 0.4) !important;
  border-color: rgba(0, 0, 0, 0.05);
  color: #83B3BF !important;
}


/* Nav CTA button */
.nav-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 7px 7px 7px 20px;
  background: var(--brand-teal); border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; color: var(--white);
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { 
  background: #37a3bd;
  transform: translateY(-1px); 
  box-shadow: 0 8px 24px rgba(49, 144, 167, 0.25);
}
.nav-cta .icon-wrap {
  background: var(--white); border-radius: var(--radius-full);
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-teal); transition: transform 0.3s var(--ease-spring);
}
.nav-cta:hover .icon-wrap { transform: scale(1.1); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column;
  gap: 5px; padding: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); /* Brighter for better visibility */
  border-radius: var(--radius-full);
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s, width 0.3s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
  position: absolute; top: 72px; left: 0; right: 0;
  background: #1a2a32; /* Context-independent deep navy */
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  padding-bottom: 8px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateY(-120%);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 999;
  visibility: hidden;
}
.nav-mobile.open { transform: translateY(0); visibility: visible; }
.nav-mobile a {
  padding: 18px 24px;
  font-size: 16px; font-weight: 500; color: var(--text-muted);
  border-bottom: 1px solid var(--border-glass);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover,
.nav-mobile a.active { 
  color: #83B3BF; 
  padding-left: 32px; 
}
.nav-mobile-cta {
  margin: 16px; padding: 16px !important;
  background: var(--brand-teal) !important; border-radius: var(--radius-full) !important;
  color: var(--white) !important; text-align: center; font-weight: 600 !important;
  border-bottom: none !important;
}
.nav-mobile-cta:hover { opacity: 0.9; padding-left: 16px !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€â”€ HERO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden; padding-top: 72px;
  background: var(--dark-800);
}
.hero-content {
  flex: 1; display: flex; align-items: center;
  padding: 80px 24px;
  z-index: 2;
}
.hero-inner {
  display: flex; flex-direction: row;
  align-items: center; gap: 40px;
  width: 100%; max-width: 1400px; margin: 0 auto;
}
.hero-left {
  flex: 1; display: flex; flex-direction: column; gap: 32px;
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.hero-heading {
  color: var(--white);
}
.hero-heading span {
  font-size: inherit;
}
.hero-heading .hero-accent {
  font-size: calc(var(--fs-h1) + 8px);
  display: block;
  margin-top: 8px;
}
.hero-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--brand-powder);
  display: block;
}
/* Serif emphasis used inside sections (except hero) */
.section:not(#hero) .accent-serif,
.section:not(#hero) em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400; /* Regular weight mandatory */
  font-size: calc(1em + 8px); 
  color: var(--brand-teal);
  line-height: 1;
  display: inline-block;
}

.section-darker {
  background: var(--dark-900);
  position: relative;
}

.section-slate-mid {
  background: #253a48; /* Mid-tone slate from palette */
  position: relative;
}

/* â”€â”€â”€ SECTION BACKGROUNDS â”€â”€â”€ */
.section-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85; /* Increased for better visibility on dark backgrounds */
}

#dor {
  position: relative;
}

#dor .section-bg-image {
  background-image: url('../assets/pra_quem_e.webp');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

#abordagem {
  position: relative;
}

#abordagem .section-bg-image {
  background-image: url('../assets/como_funciona.webp');
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

#especialidades .section-bg-image {
  background-image: url('../assets/oque_tratamos.webp');
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.hero-sub {
  color: var(--text-muted); line-height: 1.7; max-width: 480px;
}
.hero-sub strong { font-weight: 600; color: var(--white); }
.hero-cta-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.hero-fine {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-subtle); letter-spacing: 0.10em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.hero-fine::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--brand-powder); flex-shrink: 0;
}

/* Hero right */
.hero-right {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100vh;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}
.hero-right picture {
  display: block;
  height: 100%;
}
.hero-right img {
  height: 100vh;
  width: auto;
  object-fit: cover;
  object-position: bottom right;
  border-radius: 0;
  pointer-events: auto; /* re-enable hover on image */
  /* Premium organic depth via multi-layered drop-shadow - follows image silhouette */
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.45)) drop-shadow(0 10px 30px rgba(49, 144, 167, 0.15));
  transition: transform 0.2s ease-out; /* Snappier transition for JS mouse follow */
  will-change: transform;
}
/* Floating badge beside portrait */
.hero-float-badge {
  position: absolute;
  bottom: 180px;
  right: 32%;
  background: rgba(255, 255, 255, 0.04); /* Reverted to soft white */
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  display: flex; flex-direction: row; align-items: center; gap: 8px;
  animation: float 7s ease-in-out infinite;
  z-index: 5;
  pointer-events: none;
  transition: all 0.5s var(--ease-out-expo);
}
.hero-float-badge i,
.hero-float-badge span {
  color: var(--brand-teal) !important; /* Ensure blue font color */
  font-size: 14px;
}
.hero-float-badge .badge-content {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-float-badge-value {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; 
  color: var(--brand-teal); /* Azul solicitado */
  text-transform: uppercase; letter-spacing: 0.12em;
}
.hero-float-badge-label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--brand-teal); /* Azul solicitado */
  opacity: 0.9;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€â”€ LAYOUT UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  width: 100%;
}
.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  width: 100%;
}

.section {
  position: relative; padding: 140px 0; /* Vertical padding only, container handles horizontal */
  overflow: hidden;
}

/* Dark variants */
.section-dark    { background: var(--dark-800); }
.section-darker  { background: var(--neutral-900); }
.section-slate-mid { background: var(--dark-600); } /* #2e4758 â€” medium slate */
.section-white { background: var(--white); color: var(--dark-900); }

/* Light variant â€” mist (#EAF0F1) */
.section-mist {
  background: var(--neutral-50);
  color: var(--dark-800);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#dor.section-mist {
  min-height: calc(100vw * (821 / 1915));
  padding: 100px 0;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  #dor.section-mist {
    min-height: 600px;
    aspect-ratio: auto;
  }
}

#dor .section-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../assets/pra_quem_e.webp');
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

#abordagem .section-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../assets/como_funciona.webp');
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.mist-orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none; opacity: 0.12;
  z-index: -1; animation: float 12s ease-in-out infinite;
}
.mist-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--brand-teal), transparent 70%);
  top: -100px; right: -100px;
}
.mist-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--brand-powder), transparent 70%);
  bottom: -50px; left: -100px;
  animation-delay: -3s;
}
.section-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035; pointer-events: none; z-index: 0;
}
.section-mist .section-heading {
  color: var(--dark-900) !important;
}
.section-mist .section-heading em {
  color: var(--brand-teal);
  font-family: var(--font-serif); 
  font-style: italic;
  font-weight: 400; /* Regular weight */
  font-size: calc(1em + 8px); 
}
.section-mist .eyebrow {
  color: var(--brand-teal);
}
.section-mist .eyebrow::before {
  background: var(--brand-teal);
}
.pain-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.pain-text-side {
  position: relative;
}

.pain-statement {
  margin-top: 40px;
}

.pain-statement p {
  margin-bottom: 12px;
  opacity: 0.85;
}

.pain-lead {
  margin-top: 16px;
  margin-bottom: 8px;
  opacity: 0.6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.section-mist .pain-grid {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Reduzido de 24px para aproximar os cards */
  margin-top: 0;
}

.section-mist .pain-cell {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(49, 144, 167, 0.1);
  padding: 32px;
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
  width: 100%;
}

.section-mist .pain-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.section-mist .pain-content {
  flex: 1;
}
.section-mist .pain-cell h3 { 
  margin-bottom: 4px;
  font-size: 1.44rem; /* Standard Card Title */
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--font-primary);
  color: var(--brand-teal);
  font-style: normal;
  letter-spacing: -0.01em;
}
.section-mist .pain-cell p {
  font-size: var(--fs-body);
  margin: 0;
  line-height: 1.4;
}
/* Unified single hover rule â€” removed conflicting duplicate */
.section-mist .pain-cell:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(49, 144, 167, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(49, 144, 167, 0.12);
}



.section-mist .pain-cell h3 { 
  color: var(--brand-teal);
}
.section-mist .pain-cell h3 em {
  color: var(--brand-teal);
}
.section-mist .pain-cell p { 
  color: var(--dark-700); /* Darkened from 600 for better contrast */
  opacity: 0.9;
}
.section-mist .pain-statement {
  background: transparent;
  border: none;
  padding: 0;
  max-width: 800px;
}
.section-mist .pain-statement p { 
  color: var(--dark-800); /* Maximum contrast for body statement */
}
.section-mist .pain-statement p em {
  font-weight: 600;
  color: var(--brand-teal);
}
.section-mist .pain-statement::before { display: none; }
/* About on light */

.section-mist .about-name  { color: var(--brand-slate); }
.section-mist .about-text p { color: var(--brand-slate); opacity: 0.85; }
.section-mist .about-text strong { color: var(--brand-slate); font-weight: 700; }
.section-mist .about-text em { color: var(--brand-teal); }
.section-mist .badge-row {
  background: rgba(255,255,255,0.8);
  border-color: rgba(49,144,167,0.15);
}
.section-mist .badge-row:hover { background: rgba(255,255,255,1); }
.section-mist .badge-text-value { color: var(--dark-800); }

/* Footer text color on light */
.section-mist .articles-sub { color: var(--dark-500); }

/* â”€â”€â”€ Canonical Eyebrow (single definition) â”€â”€â”€ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-teal);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--brand-teal);
  flex-shrink: 0;
}
.section-heading {
  color: var(--white);
  font-weight: 800;
}
.accent-serif {
  font-family: var(--font-serif); 
  font-style: normal; /* Normal style as requested previously */
  font-weight: 400; 
  font-size: 1.15em; 
  display: block;
  margin-top: 0.1em;
  color: var(--brand-teal); 
}

.pain-footer-note {
  color: var(--brand-teal) !important;
  font-weight: 500;
  margin-top: 32px;
  opacity: 1 !important;
}
.section-heading .accent-serif {
  color: var(--brand-powder); /* Lighter color for dark background headings */
}
.section-mist .section-heading .accent-serif {
  color: var(--brand-teal); /* Teal for light background headings */
}
.section-divider {
  width: 100%; height: 1px; background: var(--border-glass);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€â”€ ABORDAGEM (APPROACH) SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.approach-container {
  display: block;
  max-width: 800px; /* Mantendo largura de leitura */
  margin-left: 0;
  text-align: left;
}

.approach-badges-box {
  margin-top: 40px;
  display: block;
}

.approach-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.approach-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  transition: all 0.5s var(--ease-out-expo);
  cursor: default;
  position: relative;
  overflow: hidden;
  opacity: 0; /* Prepared for GSAP entrance */
  transform: translateY(20px);
}

.approach-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
}

.approach-badge i {
  color: var(--brand-teal);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.approach-badge span {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  white-space: nowrap;
}

.approach-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.approach-badge:hover i {
  transform: scale(1.1);
  color: var(--brand-powder);
}

.approach-badge:hover span {
  color: var(--white);
}

.approach-badge:hover::before {
  transform: translateX(100%);
}



/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€â”€ SPECIALTIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#especialidades {
  background-image: url('../assets/oque_tratamos.webp');
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

.specialties-container {
  max-width: 1200px; margin: 0 auto;
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; /* Reduced gap for a tighter layout */
  width: 100%;
  align-items: start;
}

/* Specialty Grid - Top Aligned */
.specialty-card {
  transform: none;
}

.specialties-grid > div:nth-child(even) {
  transform: none;
}

.specialty-card:hover {
  /* background removed to let glow-card shine */
  border-color: rgba(49, 144, 167, 0.2);
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(26, 42, 50, 0.3);
}

.specialty-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg) !important;
  padding: 48px 32px 40px; /* Reduced padding for more compact look */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px; /* Reduced internal gap */
  text-align: left;
  transition: all 0.8s var(--ease-out-expo);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  min-height: 480px; /* Reduced height as requested */
}

.specialty-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}

@media (max-width: 1024px) {
  .specialties-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 24px;
    margin: 0 -24px;
    padding: 0 24px 24px 24px;
    -webkit-overflow-scrolling: touch;
  }
  .specialty-card {
    min-width: 280px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 40px 24px;
    min-height: auto;
  }
}



.card-num {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-serif);
  font-size: 48px;
  opacity: 0.15;
  color: var(--brand-teal);
  font-style: italic;
  pointer-events: none;
}

.card-icon-wrap {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(49,144,167,0.1);
  border: 1px solid rgba(49,144,167,0.2);
  border-radius: 50%; 
  color: var(--brand-teal);
  transition: all 0.6s var(--ease-out-expo);
  flex-shrink: 0;
}

.specialty-card:hover .card-icon-wrap {
  background: var(--brand-teal);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

/* Specialty card titles: use primary sans-serif for legibility at small sizes */
.specialty-card h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.44rem; /* Standard Card Title */
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.specialty-card p {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 100%;
  opacity: 0.85;
}

/* Card CTA Button */
.card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
}

.card-cta svg {
  transition: transform 0.4s var(--ease-out-expo);
  color: var(--brand-teal);
}

.specialty-card:hover .card-cta {
  background: rgba(49, 144, 167, 0.15);
  border-color: rgba(49, 144, 167, 0.4);
  transform: translateX(4px);
}

.card-cta:hover {
  background: var(--brand-teal) !important;
  border-color: var(--brand-teal) !important;
}

.card-cta:hover svg {
  color: var(--white);
  transform: translateX(3px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€â”€ SOBRE (ABOUT) SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
#sobre {
  padding: 0;
  background: transparent; /* Allows .section-darker class to show */
  overflow: hidden;
}
#sobre .about-content .eyebrow {
  color: var(--brand-teal);
}
#sobre .about-content .eyebrow::before {
  background: var(--brand-teal);
}
#sobre .about-text p {
  color: var(--text-muted);
  opacity: 0.9;
  line-height: 1.8;
}
#sobre .about-text strong {
  color: var(--white);
  font-weight: 700;
}
#sobre .about-text em {
  color: var(--brand-teal);
}
#sobre .badge-text-value {
  color: var(--white);
}
#sobre .badge-icon {
  background: transparent;
  color: var(--brand-teal);
}
/* Badge rows on dark: glass effect */
#sobre .badge-row {
  background: var(--glass-white-05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}
#sobre .badge-row:hover {
  background: var(--glass-white-10);
  border-color: var(--brand-teal);
  transform: translateY(-4px);
}
#sobre .badge-text-label {
  color: var(--brand-teal);
  opacity: 0.8;
}
#sobre .about-crp {
  color: var(--brand-teal);
  opacity: 0.8;
}

.about-layout {
  display: grid; 
  grid-template-columns: 1.1fr 1fr; /* Increased space for the photo area */
  align-items: stretch;
  max-width: 100%; 
  margin: 0;
  min-height: 85vh;
  position: relative;
  z-index: 10;
  background: transparent; 
}

.about-image {
  height: 100%; 
  width: 110%; /* Slightly wider to allow negative shift without gap */
  object-fit: cover; 
  object-position: bottom left;
  transform: translateX(-10%); /* Pulling more to the left as requested */
  filter: saturate(0.9) contrast(1.05) drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  transition: all 0.8s var(--ease-out-expo);
  pointer-events: none;
}

.about-content {
  display: flex; 
  flex-direction: column; 
  gap: 32px;
  padding: 80px 8%;
  justify-content: center;
  align-items: flex-start; /* Align content to the left of its container */
}

.about-content-inner {
  max-width: 480px; /* Matched to hero-sub max-width as requested */
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* about-name inherits context colour â€” dark on white bg, overridden per section */
.about-name {
  color: var(--brand-slate);
}
/* Global fallback (dark sections) */
.about-crp {
  font-family: var(--font-mono);
  color: var(--brand-teal);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.75;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--white); font-weight: 600; }
.about-text em { color: var(--brand-powder); }

.about-stats-bar {
  display: flex;
  align-items: stretch; /* Ensure children take full height */
  gap: 0;
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  width: fit-content;
  overflow: hidden;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08); /* Softer white glass */
}

.stat-item:hover .stat-label,
.stat-item:hover .stat-icon {
  color: var(--brand-powder);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
  opacity: 0.5;
}

.stat-icon {
  color: var(--brand-teal);
  display: flex;
  align-items: center;
}

.stat-label {
  font-size: 9px;
  font-weight: 600;
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.stat-value {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about-stats-bar {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  .stat-item {
    padding: 16px 20px;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-image {
    height: 60vh;
    width: 100%;
    transform: none;
  }
  .about-content {
    padding: 64px 24px;
    align-items: center;
  }
  .about-content-inner {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .about-badges {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .badge-row {
    flex-direction: row;
    text-align: left;
    padding: 16px;
  }
}

#artigos {
  background: #1e3040; /* Specific distinct dark blue/slate for articles */
  position: relative;
}

#artigos .section-bg-image {
  background-image: url('../assets/artigos.webp');
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
}

.articles-container {
  max-width: 1200px; margin: 0 auto;
}
.articles-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
  flex-wrap: wrap; gap: 24px;
}
.articles-sub {
  font-size: 14px; color: var(--text-muted);
  max-width: 320px; line-height: 1.6; text-align: right;
}
.articles-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex; flex-direction: column; 
  gap: 16px;
  position: relative; overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  cursor: pointer;
  height: 100%;
  text-align: left;
}
.article-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(131, 179, 191, 0.2);
  transform: translateY(-8px);
  box-shadow: 
    0 24px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(49, 144, 167, 0.15);
}
.article-card .eyebrow {
  margin-bottom: 0; /* Rely on parent gap for spacing */
}
.article-card h4 {
  color: var(--white); 
  font-size: 1.44rem; /* Standard Card Title */
  line-height: 1.3; 
  font-weight: 700;
  letter-spacing: -0.01em;
}
.article-card p {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: 1.6;
  flex: 1; /* Pushes the link to the bottom */
}
.article-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--brand-powder);
  margin-top: auto;
  transition: all 0.3s var(--ease-out-expo);
}
.article-link svg { transition: transform 0.3s var(--ease-out-expo); }
.article-card:hover .article-link { color: var(--white); }
.article-card:hover .article-link svg { transform: translateX(4px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€â”€ CTA FINAL SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-section {
  background: var(--dark-900); /* Strongest Navy Blue */
  text-align: center;
  position: relative;
}

#contato .section-bg-image {
  background-image: url('../assets/cta.webp');
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
}
.cta-inner {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.cta-heading {
  color: var(--white);
}
.cta-heading .accent-serif {
  font-family: var(--font-serif); 
  font-style: normal; /* Normal as per user rule */
  color: var(--brand-powder);
  font-weight: 400;
  font-size: calc(1em + 8px);
}
.cta-sub {
  color: var(--text-muted);
  max-width: 520px;
}
.cta-disclaimer {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-subtle); letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer {
  background: var(--dark-900);
  border-top: 1px solid var(--border-glass);
  padding: 40px 24px;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.footer-brand { font-weight: 600; font-size: var(--fs-body); color: var(--white); }
.footer-meta {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 12px; color: var(--text-subtle);
}
.footer-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px;
}
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-body); font-weight: 500; color: var(--white);
  padding: 8px 16px; border-radius: var(--radius-full);
  background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.25);
  transition: background 0.2s;
}
.footer-wa:hover { background: rgba(37,211,102,0.25); }
.footer-copy {
  font-size: 11px; color: var(--text-subtle);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* â”€â”€â”€ WHATSAPP FLOAT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 1000;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #1a2a32;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37,211,102,0.50);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* RESPONSIVE                                                                  */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 960px) {
  .section-bg-image { display: none !important; }
  
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { flex-direction: column; gap: 48px; }
  .hero-right { position: relative; height: auto; width: 100%; max-width: 600px; margin: 0 auto; pointer-events: auto; }
  .hero-right img { height: auto; width: 100%; object-fit: contain; object-position: center; }

  .approach-layout { grid-template-columns: 1fr; gap: 48px; }
  .approach-sticky { position: static; }

  .articles-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  
  .pain-layout { grid-template-columns: 1fr; gap: 48px; }
  .pain-grid { flex-direction: column; gap: 16px; }
  .pain-lead { font-size: 1.1rem; }
}

@media (max-width: 640px) {
  .br-desktop { display: none; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .hero-content { padding: 48px 20px; }
  .hero-float-badge { display: none; }

  .articles-grid { grid-template-columns: 1fr; }
  .articles-sub { text-align: left; }

  /* DOR section mobile: allow natural height and fix cards */
  #dor.section-mist {
    min-height: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-mist .pain-cell {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  /* About: stack portrait above content */
  .about-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-image {
    height: 400px; /* Fixed height prevents collapse */
  }
  .about-content {
    padding: 48px 24px;
  }

  /* Specialties: single column on small mobile */
  .specialties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    overflow-x: visible;
    padding: 0;
    margin: 0;
  }
  .specialty-card {
    min-width: unset;
  }

  /* CTA section mobile adjustments */
  .cta-inner {
    padding: 0 24px;
  }
  .cta-heading {
    font-size: 2rem;
    line-height: 1.2;
  }
  .cta-heading .accent-serif {
    font-size: 1.1em;
  }
  .cta-sub {
    max-width: 100%;
    padding: 0 8px;
  }
}
