/* ═══════════════════════════════════════
   FISIO VITAE — Global Stylesheet v2
   ═══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E8650A;
  --orange-dark: #C4540A;
  --orange-light: #F07A3A;
  --orange-pale: #FFF0E8;
  --orange-glow: rgba(232,101,10,0.18);
  --accent: #2B5C6E;
  --accent-light: #3D7A8F;
  --cream: #FBF8F4;
  --beige: #F0E9DF;
  --beige-mid: #E0D5C8;
  --dark: #1A1A1A;
  --dark-mid: #2A2A2A;
  --text: #333333;
  --text-light: #787878;
  --white: #FFFFFF;
  --shadow-orange: 0 8px 40px rgba(232,101,10,0.25);
  --shadow-orange-lg: 0 16px 56px rgba(232,101,10,0.3);
  --shadow-soft: 0 4px 32px rgba(26,26,26,0.08);
  --shadow-card: 0 2px 20px rgba(26,26,26,0.06);
  --radius: 16px;
  --radius-lg: 16px;
  --radius-xl: 16px;
  --radius-btn: 8px;
  --radius-pill: 999px;
  --transition: all .3s ease-in-out;
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-height: 78px;
  --nav-height-expanded: 132px;
  --nav-logo-height: 60px;
  --nav-logo-height-expanded: 116px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.3;
}

/* ── A11Y FOCUS ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-cta:focus-visible,
.btn-outline-white:focus-visible {
  outline-offset: 4px;
}

/* ── REVEAL ANIMATIONS ── */
/* shared easing: long, soft settle for a cinematic feel */
.reveal, .reveal-left, .reveal-right {
  transition:opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1), filter .9s cubic-bezier(.16,1,.3,1);
  will-change:opacity, transform;
}
.reveal { opacity:0; transform:translateY(44px) scale(.985); filter:blur(6px); }
.reveal.visible, .reveal.is-visible { opacity:1; transform:none; filter:blur(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity:1; transform:none; filter:none; transition:none; }
}
.reveal-left { opacity:0; transform:translateX(-48px); filter:blur(4px); }
.reveal-left.visible, .reveal-left.is-visible { opacity:1; transform:none; filter:blur(0); }
.reveal-right { opacity:0; transform:translateX(48px); filter:blur(4px); }
.reveal-right.visible, .reveal-right.is-visible { opacity:1; transform:none; filter:blur(0); }
.delay-1 { transition-delay:.1s !important; }
.delay-2 { transition-delay:.2s !important; }
.delay-3 { transition-delay:.32s !important; }
.delay-4 { transition-delay:.44s !important; }
.delay-5 { transition-delay:.56s !important; }
.delay-6 { transition-delay:.68s !important; }

/* ── NAVBAR ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding:0 2.25rem; height:var(--nav-height-expanded);
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:1.5rem;
  background:var(--orange);
  box-shadow:0 2px 16px rgba(232,101,10,0.25);
  transition:height .35s cubic-bezier(.22,1,.36,1), background .3s ease-in-out, box-shadow .3s ease-in-out, padding .35s ease;
}
nav > .nav-logo { grid-column:1; justify-self:start; }
nav > .nav-links { grid-column:2; justify-self:center; }
nav > .nav-right { grid-column:3; justify-self:end; }
nav > .nav-hamburger { grid-column:3; justify-self:end; }
nav.scrolled {
  height:var(--nav-height);
  padding:0 2.75rem;
  background:rgba(232,101,10,0.92);
  backdrop-filter:blur(24px) saturate(140%); -webkit-backdrop-filter:blur(24px) saturate(140%);
  box-shadow:0 6px 28px rgba(232,101,10,0.32), 0 1px 0 rgba(255,255,255,0.18) inset;
}
/* hairline separator that fades in only once condensed */
nav::after {
  content:''; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  opacity:0; transition:opacity .4s ease;
}
nav.scrolled::after { opacity:1; }
.nav-logo-img { transition:height .35s cubic-bezier(.22,1,.36,1); }
nav.scrolled .nav-logo-img { height:var(--nav-logo-height); }
.nav-logo {
  font-family:var(--font-display); font-size:1.45rem; font-weight:700;
  color:var(--white); text-decoration:none; letter-spacing:-0.01em;
  display:flex; align-items:center;
}
.nav-logo span { color:rgba(255,255,255,0.75); }
.nav-logo-img { height:var(--nav-logo-height-expanded); width:auto; display:block; object-fit:contain; }
.nav-links { display:flex; align-items:center; gap:2.25rem; list-style:none; }
.nav-links a {
  text-decoration:none; color:rgba(255,255,255,0.92); font-size:0.92rem; font-weight:500;
  letter-spacing:0.01em; transition:color .2s; position:relative; padding-bottom:3px;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0; width:0; height:1.5px;
  background:var(--white); transition:width .28s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover { color:var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-links a.active { color:var(--white); }

/* Right cluster: lang switcher + phone chip + CTA */
.nav-right { display:flex; align-items:center; gap:.7rem; }

.nav-lang {
  position:relative;
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.45rem .75rem .45rem .55rem;
  border:1.5px solid rgba(255,255,255,0.55);
  border-radius:var(--radius-pill);
  background:transparent; color:var(--white);
  font-size:.82rem; font-weight:600; letter-spacing:.02em;
  cursor:pointer; transition:all .25s ease;
  font-family:var(--font-display);
}
.nav-lang:hover { background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.85); }
.nav-lang-flag {
  width:22px; height:22px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:.85rem; line-height:1; flex-shrink:0; overflow:hidden;
  background:var(--white);
}
.nav-lang-flag svg { width:22px; height:22px; display:block; }
.nav-lang .dropdown-chevron { color:rgba(255,255,255,0.95); transition:transform .25s ease; }
.nav-lang[aria-expanded="true"] .dropdown-chevron { transform:rotate(180deg); }
.nav-lang-wrap { position:relative; }
.nav-lang-menu {
  position:absolute; top:calc(100% + .55rem); right:0;
  background:var(--white); border-radius:12px; list-style:none;
  box-shadow:0 12px 48px rgba(26,26,26,.15);
  padding:.4rem 0; min-width:140px;
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity .22s ease, transform .22s ease, visibility .22s;
  z-index:200;
}
.nav-lang[aria-expanded="true"] + .nav-lang-menu,
.nav-lang-menu.open { opacity:1; visibility:visible; transform:translateY(0); }
.nav-lang-menu button {
  display:flex; align-items:center; gap:.6rem; width:100%;
  background:none; border:none; cursor:pointer;
  padding:.6rem 1rem; font:inherit; font-size:.85rem; font-weight:500;
  color:var(--text); text-align:left; transition:background .15s, color .15s;
}
.nav-lang-menu button:hover { background:var(--cream); color:var(--orange); }
.nav-lang-menu button.active { color:var(--orange); font-weight:700; }

.nav-phone {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.5rem 1rem;
  border:1.5px solid rgba(255,255,255,0.55);
  border-radius:var(--radius-pill);
  background:transparent; color:var(--white);
  text-decoration:none; font-size:.88rem; font-weight:600; letter-spacing:.01em;
  transition:all .25s ease;
}
.nav-phone:hover { background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.85); color:var(--white); }
.nav-phone svg { flex-shrink:0; opacity:.95; }

.nav-cta {
  display:inline-flex; align-items:center; gap:.45rem;
  background:var(--white) !important; color:var(--orange) !important;
  padding:.6rem 1.25rem !important; border-radius:var(--radius-pill);
  font-weight:600 !important; font-size:.88rem; letter-spacing:.01em;
  border:1.5px solid var(--white) !important;
  transition:all .25s ease !important;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--orange-pale) !important; color:var(--orange) !important; transform:translateY(-1px); box-shadow:0 6px 20px rgba(0,0,0,.12); }
.nav-cta svg { flex-shrink:0; }

.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:6px; }
.nav-hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px; transition:all .3s; }

.mobile-nav {
  display:none; position:fixed; top:var(--nav-height); left:0; right:0;
  background:rgba(251,248,244,.97); backdrop-filter:blur(24px);
  padding:1.75rem 2rem 2.5rem; z-index:999;
  border-bottom:1px solid var(--beige-mid); flex-direction:column; gap:.5rem;
  box-shadow:0 8px 40px rgba(26,26,26,.1);
}
.mobile-nav.open { display:flex; }
.mobile-nav a { text-decoration:none; color:var(--text); font-size:1.05rem; font-weight:500; padding:.65rem 0; border-bottom:1px solid var(--beige); transition:color .2s; }
.mobile-nav a:hover { color:var(--orange); }
.mobile-nav-cta { background:var(--orange); color:var(--white) !important; padding:.9rem 1.5rem !important; border-radius:100px; text-align:center; border:none !important; margin-top:.75rem; font-weight:600 !important; }
.mobile-nav-services { display:flex; flex-direction:column; padding-left:1rem; border-left:2px solid var(--orange); margin:.25rem 0 .25rem .5rem; }
.mobile-nav-services a { font-size:.85rem !important; color:var(--text) !important; padding:.35rem 0 !important; border-bottom:none !important; opacity:.8; }
.mobile-nav-services a:hover { color:var(--orange) !important; opacity:1; }

/* ── DROPDOWN ── */
.nav-dropdown { position:relative; }
.nav-dropdown-toggle { display:flex; align-items:center; gap:.3rem; cursor:pointer; }
.dropdown-chevron { transition:transform .25s cubic-bezier(.22,1,.36,1); flex-shrink:0; color:rgba(255,255,255,0.9); }
.nav-dropdown:hover .dropdown-chevron { transform:rotate(180deg); }

/* Primary dropdown – category list */
.nav-dropdown-menu {
  position:absolute; top:calc(100% + .75rem); left:50%; transform:translateX(-50%) translateY(-6px);
  background:var(--white); border-radius:14px; list-style:none;
  box-shadow:0 12px 48px rgba(26,26,26,.15); padding:.5rem 0; min-width:240px;
  opacity:0; visibility:hidden;
  transition:opacity .22s ease, transform .22s cubic-bezier(.22,1,.36,1), visibility .22s;
  z-index:200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
}

/* Category row */
.dropdown-cat-item {
  position:relative;
  display:flex; align-items:center; justify-content:space-between;
  padding:.7rem 1.1rem; font-size:.875rem; font-weight:600; color:var(--text);
  cursor:pointer; transition:background .15s, color .15s; white-space:nowrap; gap:.5rem;
}
.dropdown-cat-item .cat-desc {
  display:block; font-size:.72rem; font-weight:400; color:var(--text); opacity:.6;
  margin-top:.1rem;
}
.dropdown-cat-item a {
  color: inherit; text-decoration: none; display: flex; flex-direction: column; flex: 1;
}
.dropdown-cat-item svg { opacity:.35; transition:opacity .15s; flex-shrink:0; }
.dropdown-cat-item:hover { background:var(--cream); color:var(--orange); }
.dropdown-cat-item:hover svg { opacity:1; color:var(--orange); }

/* Wide transparent bridge: covers the gap between category and submenu panel */
.dropdown-cat-item::after {
  content:''; position:absolute;
  top:0; right:-20px;
  width:20px; height:100%;
}

/* Secondary submenu – position absolute relative to the category row */
.dropdown-sub {
  position:absolute; top:0; left:calc(100% + 8px);
  background:var(--white); border-radius:14px; list-style:none;
  box-shadow:0 12px 48px rgba(26,26,26,.15); padding:.5rem 0; min-width:260px;
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .15s ease, visibility .15s;
  z-index:201;
}
.dropdown-cat-item:hover .dropdown-sub {
  opacity:1; visibility:visible; pointer-events:auto;
}
/* Keep submenu open when mouse moves onto it */
.dropdown-sub:hover { opacity:1; visibility:visible; pointer-events:auto; }

.dropdown-sub-label {
  padding:.45rem 1.1rem .3rem; font-size:.65rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--orange);
  pointer-events:none;
}
.dropdown-sub a {
  display:block; padding:.55rem 1.1rem; font-size:.83rem; color:var(--text);
  text-decoration:none; white-space:nowrap; transition:color .15s, background .15s;
}
.dropdown-sub a::after { display:none !important; }
.dropdown-sub a:hover { color:var(--orange); background:var(--cream); }
.mobile-nav-category {
  display:block; font-size:.65rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--orange) !important; padding:.7rem 0 .1rem;
  opacity:1 !important;
}

/* ── BUTTONS ── */
.btn-primary {
  display:inline-flex; align-items:center; gap:.55rem;
  background:var(--orange); color:white; padding:.9rem 2rem;
  border-radius:var(--radius-btn); font-weight:600; font-size:.95rem;
  text-decoration:none; border:none; cursor:pointer;
  transition:all .3s ease-in-out;
  box-shadow:0 8px 28px rgba(232,101,10,.38); font-family:var(--font-body);
  letter-spacing:.01em;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  z-index: 1;
  pointer-events: none;
}
.btn-primary::after {
  content: '';
  position: relative;
  z-index: 2;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background:var(--orange-dark); transform:translateY(-3px); box-shadow:0 14px 40px rgba(232,101,10,.45); }
.btn-primary:active { transform:translateY(-1px); }
.btn-primary > * {
  position: relative;
  z-index: 2;
}
.btn-primary svg {
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}

.btn-secondary {
  display:inline-flex; align-items:center; gap:.55rem;
  background:transparent; color:var(--dark); padding:.9rem 2rem;
  border-radius:var(--radius-btn); font-weight:500; font-size:.95rem;
  text-decoration:none; border:1.5px solid rgba(26,26,26,.22); cursor:pointer;
  transition:all .3s ease-in-out; font-family:var(--font-body);
}
.btn-secondary svg { width: 16px; height: 16px; stroke: currentColor; }
.btn-secondary:hover { border-color:var(--orange); color:var(--orange); background:rgba(232,101,10,.04); }

.btn-outline-white {
  display:inline-flex; align-items:center; gap:.55rem;
  background:transparent; color:white; padding:.9rem 2rem;
  border-radius:var(--radius-btn); font-weight:600; font-size:.95rem;
  text-decoration:none; border:1.5px solid rgba(255,255,255,.65); cursor:pointer;
  transition:all .3s ease-in-out; font-family:var(--font-body);
}
.btn-outline-white:hover { background:rgba(255,255,255,.12); border-color:white; transform:translateY(-2px); }

.btn-ghost-orange {
  display:inline-flex; align-items:center; gap:.5rem;
  background:white; color:var(--orange); padding:.9rem 2rem;
  border-radius:var(--radius-btn); font-weight:700; font-size:.95rem;
  text-decoration:none; border:1.5px solid white; cursor:pointer;
  transition:all .3s ease-in-out;
  box-shadow:0 8px 28px rgba(26,26,26,.18); font-family:var(--font-body);
}
.btn-ghost-orange:hover { background:var(--orange-pale); transform:translateY(-2px); }

/* ── LAYOUT ── */
.container { max-width:1180px; margin:0 auto; padding:0 1.75rem; }
section { padding:6rem 0; }
.section-primary { padding:8rem 0; }
.section-secondary { padding:6rem 0; }

.section-label {
  display:inline-flex; align-items:center; gap:.6rem;
  font-size:.72rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.15em; color:var(--orange); margin-bottom:1.1rem;
}
.section-label::before { content:''; width:24px; height:2px; background:var(--orange); border-radius:2px; }

.section-title {
  font-family:var(--font-display); font-size:clamp(2.2rem,4.5vw,3.4rem);
  font-weight:800; color:var(--dark); letter-spacing:-.02em; line-height:1.1;
}
.section-title em { font-style:italic; color:var(--orange); font-weight:800; }
.section-subtitle { font-size:1.05rem; color:var(--text-light); line-height:1.78; margin-top:.85rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background:var(--orange-pale);
  border-bottom:1px solid rgba(232,101,10,.15);
  padding:10rem 0 6rem; position:relative; overflow:hidden;
  margin-top:var(--nav-height);
}
.page-hero::before { display: none; }
.page-hero-label { color:var(--orange); }
.page-hero-label::before { background:var(--orange); }
.page-hero h1 { font-family:var(--font-display); font-size:clamp(2.6rem,5.5vw,4.2rem); font-weight:700; color:var(--dark); letter-spacing:-.02em; line-height:1.1; margin-bottom:1rem; }
.page-hero h1 em { font-style:italic; color:var(--orange); }
.page-hero p { font-size:1.1rem; color:var(--text-light); line-height:1.78; max-width:580px; }
.breadcrumb { display:flex; align-items:center; gap:.5rem; margin-bottom:2rem; }
.breadcrumb a { text-decoration:none; color:var(--text-light); font-size:.82rem; font-weight:500; transition:color .2s; }
.breadcrumb a:hover { color:var(--orange); }
.breadcrumb span { color:var(--beige-mid); font-size:.82rem; }
.breadcrumb .current { color:var(--text); font-size:.82rem; font-weight:500; }

/* ── WAVE ── */
.wave-divider { display:block; width:100%; overflow:hidden; line-height:0; }
.wave-divider svg { display:block; width:100%; }

/* ── CARDS ── */
.card {
  background:white; border-radius:var(--radius-lg); padding:2.25rem;
  border:1px solid var(--beige); transition:all .3s cubic-bezier(.22,1,.36,1);
}
.card:hover { transform:translateY(-5px); box-shadow:var(--shadow-soft); border-color:rgba(232,101,10,.2); }

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding:5.5rem 0 2.5rem;
  color:rgba(255,255,255,.88);
  border-top:1px solid rgba(0,0,0,.06);
  position:relative;
}
.footer-inner { max-width:1180px; margin:0 auto; padding:0 1.75rem; position:relative; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3.5rem; padding-bottom:3.5rem; border-bottom:1px solid rgba(255,255,255,.18); }
.footer-brand .nav-logo { color:var(--white); display:block; margin-bottom:1.1rem; }
.footer-brand .nav-logo-img { filter:brightness(0) invert(1); }
.footer-brand p { font-size:.875rem; line-height:1.78; max-width:270px; color:rgba(255,255,255,.82); }
.footer-tagline { font-family:var(--font-display); font-size:1.05rem; font-style:italic; color:rgba(255,255,255,.92); margin-top:.5rem; margin-bottom:1.1rem; display:block; }
.footer-social { display:flex; gap:.5rem; margin-top:1.75rem; }
.footer-social-link {
  width:38px; height:38px; border-radius:10px;
  background:rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; color:var(--white); transition:all .22s;
  border:1px solid rgba(255,255,255,.22);
}
.footer-social-link:hover { background:var(--white); color:var(--orange); transform:translateY(-2px); }
.footer-social-link svg { width:17px; height:17px; }
.footer-col h4 { font-size:.73rem; font-weight:700; text-transform:uppercase; letter-spacing:.13em; color:var(--white); margin-bottom:1.4rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
.footer-col ul li a { text-decoration:none; font-size:.875rem; color:rgba(255,255,255,.82); transition:color .2s; }
.footer-col ul li a:hover { color:var(--white); }
.footer-col p { font-size:.875rem; line-height:1.7; color:rgba(255,255,255,.82); }
.footer-col p span { color:rgba(255,255,255,.65) !important; }
.footer-col p a[href^="tel"] { color:var(--white) !important; }
.footer-bottom {
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center; gap:1.25rem 2rem; padding-top:2.25rem;
  border-top:1px solid rgba(255,255,255,.12);
}
.footer-bottom-left { justify-self:start; }
.footer-bottom > .livro-reclamacoes { justify-self:center; }
.footer-bottom-right { justify-self:end; display:flex; align-items:center; gap:.7rem; }
.footer-bottom-right > span { font-size:.62rem !important; text-transform:uppercase; letter-spacing:.18em; color:rgba(255,255,255,.6) !important; }
.footer-bottom p { font-size:.78rem; color:rgba(255,255,255,.72); margin:0; }
.footer-bottom a { color:rgba(255,255,255,.85); text-decoration:none; font-weight:500; transition:color .2s; }
.footer-bottom a:hover { color:var(--white); text-decoration:underline; }
.footer-accent-line { width:40px; height:3px; background:var(--white); border-radius:2px; margin-bottom:2rem; opacity:.85; }

/* Livro de Reclamações image badge */
.livro-reclamacoes {
  display:inline-block;
  text-decoration:none; line-height:1;
  transition:transform .22s ease, opacity .22s ease;
}
.livro-reclamacoes:hover { transform:translateY(-2px); opacity:.85; }
.livro-reclamacoes-img { height:44px; width:auto; display:block; }

/* AlphaScale logo */
.alphascale-link { display:inline-flex; align-items:center; }
.alphascale-link:hover { opacity:.8; text-decoration:none !important; }
.alphascale-logo { height:34px; width:auto; display:block; }

/* ── SERVICE PAGE QUICK-INFO STICKY (desktop only) ── */
.svc-quickinfo {
  display: none;
}
@media (min-width: 1280px) {
  .svc-quickinfo {
    display: block;
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 90;
    width: 260px;
    background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
    border: 1px solid var(--beige-mid);
    border-radius: var(--radius);
    box-shadow: 0 16px 48px rgba(26,26,26,.10), 0 4px 16px rgba(232,101,10,.08);
    padding: 1.5rem 1.25rem;
    opacity: 0;
    transition: opacity .35s ease-in-out, transform .35s ease-in-out;
    pointer-events: none;
  }
  .svc-quickinfo.visible {
    opacity: 1;
    pointer-events: auto;
  }
}
.svc-quickinfo-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}
.svc-quickinfo-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
}
.svc-quickinfo h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.svc-quickinfo-row {
  display: flex; align-items: flex-start; gap: .55rem;
  padding: .55rem 0;
  border-top: 1px solid var(--beige-mid);
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.45;
}
.svc-quickinfo-row svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; margin-top: .15rem; }
.svc-quickinfo-row strong { color: var(--text); font-weight: 600; }
.svc-quickinfo-cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; margin-top: 1rem;
  background: #25D366; color: white;
  font-size: .85rem; font-weight: 600;
  padding: .75rem 1rem; border-radius: var(--radius-btn);
  text-decoration: none;
  transition: all .25s;
}
.svc-quickinfo-cta:hover { background: #1faa55; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.svc-quickinfo-cta svg { width: 16px; height: 16px; }
.svc-quickinfo-phone {
  display: block; text-align: center; margin-top: .65rem;
  font-size: .8rem; font-weight: 600; color: var(--orange);
  text-decoration: none;
}

/* ── ASSISTENTE / CHAT WIDGET ── */
.chat-widget {
  position:fixed; bottom:2rem; right:2rem; z-index:998;
  display:flex; flex-direction:column; align-items:flex-end; gap:1rem;
}

/* Floating action button */
.chat-fab {
  width:58px; height:58px; flex:none; border:none; cursor:pointer; position:relative;
  background:#25D366; border-radius:50%; padding:0;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 28px rgba(37,211,102,.42);
  transition:all .25s cubic-bezier(.22,1,.36,1);
  animation:pulse-wa 3s ease-in-out infinite;
}
.chat-fab:hover { transform:scale(1.08) translateY(-3px); box-shadow:0 10px 36px rgba(37,211,102,.55); }
.chat-fab svg { width:28px; height:28px; color:#fff; position:absolute; transition:opacity .2s, transform .25s; }
.chat-fab-close { opacity:0; transform:rotate(-90deg) scale(.6); }
.chat-widget.open .chat-fab { background:var(--orange); animation:none; }
.chat-widget.open .chat-fab-icon { opacity:0; transform:rotate(90deg) scale(.6); }
.chat-widget.open .chat-fab-close { opacity:1; transform:rotate(0) scale(1); }

/* Chat panel */
.chat-panel {
  width:340px; max-width:calc(100vw - 3rem);
  background:var(--cream); border-radius:18px; overflow:hidden;
  box-shadow:0 18px 60px rgba(26,26,26,.22);
  transform-origin:bottom right;
  opacity:0; transform:translateY(16px) scale(.94); pointer-events:none;
  transition:opacity .26s ease, transform .26s cubic-bezier(.22,1,.36,1);
}
.chat-widget.open .chat-panel { opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }

.chat-header {
  display:flex; align-items:center; gap:.75rem;
  background:linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  padding:1rem 1.1rem; color:#fff;
}
.chat-avatar {
  width:42px; height:42px; flex:none; border-radius:50%; background:#fff;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
}
.chat-avatar img { width:78%; height:78%; object-fit:contain; }
.chat-header-info { display:flex; flex-direction:column; gap:.1rem; min-width:0; flex:1; }
.chat-title { font-family:var(--font-display); font-weight:700; font-size:.92rem; line-height:1.2; }
.chat-status { display:flex; align-items:center; gap:.35rem; font-size:.74rem; opacity:.9; }
.chat-status i { width:7px; height:7px; border-radius:50%; background:#4ade80; box-shadow:0 0 0 0 rgba(74,222,128,.6); animation:pulse-dot 2s infinite; }
.chat-close {
  flex:none; width:30px; height:30px; border:none; background:rgba(255,255,255,.14); color:#fff;
  border-radius:50%; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.chat-close:hover { background:rgba(255,255,255,.28); }
.chat-close svg { width:16px; height:16px; }

.chat-body {
  padding:1.25rem 1.1rem; min-height:120px; max-height:300px; overflow-y:auto;
  display:flex; flex-direction:column; gap:.6rem;
}
.chat-time {
  align-self:center; font-size:.72rem; color:var(--text-light); font-weight:600;
  background:var(--beige); padding:.2rem .65rem; border-radius:100px;
}
.chat-bubble {
  align-self:flex-start; max-width:85%;
  background:#fff; color:var(--text); font-size:.9rem; line-height:1.45;
  padding:.7rem .9rem; border-radius:4px 14px 14px 14px;
  box-shadow:0 2px 10px rgba(26,26,26,.07);
}
.chat-bubble.sent {
  align-self:flex-end; background:var(--accent); color:#fff;
  border-radius:14px 4px 14px 14px;
}

.chat-input {
  display:flex; align-items:center; gap:.5rem; padding:.7rem .8rem;
  background:var(--cream); border-top:1px solid var(--beige-mid);
}
.chat-input input {
  flex:1; min-width:0; border:1px solid var(--beige-mid); background:#fff; border-radius:100px;
  padding:.6rem .95rem; font-family:var(--font-body); font-size:.88rem; color:var(--text);
  outline:none; transition:border-color .2s;
}
.chat-input input:focus { border-color:var(--accent-light); }
.chat-send {
  flex:none; width:42px; height:42px; border:none; cursor:pointer; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  transition:transform .2s, box-shadow .2s;
}
.chat-send:hover { transform:scale(1.08); box-shadow:0 4px 14px rgba(37,211,102,.45); }
.chat-send svg { width:18px; height:18px; }

@keyframes pulse-wa {
  0%,100% { box-shadow:0 6px 28px rgba(37,211,102,.42); }
  50% { box-shadow:0 6px 40px rgba(37,211,102,.65), 0 0 0 8px rgba(37,211,102,.1); }
}
@keyframes pulse-dot {
  0% { box-shadow:0 0 0 0 rgba(74,222,128,.55); }
  70% { box-shadow:0 0 0 6px rgba(74,222,128,0); }
  100% { box-shadow:0 0 0 0 rgba(74,222,128,0); }
}

@media (max-width:480px) {
  .chat-widget { bottom:1.25rem; right:1.25rem; }
  .chat-panel { width:calc(100vw - 2.5rem); }
}

@keyframes shake-cta {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1deg); }
  75% { transform: rotate(-1deg); }
}

/* ── FORM ── */
.form-group { display:flex; flex-direction:column; gap:.4rem; margin-bottom:1.1rem; }
.form-group label { font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--text-light); }
.form-group input, .form-group textarea, .form-group select {
  font-family:var(--font-body); font-size:.95rem; color:var(--dark);
  background:var(--cream); border:1.5px solid var(--beige-mid); border-radius:12px;
  padding:.8rem 1.1rem; outline:none; transition:border-color .22s, box-shadow .22s; resize:none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color:var(--orange); box-shadow:0 0 0 3px rgba(232,101,10,.1);
}
.form-group input.error, .form-group textarea.error { border-color:#E53E3E; }
.form-group .error-msg { font-size:.78rem; color:#E53E3E; display:none; }
.form-group.has-error .error-msg { display:block; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-success { display:none; text-align:center; padding:2.5rem 1rem; }
.form-success svg { width:52px; height:52px; color:var(--orange); margin-bottom:1.25rem; }
.form-success h4 { font-family:var(--font-display); font-size:1.5rem; color:var(--dark); margin-bottom:.6rem; }
.form-success p { color:var(--text-light); font-size:.92rem; line-height:1.65; }

/* ── TAGS ── */
.tag {
  display:inline-flex; align-items:center;
  background:var(--orange-pale); color:var(--orange);
  font-size:.72rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; padding:.32rem .8rem; border-radius:var(--radius-pill);
  border:1px solid rgba(232,101,10,.18);
}
.tag-dark { background:rgba(255,255,255,.07); color:rgba(255,255,255,.65); border:1px solid rgba(255,255,255,.1); }

/* ── STARS ── */
.stars { display:flex; gap:3px; }
.stars svg { width:15px; height:15px; fill:#F59E0B; }

/* ── RESPONSIVE ── */
@media (max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:2.5rem; }
  section { padding:6rem 0; }
}
@media (max-width:1180px) {
  nav { padding:0 1.5rem; }
  .nav-links { gap:1.5rem; }
  .nav-right { gap:.5rem; }
  .nav-phone span { display:none; }
  .nav-phone { padding:.5rem; }
}
@media (max-width:960px) {
  nav { grid-template-columns:auto 1fr auto; height:96px; }
  nav.scrolled { height:76px; }
  .nav-logo-img { height:84px; }
  nav.scrolled .nav-logo-img { height:64px; }
  .nav-links { display:none; }
  .nav-right { display:none; }
  .nav-hamburger { display:flex; }
}
@media (max-width:768px) {
  nav { padding:0 1.25rem; height:84px; }
  nav.scrolled { height:68px; }
  .nav-logo-img { height:68px; }
  nav.scrolled .nav-logo-img { height:54px; }
  section { padding:4.5rem 0; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { grid-template-columns:1fr; text-align:center; gap:1rem; }
  .footer-bottom-left,
  .footer-bottom > .livro-reclamacoes,
  .footer-bottom-right { justify-self:center; }
  .footer-bottom-right { justify-content:center; }
  .form-row { grid-template-columns:1fr; }
  .page-hero { padding:8rem 0 4rem; }
}
@media (max-width:480px) {
  .section-title { font-size:2rem; }
}
