/* ══════════════════════════════════════════════════
   CLIC CLÍNICA DO COMPORTAMENTO — style.css
   Paleta profissional inspirada na identidade visual
   ══════════════════════════════════════════════════ */

:root {
  /* ── Cores (inalteradas) ── */
  --blue:         #2c5f8a;
  --blue-light:   #4a82aa;
  --blue-pale:    #eaf2f8;
  --orange:       #b85a28;
  --orange-light: #c87848;
  --orange-pale:  #f8ece4;
  --green:        #357a52;
  --green-light:  #5a9870;
  --green-pale:   #e8f2ec;
  --red:          #8a2e2a;
  --red-light:    #ae5450;
  --red-pale:     #f5eaea;
  --brown:        #6e3614;
  --brown-dark:   #38180a;
  --amber:        #a87828;
  --amber-light:  #c89a48;
  --amber-pale:   #f8f0de;
  --cream:        #fdfaf6;
  --cream-mid:    #f6f0e8;
  --white:        #ffffff;
  --text-dark:    #1a1008;
  --text-mid:     #483420;
  --text-light:   #806448;
  --border:       #ddd0bc;
  --border-light: #ece4d4;

  /* ── Sombras difusas e sutis ── */
  --shadow-xs:    0 2px 8px rgba(26, 16, 8, 0.04);
  --shadow-sm:    0 4px 20px rgba(26, 16, 8, 0.06);
  --shadow-md:    0 8px 32px rgba(26, 16, 8, 0.08);
  --shadow-lg:    0 16px 48px rgba(26, 16, 8, 0.10);
  --shadow-xl:    0 24px 64px rgba(26, 16, 8, 0.12);
  --shadow-card:  0 2px 12px rgba(26, 16, 8, 0.05), 0 8px 28px rgba(26, 16, 8, 0.04);

  /* ── Tipografia ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;
  --lh-tight:     1.25;
  --lh-body:      1.75;
  --lh-relaxed:   1.85;
  --ls-tight:     -0.01em;
  --ls-normal:    0.01em;
  --ls-wide:      0.06em;
  --ls-wider:     0.12em;

  /* ── Layout & espaçamento ── */
  --max-w:        1180px;
  --section-py:   128px;
  --section-px:   5%;
  --gap-sm:       16px;
  --gap-md:       24px;
  --gap-lg:       40px;
  --gap-xl:       64px;

  /* ── Bordas suaves ── */
  --radius:       12px;
  --radius-sm:    10px;
  --radius-lg:    16px;
  --radius-xl:    20px;
  --radius-pill:  50px;

  /* ── Transições globais ── */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --duration:     0.3s;
  --transition:   all var(--duration) var(--ease);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--orange-pale);
  color: var(--brown-dark);
}

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

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

/* ── Animações de entrada ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45); }
  50%      { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.60), 0 0 0 12px rgba(37, 211, 102, 0.06); }
}

@keyframes menuSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulseSoft {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.05); }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Barra de progresso de scroll */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--green-light));
  border-radius: 0 2px 2px 0;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* Scroll reveal — calmo e suave */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.28s; }
.reveal-delay-3 { transition-delay: 0.42s; }

/* ── Utilitários de seção ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--orange);
}

.section-desc {
  font-size: 1.06rem;
  color: var(--text-mid);
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-normal);
  max-width: 600px;
}

.section-header { margin-bottom: 72px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-eyebrow { justify-content: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* Separadores suaves entre seções */
#sobre,
#atendimentos,
#diferenciais,
#localizacao {
  position: relative;
}

#sobre::before,
#atendimentos::before,
#diferenciais::before,
#localizacao::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50%;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px;
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  pointer-events: none;
}

#sobre.in-view::before,
#atendimentos.in-view::before,
#diferenciais.in-view::before,
#localizacao.in-view::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

/* ── Botões compartilhados ── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c54);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: var(--ls-normal);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.32);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-whatsapp:hover::after {
  opacity: 1;
  animation: shimmer 1.2s ease-in-out;
}

.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.44);
}

.btn-whatsapp:active { transform: scale(0.98); }
.btn-whatsapp i { font-size: 1.15rem; }

/* ── TOPBAR ── */
.topbar {
  background: var(--brown-dark);
  padding: 12px var(--section-px);
  box-shadow: 0 2px 12px rgba(26, 16, 8, 0.15);
}

.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-inner span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: var(--ls-normal);
}

.topbar-inner a {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-inner a:hover {
  color: white;
  transform: scale(1.02);
}

.topbar-inner i { font-size: 0.78rem; }

/* ── NAV ── */
#navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(253, 250, 246, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

#navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(253, 250, 246, 0.98);
}

#navbar.scrolled .nav-inner { height: 68px; }
#navbar.scrolled .nav-logo-img { height: 46px; }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 80px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: height 0.35s var(--ease-out);
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav-logo:hover { transform: scale(1.02); }

.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s var(--ease-out);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: var(--ls-normal);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: var(--orange-pale);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c54);
  color: white;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.30);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger:hover { background: var(--cream-mid); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px var(--section-px) 28px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}

.mobile-menu.open {
  display: flex;
  animation: menuSlideDown 0.4s ease-out;
}

.mobile-menu ul { list-style: none; }

.mobile-menu ul li a {
  display: block;
  padding: 16px 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(221, 208, 188, 0.5);
  transition: var(--transition);
}

.mobile-menu ul li a:hover {
  color: var(--orange);
  padding-left: 8px;
}

.mobile-menu .btn-whatsapp {
  margin-top: 24px;
  justify-content: center;
}

/* ── HERO ── */
#hero {
  min-height: calc(100vh - 80px - 44px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(148deg, #fffdf5 0%, #fff8e8 55%, #fdf0d8 100%);
  display: flex;
  flex-direction: column;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(253, 250, 246, 0.6), transparent);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(184, 90, 40, 0.10) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.5;
}

.hero-blob {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  width: 48vw;
  max-width: 580px;
  height: 48vw;
  max-height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 90, 40, 0.14) 0%, rgba(168, 120, 40, 0.08) 45%, transparent 72%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 88px var(--section-px) 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  flex: 1;
}

.hero-content {
  animation: fadeSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: var(--ls-tight);
  color: var(--brown-dark);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 2px;
  opacity: 0.75;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-normal);
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c54);
  color: white;
  padding: 18px 34px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: var(--ls-normal);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.36);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
}

.btn-hero-primary:hover::after {
  opacity: 1;
  animation: shimmer 1.2s ease-in-out;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.48);
}

.btn-hero-primary:active { transform: scale(0.98); }
.btn-hero-primary i { font-size: 1.2rem; }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 700;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  color: var(--orange);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn-hero-secondary i {
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-hero-secondary:hover i { transform: translateX(4px); }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: var(--ls-normal);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.hero-badge-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: white;
}

.hero-badge-item i { color: var(--green); }

.hero-illus-col {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease-out 0.3s both;
}

.hero-illus-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-illus-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(160deg, #fff5dc 0%, #ffe8b0 50%, #ffdfa0 100%);
}

.hero-illus-main svg { display: block; width: 100%; }

.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  z-index: 3;
  transition: var(--transition);
}

.hero-float-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.hero-float-card.float-top {
  top: -20px;
  left: -20px;
  animation: floatY 5s ease-in-out infinite;
}

.hero-float-card.float-bottom {
  bottom: 28px;
  right: -20px;
  animation: floatY 5s ease-in-out infinite 2.5s;
}

.hero-float-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brown-dark);
  line-height: 1.3;
  letter-spacing: var(--ls-normal);
}

.hero-float-card span {
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 500;
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.float-card-icon.ic-blue   { background: var(--blue-pale);   color: var(--blue); }
.float-card-icon.ic-orange { background: var(--orange-pale); color: var(--orange); }

.hero-scroll-hint {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  color: var(--text-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  animation: fadeIn 1s ease-out 0.8s both;
  transition: var(--transition);
  cursor: pointer;
}

.hero-scroll-hint:hover {
  color: var(--orange);
  transform: translateY(2px);
}

.hero-scroll-hint i { animation: bounce 2.5s ease-in-out infinite; }

/* ── NÚMEROS ── */
#numeros {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
  padding: 80px var(--section-px);
  position: relative;
  overflow: hidden;
}

#numeros::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.numeros-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;          
  flex-wrap: wrap;       
  justify-content: center; 
  gap: 16px;              
  position: relative;
  z-index: 1;
}

.numero-item {
  flex: 1;             
  min-width: 250px;        
  max-width: 320px;         
  text-align: center;
  padding: 44px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.numero-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.numero-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 22px;
}

.numero-item:nth-child(1) .numero-icon { background: rgba(44, 95, 138, 0.22);  color: var(--blue-light); }
.numero-item:nth-child(2) .numero-icon { background: rgba(184, 90, 40, 0.22);  color: var(--orange-light); }
.numero-item:nth-child(3) .numero-icon { background: rgba(53, 122, 82, 0.22);  color: var(--green-light); }
.numero-item:nth-child(4) .numero-icon { background: rgba(168, 120, 40, 0.22); color: var(--amber-light); }

.numero-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  display: inline;
  letter-spacing: var(--ls-tight);
}

.numero-suffix {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--amber);
  display: inline;
  margin-left: 2px;
}

.numero-label {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  margin-top: 12px;
  line-height: var(--lh-body);
  letter-spacing: var(--ls-normal);
}

/* ── SOBRE ── */
#sobre {
  padding: var(--section-py) var(--section-px);
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.sobre-img-wrap { position: relative; }

.sobre-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, #fff8e0 0%, #ffedb0 50%, #ffe0a0 100%);
  min-height: 380px;
}

.sobre-img-main svg { display: block; width: 100%; }

.sobre-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  transition: var(--transition);
}

.sobre-badge-float:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.sobre-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.sobre-badge-float strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--brown-dark);
  line-height: 1.3;
}

.sobre-badge-float span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.sobre-content p {
  font-size: 1.04rem;
  color: var(--text-mid);
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-normal);
  margin-bottom: 22px;
}

.sobre-content p strong {
  color: var(--brown-dark);
  font-weight: 700;
}

.sobre-convenio-row { margin: 32px 0; }

.convenio-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: var(--ls-normal);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.convenio-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.convenio-chip i { color: var(--blue); }

.sobre-valores {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.valor-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--cream-mid);
  box-shadow: var(--shadow-xs);
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.valor-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.valor-item:nth-child(1):hover { border-left-color: var(--red); }
.valor-item:nth-child(2):hover { border-left-color: var(--blue); }
.valor-item:nth-child(3):hover { border-left-color: var(--green); }

.valor-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.valor-item:nth-child(1) .valor-icon { background: linear-gradient(135deg, var(--red), var(--orange)); }
.valor-item:nth-child(2) .valor-icon { background: linear-gradient(135deg, var(--blue), #6aaae0); }
.valor-item:nth-child(3) .valor-icon { background: linear-gradient(135deg, var(--green), #6ed49a); }

.valor-item strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 6px;
  letter-spacing: var(--ls-normal);
}

.valor-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: var(--lh-body);
  margin: 0;
}

/* ── ATENDIMENTOS ── */
#atendimentos {
  padding: var(--section-py) var(--section-px);
  background: var(--cream-mid);
}

.atend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.atend-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition);
  --glow-x: 50%;
  --glow-y: 50%;
}

.atend-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--glow-x) var(--glow-y),
    rgba(184, 90, 40, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.atend-card:hover::before { opacity: 1; }

.atend-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.atend-card:hover .atend-icon-wrap {
  transform: scale(1.08);
}

.atend-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.accent-1 { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.accent-2 { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.accent-3 { background: linear-gradient(90deg, var(--green), var(--green-light)); }
.accent-4 { background: linear-gradient(90deg, var(--red), var(--red-light)); }
.accent-5 { background: linear-gradient(90deg, var(--amber), var(--amber-light)); }
.accent-6 { background: linear-gradient(90deg, var(--blue), var(--green-light)); }

.atend-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  transition: transform 0.4s var(--ease-out);
}

.ic-1 { background: var(--blue-pale);   color: var(--blue); }
.ic-2 { background: var(--orange-pale); color: var(--orange); }
.ic-3 { background: var(--green-pale);  color: var(--green); }
.ic-4 { background: var(--red-pale);    color: var(--red); }
.ic-5 { background: var(--amber-pale);  color: var(--amber); }
.ic-6 { background: var(--blue-pale);   color: var(--blue); }

.atend-card h3 {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.atend-card p {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: var(--lh-relaxed);
  flex: 1;
}

.atend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.atend-tags span {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: var(--ls-normal);
  transition: var(--transition);
}

.atend-card:nth-child(1) .atend-tags span { background: var(--blue-pale);   color: var(--blue); }
.atend-card:nth-child(2) .atend-tags span { background: var(--orange-pale); color: var(--orange); }
.atend-card:nth-child(3) .atend-tags span { background: var(--green-pale);  color: var(--green); }
.atend-card:nth-child(4) .atend-tags span { background: var(--red-pale);    color: var(--red); }
.atend-card:nth-child(5) .atend-tags span { background: var(--amber-pale);  color: var(--brown); }
.atend-card:nth-child(6) .atend-tags span { background: var(--blue-pale);   color: var(--blue); }

.atend-tags span:hover { transform: scale(1.04); }

.atend-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-top: 8px;
  transition: var(--transition);
}

.atend-card:nth-child(1) .atend-cta { color: var(--blue); }
.atend-card:nth-child(2) .atend-cta { color: var(--orange); }
.atend-card:nth-child(3) .atend-cta { color: var(--green); }
.atend-card:nth-child(4) .atend-cta { color: var(--red); }
.atend-card:nth-child(5) .atend-cta { color: var(--brown); }
.atend-card:nth-child(6) .atend-cta { color: var(--blue); }

.atend-cta:hover {
  gap: 14px;
  transform: translateX(2px);
}

.atend-cta i { font-size: 0.82rem; }

/* ── CTA FAIXA ── */
#cta-faixa {
  background: linear-gradient(135deg, var(--blue) 0%, #3070b8 60%, #24508a 100%);
  padding: 88px var(--section-px);
  position: relative;
  overflow: hidden;
}

#cta-faixa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='26' cy='26' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#cta-faixa::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: pulseSoft 8s ease-in-out infinite;
  pointer-events: none;
}

.cta-faixa-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cta-faixa-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  color: white;
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: 14px;
}

.cta-faixa-text p {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-normal);
}

.btn-cta-faixa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #128c54;
  padding: 20px 44px;
  border-radius: var(--radius-pill);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: var(--ls-normal);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cta-faixa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.20);
}

.btn-cta-faixa:active { transform: scale(0.98); }
.btn-cta-faixa i { font-size: 1.3rem; color: #25d366; }

/* ── DIFERENCIAIS ── */
#diferenciais {
  padding: var(--section-py) var(--section-px);
  background: var(--white);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--gap-xl);
  align-items: start;
}

.diferenciais-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.diferenciais-list li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 20px;
  margin: 0 -20px;
  border-bottom: 1px solid rgba(236, 228, 212, 0.6);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.diferenciais-list li:hover {
  padding-left: 28px;
  background: var(--cream);
  border-left-color: var(--orange);
  box-shadow: var(--shadow-xs);
}

.diferenciais-list li:nth-child(1):hover { border-left-color: var(--blue); }
.diferenciais-list li:nth-child(2):hover { border-left-color: var(--orange); }
.diferenciais-list li:nth-child(3):hover { border-left-color: var(--green); }
.diferenciais-list li:nth-child(4):hover { border-left-color: var(--red); }

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

.dif-num {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-xs);
}

.diferenciais-list li:nth-child(1) .dif-num { background: var(--blue); }
.diferenciais-list li:nth-child(2) .dif-num { background: var(--orange); }
.diferenciais-list li:nth-child(3) .dif-num { background: var(--green); }
.diferenciais-list li:nth-child(4) .dif-num { background: var(--red); }

.diferenciais-list h4 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 8px;
  letter-spacing: var(--ls-normal);
  line-height: var(--lh-tight);
}

.diferenciais-list p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: var(--lh-body);
  margin: 0;
}

.diferenciais-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 64px;
}

.dif-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.dif-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.dif-card:nth-child(1) { background: var(--blue-pale); }
.dif-card:nth-child(1)::after { background: var(--blue); }
.dif-card:nth-child(2) { background: var(--orange-pale); }
.dif-card:nth-child(2)::after { background: var(--orange); }
.dif-card:nth-child(3) { background: var(--green-pale); }
.dif-card:nth-child(3)::after { background: var(--green); }
.dif-card:nth-child(4) { background: var(--amber-pale); }
.dif-card:nth-child(4)::after { background: var(--amber); }

.dif-card:hover {
  box-shadow: var(--shadow-md);
}

@media (pointer: coarse) {
  .dif-card:hover { transform: translateY(-4px); }
}

.dif-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}

.dif-card:nth-child(1) .dif-card-icon { background: var(--blue); }
.dif-card:nth-child(2) .dif-card-icon { background: var(--orange); }
.dif-card:nth-child(3) .dif-card-icon { background: var(--green); }
.dif-card:nth-child(4) .dif-card-icon { background: var(--amber); }

.dif-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 10px;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}

.dif-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: var(--lh-body);
}

/* ── LOCALIZAÇÃO ── */
#localizacao {
  padding: var(--section-py) var(--section-px);
  background: var(--cream-mid);
}

.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.loc-contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
  transition: var(--transition);
}

.loc-contact-card:hover { box-shadow: var(--shadow-lg); }

.loc-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 12px;
  margin: -12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.loc-item:hover {
  background: var(--cream);
  transform: translateX(4px);
}

.loc-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-xs);
}

.loc-item:nth-child(1) .loc-icon-wrap { background: var(--orange-pale); color: var(--orange); }
.loc-item:nth-child(2) .loc-icon-wrap { background: var(--green-pale);  color: var(--green); }
.loc-item:nth-child(3) .loc-icon-wrap { background: var(--blue-pale);   color: var(--blue); }
.loc-item:nth-child(4) .loc-icon-wrap { background: var(--amber-pale);  color: var(--amber); }

.loc-item h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 6px;
  letter-spacing: var(--ls-normal);
}

.loc-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: var(--lh-body);
}

.loc-item a {
  color: var(--orange);
  font-weight: 700;
}

.loc-item a:hover {
  color: var(--orange-light);
  text-decoration: underline;
}

.loc-cta { width: 100%; justify-content: center; }

.mapa-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.mapa-wrap:hover { box-shadow: var(--shadow-lg); }

.mapa-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.mapa-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--orange);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.mapa-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* ── FOOTER ── */
footer {
  background: var(--brown-dark);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--green-light), var(--blue-light));
}

.footer-top { padding: 88px var(--section-px) 56px; }

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 56px;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: var(--lh-relaxed);
  letter-spacing: var(--ls-normal);
  margin-bottom: 28px;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c54);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
  transition: var(--transition);
}

.footer-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
}

.footer-col h4 {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.50);
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: var(--ls-normal);
}

.footer-col ul li a:hover {
  color: var(--amber-light);
  transform: translateX(4px);
  display: inline-block;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--amber-light);
  font-size: 0.88rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: var(--lh-body);
}

.footer-bottom {
  padding: 28px var(--section-px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-inner p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: var(--ls-normal);
}

.footer-cfp {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-xs);
  letter-spacing: var(--ls-normal);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: linear-gradient(135deg, #25d366, #128c54);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.65rem;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.48);
  animation: waPulse 3s ease-in-out infinite;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.10);
  animation: none;
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.58);
}

.float-tooltip {
  position: absolute;
  right: 78px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--brown-dark);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--brown-dark);
}

.whatsapp-float:hover .float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ── Acessibilidade: foco visível ── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  :root { --section-py: 104px; }

  .atend-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}

@media (max-width: 768px) {
  :root { --section-py: 88px; }

  .topbar { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; margin-left: auto; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 64px var(--section-px) 48px;
    gap: 48px;
  }

  .hero-illus-col, .hero-blob { display: none; }
  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-scroll-hint { display: none; }

  .sobre-grid { grid-template-columns: 1fr; gap: 56px; }
  .sobre-badge-float { right: 0; bottom: -16px; }

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

  .cta-faixa-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .btn-cta-faixa { width: 100%; justify-content: center; }

  .diferenciais-grid { grid-template-columns: 1fr; gap: 48px; }
  .diferenciais-cards { padding-top: 0; }

  .localizacao-grid { grid-template-columns: 1fr; gap: 48px; }
  .mapa-wrap { height: 320px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  #numeros { padding: 64px var(--section-px); }
  #cta-faixa { padding: 72px var(--section-px); }
}

@media (max-width: 480px) {
  .diferenciais-cards { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }

  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }

  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
  }
}

/* ── Redução de movimento (acessibilidade) ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
}

/* personagens decorativos — integração visual discreta */
.hero-illus-wrap { position: relative; }

.hero-char {
  position: absolute;
  pointer-events: none;
  opacity: 0.12;
  border-radius: 12px;
  transition: opacity 0.25s var(--ease-out), transform 0.45s var(--ease);
  will-change: transform, opacity;
  z-index: 1;
}

.hero-char-1 { right: -6%; top: 6%; width: 36%; max-width: 320px; }
.hero-char-2 { left: -8%; bottom: -8%; width: 26%; max-width: 220px; }
.hero-char-3 { right: 8%; bottom: 6%; width: 18%; max-width: 160px; }

/* pequeno personagem dentro do bloco SOBRE */
.sobre-img-wrap { position: relative; }
.sobre-char {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 110px;
  max-width: 22%;
  opacity: 0.12;
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;
}

/* galeria sutil de thumbnails (decorativa) */
.personagens-gallery {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  pointer-events: none;
  opacity: 0.95;
}
.personagens-thumb img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 10px;
  opacity: 0.94;
  box-shadow: var(--shadow-xs);
  display: block;
}

/* interações suaves em ponteiros finos */
@media (pointer: fine) {
  .hero-illus-wrap:hover .hero-char { opacity: 0.16; transform: translateY(-4px); }
  .sobre-img-wrap:hover .sobre-char { opacity: 0.16; transform: translateY(-3px); }
}

/* esconder decorações em telas pequenas para não atrapalhar layout */
@media (max-width: 768px) {
  .hero-char, .sobre-char, .personagens-gallery { display: none; }
}

