/* ============================================================
   EXITOGRID ENGENHARIA ELÉTRICA — MASTER STYLESHEET
   Premium dark-mode corporate design with orange accent
   ============================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@700;800;900&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  --orange:      #f97316;
  --orange-dark: #ea6c0c;
  --orange-glow: rgba(249,115,22,.25);
  --blue:        #0ea5e9;
  --blue-dark:   #0284c7;
  --dark:        #0a0a0f;
  --dark-2:      #111118;
  --dark-3:      #18181f;
  --dark-4:      #1e1e28;
  --border:      rgba(255,255,255,.08);
  --border-hover:rgba(249,115,22,.4);
  --text:        #e2e8f0;
  --text-muted:  #94a3b8;
  --text-faint:  #64748b;
  --white:       #ffffff;
  --green:       #22c55e;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,.4);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.6);
  --font:        'Inter', sans-serif;
  --font-display:'Outfit', sans-serif;
  --transition:  .25s cubic-bezier(.4,0,.2,1);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* --- CONTAINER --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--white);
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); }
strong { color: var(--white); font-weight: 600; }

.text-orange  { color: var(--orange); }
.text-blue    { color: var(--blue); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.gradient-text {
  background: linear-gradient(135deg, var(--orange), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font);
}
.btn-lg  { padding: 16px 32px; font-size: 1rem; }
.btn-sm  { padding: 8px 18px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 30%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}
.btn-shine { position: relative; overflow: hidden; }
@keyframes shine { 0%,100% { left: -60%; } 50% { left: 130%; } }

/* --- PULSE --- */
.pulse-glow { animation: pulseGlow 2.5s ease-in-out infinite; }
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 var(--orange-glow); }
  50%      { box-shadow: 0 0 0 14px transparent; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10,10,15,.96);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--white); }
.logo-text span { color: var(--orange); }

/* Desktop Nav */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-desktop a, .dropdown-trigger {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.nav-desktop a:hover, .dropdown-trigger:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav-desktop a.active { color: var(--orange); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 2px;
}
.dropdown:hover .dropdown-menu { opacity: 1; pointer-events: auto; }
.dropdown-menu a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--text-muted);
  display: block;
}
.dropdown-menu a:hover { background: rgba(249,115,22,.08); color: var(--orange); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; margin-left: 12px; }
.phone-link {
  display: flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 600; color: var(--text-muted);
  transition: var(--transition);
}
.phone-link:hover { color: var(--orange); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  color: var(--white);
  padding: 8px;
  margin-left: auto;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  padding: 16px 0 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--orange); background: rgba(249,115,22,.06); }
.mobile-submenu { padding-left: 16px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,.97) 0%, rgba(10,10,15,.85) 50%, rgba(10,10,15,.7) 100%);
}
.hero-glow { position: absolute; inset: 0; pointer-events: none; }
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}
.glow-orange { width: 600px; height: 600px; background: var(--orange); top: -200px; right: -100px; }
.glow-blue   { width: 400px; height: 400px; background: var(--blue); bottom: -100px; left: -100px; }

.hero-content { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.3);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-left h1 { margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; margin-bottom: 28px; max-width: 520px; }
.hero-checks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--text); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-phone a {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}
.hero-phone a:hover { color: var(--white); }
.phone-circle {
  width: 40px; height: 40px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-phone small { font-size: .75rem; display: block; }
.hero-phone strong { font-size: 1rem; color: var(--white); }

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.stat-card:hover { border-color: var(--border-hover); background: rgba(249,115,22,.06); }
.stat-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(249,115,22,.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.stat-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--text-muted); margin-top: 4px; }

/* Mobile stats row */
.stats-row-mobile { display: none; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 13px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.bg-dark  { background: var(--dark); }
.bg-dark2 { background: var(--dark-2); }
.bg-dark3 { background: var(--dark-3); }
.bg-white { background: var(--dark-2); }   /* alias for old code */
.bg-light { background: var(--dark-3); }   /* alias for old code */

.section-label {
  display: inline-block;
  background: rgba(249,115,22,.12);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; max-width: 620px; margin: 0 auto; }

/* ============================================================
   CREDENCIAMENTO SECTION (Home highlight)
   ============================================================ */
.credencial-strip {
  background: linear-gradient(135deg, var(--dark-4), var(--dark-3));
  border: 1px solid rgba(249,115,22,.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.credencial-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), #fbbf24, var(--orange));
}
.credencial-badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tipo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.25);
  color: var(--orange);
  font-size: .82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  transition: var(--transition);
}
.tipo-badge:hover { background: rgba(249,115,22,.2); }
.credencial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.credencial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}
.credencial-card:hover { border-color: var(--border-hover); background: rgba(249,115,22,.04); }
.credencial-card h4 { font-size: .95rem; margin-bottom: 4px; }
.credencial-card p { font-size: .82rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.servicos-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 99px;
  font-size: .875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.servico-card {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.servico-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.servico-img { position: relative; height: 200px; overflow: hidden; }
.servico-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.servico-card:hover .servico-img img { transform: scale(1.06); }
.servico-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}
.servico-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px;
}
.servico-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.servico-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.servico-body p  { font-size: .875rem; flex: 1; }
.servico-link {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-size: .875rem; font-weight: 600;
  transition: var(--transition);
}
.servico-link:hover { gap: 10px; }

/* Filter bar (old code compat) */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 99px;
  font-size: .85rem; font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--orange); border-color: var(--orange); color: var(--white);
}

/* ============================================================
   SOBRE / ABOUT
   ============================================================ */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.sobre-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.sobre-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sobre-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(249,115,22,.2) 100%);
}
.badge-experience {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(8px);
}
.badge-experience > div { font-size: .85rem; color: var(--text-muted); line-height: 1.4; }
.badge-big { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.badge-projects {
  position: absolute; top: -16px; right: -16px;
  background: var(--orange);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
}
.badge-projects .badge-big { color: var(--white); font-size: 1.5rem; }
.badge-small-text { font-size: .75rem; color: rgba(255,255,255,.8); font-weight: 600; }
.sobre-image { position: relative; }

.diferenciais-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.diferencial-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: var(--transition);
}
.diferencial-card:hover { border-color: var(--border-hover); }
.dif-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(249,115,22,.1); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.diferencial-card strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.diferencial-card small { font-size: .8rem; color: var(--text-muted); }

/* Valores */
.valores-section { margin-top: 0; padding-top: 80px; border-top: 1px solid var(--border); }
.valores-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.valor-card {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.valor-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.valor-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(14,165,233,.15));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.valor-icon svg { color: var(--orange); }
.valor-card h4 { margin-bottom: 12px; font-size: 1.1rem; }
.valor-card p  { font-size: .9rem; }

/* ============================================================
   NORMAS / COMPLIANCE
   ============================================================ */
.normas-banner {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, rgba(249,115,22,.1), rgba(249,115,22,.05));
  border: 1px solid rgba(249,115,22,.3);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.normas-banner-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.normas-banner h3 { font-size: 1.1rem; margin-bottom: 4px; }
.normas-banner p  { font-size: .9rem; }
.normas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.normas-col {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.normas-col-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.normas-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.bg-blue   { background: var(--blue); }
.bg-orange { background: var(--orange); }
.bg-green  { background: var(--green); }
.normas-col h3   { font-size: 1rem; }
.normas-col small { font-size: .78rem; color: var(--text-muted); }
.norma-item {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.norma-item:last-of-type { border-bottom: none; }
.norma-item strong { color: var(--orange); }
.norma-item span   { color: var(--text); }
.norma-item small  { font-size: .78rem; color: var(--text-muted); flex: 1 0 100%; margin-top: 2px; }
.norma-alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  margin-top: 16px;
}
.norma-alert.orange { background: rgba(249,115,22,.08); border: 1px solid rgba(249,115,22,.2); color: var(--text-muted); }
.norma-alert.green  { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2); color: var(--text-muted); }
.norma-alert strong { color: var(--white); }

/* ============================================================
   CLIENTS
   ============================================================ */
.clientes-stats {
  display: flex; justify-content: center; gap: 48px;
  text-align: center;
  padding: 32px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 48px;
}
.clientes-stat-value { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--orange); }
.clientes-stat-label { font-size: .85rem; color: var(--text-muted); }

.clientes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-bottom: 48px; }
.cliente-card {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.cliente-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.cliente-logo { position: relative; height: 120px; overflow: hidden; }
.cliente-logo img { width: 100%; height: 100%; object-fit: contain; padding: 20px; background: rgba(255,255,255,.03); }
.cliente-overlay {
  position: absolute; inset: 0;
  background: rgba(249,115,22,.9);
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  opacity: 0; transition: var(--transition);
  text-align: center;
}
.cliente-card:hover .cliente-overlay { opacity: 1; }
.cliente-overlay span { font-size: .8rem; font-weight: 600; color: var(--white); }
.cliente-info {
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.cliente-info h3 { font-size: .9rem; margin-bottom: 2px; }
.cliente-info small { font-size: .75rem; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { border-color: var(--border-hover); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; right: 20px;
  font-size: 4rem; line-height: 1;
  color: rgba(249,115,22,.2);
  font-family: Georgia, serif;
}
.stars { display: flex; gap: 3px; margin-bottom: 12px; }
.star { color: #fbbf24; font-size: 1rem; }
.testimonial-card p { font-size: .9rem; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: .9rem;
}
.author-name { font-size: .9rem; font-weight: 600; color: var(--white); }
.author-role { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto 48px; }
.faq-item {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(249,115,22,.3); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--white);
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(249,115,22,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--orange); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { font-size: .9rem; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contato-info h3 { font-size: 1.3rem; margin-bottom: 24px; }
.contato-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contato-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  color: var(--text);
}
.contato-item:hover { border-color: var(--border-hover); }
.contato-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(249,115,22,.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.contato-item small { font-size: .75rem; color: var(--text-muted); display: block; }
.contato-item span  { font-size: .9rem; font-weight: 500; color: var(--white); }

.whatsapp-box {
  background: linear-gradient(135deg, rgba(37,211,102,.1), rgba(37,211,102,.05));
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--radius);
  padding: 24px;
}
.whatsapp-box h4 { margin-bottom: 6px; }
.whatsapp-box p  { font-size: .9rem; margin-bottom: 16px; }

/* Form */
.contato-form-wrap {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: .9rem;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }
.form-group select option { background: var(--dark-3); }
.form-group textarea { resize: vertical; min-height: 120px; }
::placeholder { color: var(--text-faint); }
.form-privacy { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-privacy a { color: var(--orange); text-decoration: underline; }
.form-success {
  text-align: center; padding: 40px 20px;
  background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.2);
  border-radius: var(--radius);
}
.success-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.form-success h3 { color: var(--green); margin-bottom: 8px; }

/* ============================================================
   CTA BANNERS
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.cta-banner h3 { font-size: 1.6rem; color: var(--white); position: relative; z-index: 1; }
.cta-banner p  { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 520px; position: relative; z-index: 1; }
.cta-banner .cta-buttons { position: relative; z-index: 1; }

.cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 12px; }
.cta-light {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.cta-light h3 { margin-bottom: 8px; }
.cta-light p  { margin-bottom: 20px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--text-faint); }
.breadcrumb-current { color: var(--orange); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.page-hero-bg-icon {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  opacity: .03;
  font-size: 400px; line-height: 1;
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { font-size: 1.1rem; max-width: 640px; margin-bottom: 28px; }
.page-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tag {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 99px;
}
.page-hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   SERVICE PAGE CONTENT SECTIONS
   ============================================================ */
.content-section { padding: 80px 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }
.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.content-img img { width: 100%; height: 100%; object-fit: cover; }

.checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.checklist-item {
  display: flex; gap: 12px; align-items: flex-start;
}
.checklist-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(249,115,22,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-top: 2px;
}
.checklist-item p { font-size: .9rem; }

.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.process-step {
  display: flex; gap: 20px;
  position: relative;
  padding-bottom: 32px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:not(:last-child)::before {
  content: '';
  position: absolute; left: 21px; top: 44px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
.step-num {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  background: rgba(249,115,22,.1);
  border: 2px solid rgba(249,115,22,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-weight: 700; font-size: .95rem;
  font-family: var(--font-display);
}
.step-content h4 { margin-bottom: 4px; font-size: 1rem; }
.step-content p  { font-size: .875rem; }

.info-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 16px; margin-top: 32px; }
.info-card {
  background: var(--dark-4); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; text-align: center; transition: var(--transition);
}
.info-card:hover { border-color: var(--border-hover); }
.info-card-icon {
  width: 52px; height: 52px; margin: 0 auto 14px;
  background: rgba(249,115,22,.1); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.info-card h4 { font-size: .95rem; margin-bottom: 6px; }
.info-card p  { font-size: .82rem; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 28px; }
.blog-card {
  background: var(--dark-4); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; overflow: hidden; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px;
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 12px; align-items: center; font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-body p   { font-size: .875rem; flex: 1; }
.blog-link { margin-top: 16px; color: var(--orange); font-size: .875rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.blog-link:hover { gap: 10px; }

/* Blog article page */
.article-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start;
}
.article-body { max-width: 100%; }
.article-body h2 { font-size: 1.5rem; margin: 40px 0 16px; }
.article-body h3 { font-size: 1.2rem; margin: 32px 0 12px; }
.article-body p  { margin-bottom: 16px; color: var(--text-muted); line-height: 1.8; }
.article-body ul { margin: 16px 0; padding-left: 24px; }
.article-body ul li { margin-bottom: 8px; color: var(--text-muted); position: relative; }
.article-body ul li::before { content: '→'; color: var(--orange); position: absolute; left: -20px; }
.article-body strong { color: var(--white); }

.article-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-box {
  background: var(--dark-4); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.sidebar-box h4 { font-size: 1rem; margin-bottom: 14px; }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  font-size: .85rem; color: var(--text-muted); padding: 8px 12px;
  border-radius: var(--radius-sm); transition: var(--transition);
  border: 1px solid transparent;
}
.sidebar-links a:hover { color: var(--orange); border-color: rgba(249,115,22,.2); background: rgba(249,115,22,.04); }

/* ============================================================
   CITY PAGES
   ============================================================ */
.city-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; }
.city-service-item {
  background: var(--dark-4); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; align-items: center; gap: 14px;
  transition: var(--transition); text-decoration: none; color: var(--text);
}
.city-service-item:hover { border-color: var(--border-hover); color: var(--orange); transform: translateY(-2px); }
.city-service-item svg { color: var(--orange); flex-shrink: 0; }
.city-service-item span { font-size: .9rem; font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand h3 { font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p  { font-size: .875rem; margin-bottom: 20px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.footer-col h4 { font-size: .95rem; margin-bottom: 16px; color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .875rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: var(--text-faint); }
.footer-bottom a { color: var(--orange); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  color: white;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.float-wa-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--dark-3); color: var(--white);
  font-size: .82rem; font-weight: 600;
  padding: 6px 12px; border-radius: var(--radius-sm);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.float-wa:hover .float-wa-tooltip { opacity: 1; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .credencial-strip { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .normas-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .nav-desktop, .header-cta .phone-link { display: none; }
  .mobile-toggle { display: flex; }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .valores-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .clientes-stats { gap: 24px; flex-wrap: wrap; }
  .credencial-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px 24px; }
  .hero-grid > *:last-child { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { display: none; }
  .stats-row-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
  }
  .stat-card-mob {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px; text-align: center;
  }
  .stat-card-mob .stat-value { font-size: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .city-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.8rem; }
  .hero-buttons .btn-lg { width: 100%; justify-content: center; }
  .clientes-grid { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   UX IMPROVEMENTS — v2
   ============================================================ */

/* Fix header phone wrapping */
.phone-link {
  white-space: nowrap;
  font-size: .82rem;
}
.header-cta {
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

/* Contact grid: stack on medium screens too */
@media (max-width: 900px) {
  .contato-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Ensure form wraps fully */
.contato-form-wrap { width: 100%; }

/* Hero title line-height */
.hero h1 { line-height: 1.15; }

/* Dropdown z-index fix */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover { display: flex; }
.dropdown-menu a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(249,115,22,.1); color: var(--orange); }

/* Nav active link */
.nav-desktop a.active { color: var(--orange); }

/* Improved section spacing on tablet */
@media (max-width: 900px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .credencial-strip { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Improved stat cards spacing */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.stat-card:hover { border-color: var(--border-hover); }

/* Better mobile menu */
.mobile-menu {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.mobile-menu.open {
  max-height: 600px;
  padding: 16px 0 24px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 16px;
}
.mobile-menu nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  transition: var(--transition);
}
.mobile-menu nav a:hover { background: rgba(249,115,22,.08); color: var(--orange); }

/* Form full width button */
.btn-full { width: 100%; justify-content: center; }

/* CTA light improvements */
.cta-light { text-align: center; padding: 48px 32px; }

/* === LOGO WHITE FIX === */
.logo-img { filter: brightness(0) invert(1); height: 36px; }
.header-logo .logo-text { display: none; } /* show only image */

/* === DUAL PHONE HEADER === */
.phones-header {
  display: flex; flex-direction: column; gap: 2px;
  align-items: flex-end;
}
.phones-header a {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
  white-space: nowrap; transition: var(--transition);
  line-height: 1.3;
}
.phones-header a:hover { color: var(--orange); }
.phones-header .phone-whatsapp { color: #25d366; }
.phones-header .phone-whatsapp:hover { color: #1aad52; }
@media (max-width: 768px) { .phones-header { display: none; } }