/* ============================================================
   SKE IMPORTADORA — style.css
   Stack: HTML5 + CSS3 + Bootstrap 5 CDN
   Identidade Visual: Azul Marinho #162039 | Dourado #C4955A
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Barlow:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ────────────────────────────────────── */
:root {
  --bg-primary:      #162039;
  --bg-secondary:    #1E3055;
  --bg-footer:       #0D1626;
  --bg-hover:        #243A6A;
  --gold:            #C4955A;
  --gold-light:      #D4AA70;
  --gold-hover:      #D4AA70;
  --amber:           #D4823A;
  --white:           #FFFFFF;
  --text-muted:      rgba(255, 255, 255, 0.80);
  --text-dim:        rgba(255, 255, 255, 0.55);
  --overlay:         rgba(22, 32, 57, 0.58);
  --overlay-dark:    rgba(13, 22, 38, 0.75);

  --font-display:    'Bebas Neue', sans-serif;
  --font-heading:    'Barlow Condensed', sans-serif;
  --font-subhead:    'Barlow', sans-serif;
  --font-body:       'Inter', sans-serif;

  --radius-sm:       2px;
  --radius-md:       4px;
  --radius-lg:       6px;

  --shadow-card:     0 4px 24px rgba(0, 0, 0, 0.40);
  --shadow-hover:    0 8px 32px rgba(0, 0, 0, 0.55);

  --transition:      0.25s ease;
  --max-width:       1280px;
}

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

html { scroll-behavior: smooth; font-size: 16px; background-color: var(--bg-primary); color-scheme: dark; }

body {
  background-color: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
a[href], button { pointer-events: auto; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Typography ───────────────────────────────────────────── */
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  letter-spacing: 0.02em;
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
}

h2, .h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.15;
}

h3, .h3 {
  font-family: var(--font-subhead);
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--gold);
  line-height: 1.3;
}

h4, .h4 {
  font-family: var(--font-subhead);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}

p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 65ch;
}

.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-muted-ske { color: var(--text-muted) !important; }
.text-dim { color: var(--text-dim) !important; }

/* ── Section Label / Eyebrow ──────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 12px;
}

/* ── Section Title Decorator ──────────────────────────────── */
.section-title {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 8px;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-top: 14px;
}
.section-title.centered::after {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-ske-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 36px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-ske-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

.btn-ske-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 34px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-ske-outline:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-1px);
}

.btn-ske-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 34px;
  border: 2px solid rgba(255,255,255,0.50);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ske-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* WhatsApp inline button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  background: var(--bg-footer);
}
#navbar.scrolled {
  background: var(--bg-footer);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo img {
  height: 44px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav */
@media (max-width: 991px) {
  .navbar-toggle { display: flex; margin-left: auto; }
  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(196,149,90,0.3);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .navbar-links.open { display: flex; }
  .navbar-cta .btn-ske-primary { display: none; }
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  height: 100svh;
  min-height: 600px;
  max-height: 1080px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

/* Decorative diagonal shape at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--bg-primary);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 { margin-bottom: 20px; min-height: 3.2em; }

.hero-bottom .btn-ske-outline {
  color: var(--white);
  border-color: var(--white);
}
.hero-bottom .btn-ske-outline:hover {
  background: var(--white);
  color: var(--bg-primary);
  border-color: var(--white);
}
.hero h1 span { color: var(--gold); }

.hero-bottom {
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-bottom--visivel {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2s infinite;
}
.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-family: var(--font-body);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Section Base ─────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-alt { background: var(--bg-secondary); }
.section-dark { background: var(--bg-primary); }

.container-ske {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Diagonal section divider (bottom) */
.section-diagonal-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  padding-bottom: 140px;
}
.section-diagonal-top {
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  padding-top: 140px;
}

/* ── Numbers / Impact Counter ─────────────────────────────── */
.impact-numbers {
  background: transparent;
  padding: 80px 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .impact-grid { grid-template-columns: 1fr; gap: 16px; }
}

.impact-item {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-secondary);
  border: 1px solid rgba(196,149,90,0.18);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.impact-item:hover {
  border-color: rgba(196,149,90,0.45);
  transform: translateY(-4px);
}

.impact-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.impact-label {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}

/* ── Cards ────────────────────────────────────────────────── */
.card-ske {
  background: var(--bg-secondary);
  border: 1px solid rgba(196, 149, 90, 0.18);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  height: 100%;
}
.card-ske:hover {
  border-color: rgba(196, 149, 90, 0.55);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-ske-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196,149,90,0.35);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--gold);
}
.card-ske-icon svg { width: 24px; height: 24px; stroke: var(--gold); }

.card-ske h3 {
  font-family: var(--font-subhead);
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.card-ske p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 100%;
  line-height: 1.65;
  margin: 0;
}

/* Service card (larger) */
.card-service {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(196,149,90,0.20);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card-service:hover { border-color: rgba(196,149,90,0.55); box-shadow: var(--shadow-hover); }
.card-service-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-secondary);
  transition: transform 0.4s ease;
}
.card-service:hover .card-service-bg { transform: scale(1.01); }
.card-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,22,38,0.92) 40%, rgba(13,22,38,0.35) 100%);
}
.card-service-body {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
}
.card-service-body .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px solid rgba(196,149,90,0.45);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.card-service-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.card-service-body p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 100%;
  margin-bottom: 16px;
}
.card-service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.card-service-link:hover { gap: 14px; color: var(--gold-light); }

/* Product card */
.card-produto {
  background: var(--bg-secondary);
  border: 1px solid rgba(196,149,90,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card-produto:hover {
  border-color: rgba(196,149,90,0.50);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card-produto-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-hover);
}
.card-produto-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-produto:hover .card-produto-img img { transform: scale(1.06); }
.card-produto-body {
  padding: 20px 20px 24px;
}
.card-produto-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 500;
}
.card-produto-body h4 {
  font-family: var(--font-subhead);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-produto-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 100%;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog card */
.card-post {
  background: var(--bg-secondary);
  border: 1px solid rgba(196,149,90,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-post:hover {
  border-color: rgba(196,149,90,0.45);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card-post-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-hover);
}
.card-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-post:hover .card-post-img img { transform: scale(1.05); }
.card-post-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.card-post-cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  font-weight: 500;
}
.card-post-date {
  font-size: 12px;
  color: var(--text-dim);
}
.card-post-body h4 {
  font-family: var(--font-subhead);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.card-post-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 100%;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-post-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.card-post-link:hover { gap: 14px; color: var(--gold-light); }

/* ── Partners / Logos Strip ───────────────────────────────── */
.partners-strip {
  background: var(--bg-secondary);
  padding: 60px 0;
  border-top: 1px solid rgba(196,149,90,0.12);
  border-bottom: 1px solid rgba(196,149,90,0.12);
}
.partners-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 40px;
  font-weight: 500;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}
.partner-logo {
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition), filter var(--transition);
  max-height: 40px;
  width: auto;
}
.partner-logo:hover { opacity: 0.85; }

/* Partner placeholder (when no real logo) */
.partner-placeholder {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  opacity: 0.6;
  transition: opacity var(--transition), color var(--transition);
  cursor: default;
}
.partner-placeholder:hover { opacity: 0.95; color: var(--gold); }

/* ── KAZAN Banner ─────────────────────────────────────────── */
.kazan-banner {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.kazan-banner::before {
  content: 'KAZAN';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 220px);
  color: rgba(196,149,90,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.kazan-inner {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .kazan-inner { flex-direction: column; gap: 32px; }
}
.kazan-text { flex: 1; }
.kazan-text .section-label { margin-bottom: 8px; }
.kazan-text h2 { margin-bottom: 16px; }
.kazan-text p { margin-bottom: 28px; }
.kazan-accent {
  width: 4px;
  align-self: stretch;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── WhatsApp Floating Button ─────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.60);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-footer);
  padding: 80px 0 0;
  border-top: 1px solid rgba(196,149,90,0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 575px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand img { height: 40px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196,149,90,0.30);
  border-radius: var(--radius-sm);
  color: var(--text-dim);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(196,149,90,0.08);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a::before {
  content: '▶';
  font-size: 8px;
  color: var(--gold);
  opacity: 0.6;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact li svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact li span {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}
.footer-contact li a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-contact li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 10;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
  max-width: 100%;
  line-height: 1.4;
}
.footer-bottom a {
  color: var(--gold);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Filter Buttons (Produtos) ────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(196,149,90,0.25);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--bg-primary);
  background: var(--gold);
  border-color: var(--gold);
}

/* ── Page Hero (interior pages) ──────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: #0D1626 !important;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 80px;
  background: var(--bg-primary);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 3;
}
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb-ske {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}
.breadcrumb-ske a,
.breadcrumb-ske span {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.breadcrumb-ske a:hover { color: var(--gold); }
.breadcrumb-ske .sep { color: rgba(196,149,90,0.4); font-size: 10px; }
.breadcrumb-ske .current { color: var(--gold); }

/* ── Process Steps ────────────────────────────────────────── */
.steps-list {
  position: relative;
  padding-left: 0;
  counter-reset: step-counter;
}
.step-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  background: rgba(196,149,90,0.06);
}
.step-body h4 { color: var(--white); margin-bottom: 6px; }
.step-body p { font-size: 15px; color: var(--text-muted); max-width: 100%; margin: 0; }

/* ── Contact Form ─────────────────────────────────────────── */
.form-ske .form-group { margin-bottom: 20px; }
.form-ske label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-ske input,
.form-ske textarea,
.form-ske select {
  width: 100%;
  background: rgba(30, 48, 85, 0.6);
  border: 1px solid rgba(196,149,90,0.25);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-ske input:focus,
.form-ske textarea:focus,
.form-ske select:focus {
  border-color: var(--gold);
  background: rgba(36, 58, 106, 0.7);
}
.form-ske input::placeholder,
.form-ske textarea::placeholder { color: var(--text-dim); }
.form-ske textarea { resize: vertical; min-height: 130px; }
.form-ske select option { background: var(--bg-secondary); color: var(--white); }

/* Alert messages */
.alert-ske {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
  border-left: 3px solid;
}
.alert-success {
  background: rgba(37,211,102,0.08);
  border-color: #25D366;
  color: #6ee9a0;
}
.alert-error {
  background: rgba(220,53,69,0.10);
  border-color: #dc3545;
  color: #f5a0a8;
}

/* ── Blog / Post Page ─────────────────────────────────────── */
.post-content {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.85;
  max-width: 720px;
}
.post-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--white);
  margin: 40px 0 16px;
  text-transform: uppercase;
}
.post-content h3 {
  font-family: var(--font-subhead);
  font-size: 20px;
  color: var(--gold);
  margin: 28px 0 12px;
}
.post-content p { max-width: 100%; margin-bottom: 20px; }
.post-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 28px 0;
  border: 1px solid rgba(196,149,90,0.15);
}
.post-content ul, .post-content ol { padding-left: 0; margin-bottom: 20px; }
.post-content li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 16px;
}
.post-content li::before {
  content: '▶';
  font-size: 9px;
  color: var(--gold);
  flex-shrink: 0;
}
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(196,149,90,0.05);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.post-content blockquote p { color: var(--gold-light); font-style: italic; }

/* ── Admin Panel ──────────────────────────────────────────── */
.admin-body {
  background: #0f1824;
  min-height: 100vh;
}
.admin-sidebar {
  width: 240px;
  min-height: 100vh;
  background: var(--bg-footer);
  border-right: 1px solid rgba(196,149,90,0.15);
  padding: 32px 0;
  position: fixed;
  top: 0;
  left: 0;
}
.admin-sidebar-logo {
  padding: 0 24px 32px;
  border-bottom: 1px solid rgba(196,149,90,0.15);
  margin-bottom: 24px;
}
.admin-sidebar-logo img { height: 36px; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-subhead);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--transition), background var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
  color: var(--gold);
  background: rgba(196,149,90,0.07);
  border-right: 2px solid var(--gold);
}
.admin-nav a svg { width: 16px; height: 16px; stroke: currentColor; }
.admin-main {
  margin-left: 240px;
  padding: 40px;
  min-height: 100vh;
}
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196,149,90,0.15);
}
.admin-topbar h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--white);
  text-transform: uppercase;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(196,149,90,0.20);
}
.admin-table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(196,149,90,0.04); }
.badge-pub {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-pub.published { background: rgba(37,211,102,0.15); color: #6ee9a0; }
.badge-pub.draft { background: rgba(255,255,255,0.06); color: var(--text-dim); }
.btn-admin-sm {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-edit { background: rgba(196,149,90,0.15); color: var(--gold); border: 1px solid rgba(196,149,90,0.3); }
.btn-edit:hover { background: var(--gold); color: var(--bg-primary); }
.btn-delete { background: rgba(220,53,69,0.10); color: #f08080; border: 1px solid rgba(220,53,69,0.25); }
.btn-delete:hover { background: #dc3545; color: #fff; }

/* ── Map Embed ────────────────────────────────────────────── */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(196,149,90,0.20);
  box-shadow: var(--shadow-card);
}
.map-wrap iframe { display: block; width: 100%; height: 320px; }

/* ── Decorative geometric background dots ─────────────────── */
.geo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.geo-bg::before,
.geo-bg::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(196,149,90,0.07);
  border-radius: 0;
  transform: rotate(45deg);
}
.geo-bg::before { width: 320px; height: 320px; top: -80px; right: 5%; }
.geo-bg::after  { width: 180px; height: 180px; bottom: 10%; left: 2%; }

/* ── Utility ──────────────────────────────────────────────── */
.divider-gold {
  border: none;
  height: 1px;
  background: rgba(196,149,90,0.20);
  margin: 0;
}

.tag-gold {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px solid rgba(196,149,90,0.40);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.icon-bullet { color: var(--gold); margin-right: 8px; font-size: 9px; }

/* ── Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── Responsive overrides ─────────────────────────────────── */
@media (max-width: 767px) {
  .section { padding: 64px 0; }
  .hero-content {
    padding: 100px 20px 48px;
    height: auto;
    min-height: 100vh;
  }
  .hero-bottom {
    margin-top: 28px;
  }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .impact-numbers { padding: 48px 0; }
  .footer { padding: 56px 0 0; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 24px 16px; }
}

@media (max-width: 575px) {
  h1, .h1 { font-size: clamp(44px, 12vw, 72px); }
  .whatsapp-float { bottom: 20px; right: 20px; }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  #navbar, .whatsapp-float, .hero-scroll { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ══════════════════════════════════════════════════════════
   ACCESSIBILITY & UX ENHANCEMENTS
   ══════════════════════════════════════════════════════════ */

/* ── Skip to main content ────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* ── Focus Visible (keyboard navigation) ────────────────── */
* { outline: none; }
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.form-ske input:focus-visible,
.form-ske textarea:focus-visible,
.form-ske select:focus-visible {
  outline: none; /* border-color handles focus for inputs */
}
.admin-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

/* ── Touch action — prevent 300ms delay ─────────────────── */
button, a, [role="button"], input, textarea, select {
  touch-action: manipulation;
}

/* ── Minimum touch targets ───────────────────────────────── */
.form-ske input,
.form-ske select { min-height: 48px; }
.admin-nav a { min-height: 44px; }
.btn-admin-sm {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar-toggle {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
}

/* ── Password field wrapper ──────────────────────────────── */
.password-wrap { position: relative; }
.password-wrap input { padding-right: 48px; }
.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dim);
  padding: 6px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
  line-height: 1;
}
.password-toggle:hover { color: var(--gold); }
.password-toggle svg { width: 18px; height: 18px; stroke: currentColor; display: block; }

/* ── Submit button loading state ─────────────────────────── */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
  opacity: 0.75;
}
.btn-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(22,32,57,0.25);
  border-top-color: var(--bg-primary);
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ── Form field validation states ────────────────────────── */
.form-ske input.field-valid,
.form-ske textarea.field-valid { border-color: rgba(37,211,102,0.55); }
.form-ske input.field-invalid,
.form-ske textarea.field-invalid { border-color: rgba(220,53,69,0.65); }
.field-hint {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 5px;
  display: block;
  line-height: 1.4;
}
.field-error-msg {
  font-size: 11px;
  color: #f5a0a8;
  margin-top: 5px;
  display: block;
  line-height: 1.4;
}

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .hero-scroll { animation: none; opacity: 0.4; }
  .whatsapp-float { animation: none; }
  .card-ske:hover,
  .card-produto:hover,
  .card-post:hover { transform: none; }
  .btn-ske-primary:hover,
  .btn-ske-outline:hover,
  .btn-whatsapp:hover { transform: none; }
  .card-service:hover .card-service-bg { transform: none; }
  .card-produto:hover .card-produto-img img { transform: none; }
  .card-post:hover .card-post-img img { transform: none; }
}

/* ══════════════════════════════════════════════════════════
   ADMIN MOBILE NAVIGATION
   ══════════════════════════════════════════════════════════ */

.admin-mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--bg-footer);
  border-bottom: 1px solid rgba(196,149,90,0.22);
  z-index: 900;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  gap: 12px;
}
.admin-mobile-bar-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex: 1;
}
.admin-sidebar-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}
.admin-sidebar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.admin-sidebar-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.admin-sidebar-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.admin-sidebar-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dim overlay behind sidebar on mobile */
.admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 820;
  cursor: pointer;
}
.admin-overlay.open { display: block; }

@media (max-width: 767px) {
  .admin-mobile-bar { display: flex; }
  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 850;
    top: 0;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main {
    margin-left: 0 !important;
    padding: 72px 16px 32px !important;
    min-height: 100vh;
  }
  .admin-topbar h1 { font-size: 20px; }
}

/* ══════════════════════════════════════════════════════════
   SCROLLBAR STYLING (Webkit)
   ══════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: rgba(196,149,90,0.30);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(196,149,90,0.65); }

/* ══════════════════════════════════════════════════════════
   PRODUCT PAGE: IMAGE GALLERY ENHANCEMENTS
   ══════════════════════════════════════════════════════════ */
.product-gallery-thumb {
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}
.product-gallery-thumb:hover,
.product-gallery-thumb.active {
  opacity: 1;
  border-color: var(--gold) !important;
}

/* ══════════════════════════════════════════════════════════
   BLOG POST: READING IMPROVEMENTS
   ══════════════════════════════════════════════════════════ */
.post-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.post-reading-time svg { width: 13px; height: 13px; stroke: var(--text-dim); }

/* Table of contents (optional) */
.post-toc {
  background: rgba(30,48,85,0.5);
  border: 1px solid rgba(196,149,90,0.15);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.post-toc h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 12px;
}
.post-toc ol {
  padding-left: 20px;
  margin: 0;
  list-style: decimal;
}
.post-toc ol li {
  display: list-item;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.post-toc ol li::before { content: none; }
.post-toc ol li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.post-toc ol li a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   ADMIN PANEL: VISUAL POLISH
   ══════════════════════════════════════════════════════════ */

/* Stat card in dashboard */
.admin-stat-card {
  background: var(--bg-secondary);
  border: 1px solid rgba(196,149,90,0.15);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.admin-stat-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0.5;
}
.admin-stat-card:hover { border-color: rgba(196,149,90,0.35); }
.admin-stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.admin-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.admin-stat-sub {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Empty state in tables */
.admin-empty-state {
  text-align: center;
  padding: 56px 24px;
  color: var(--text-dim);
}
.admin-empty-state svg {
  width: 40px; height: 40px;
  stroke: rgba(196,149,90,0.3);
  margin: 0 auto 16px;
  display: block;
}
.admin-empty-state p { font-size: 14px; max-width: 100%; margin-bottom: 16px; }

/* Tooltip (title attr enhancement) */
[data-tip] {
  position: relative;
  cursor: help;
}
[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-footer);
  border: 1px solid rgba(196,149,90,0.25);
  color: var(--white);
  font-size: 12px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 100;
}
[data-tip]:hover::after { opacity: 1; }

/* Print override for admin */
@media print {
  .admin-sidebar,
  .admin-mobile-bar,
  .admin-topbar .btn-ske-primary,
  .btn-admin-sm { display: none !important; }
  .admin-main { margin-left: 0 !important; padding: 20px !important; }
  body { background: #fff; color: #000; }
}
