/* ============================================================
   NENÊ TRANSPORTES — Global Styles
   Logística Cinematográfica Premium
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --bg-primary:        #09090b;
  --bg-secondary:      #0d0d10;
  --bg-section:        #0f0f12;
  --bg-card:           #141418;
  --bg-card-hover:     #1a1a20;
  --bg-overlay:        rgba(9, 9, 11, 0.85);

  --accent-gold:       #c9a84c;
  --accent-gold-light: #e8c97a;
  --accent-gold-dark:  #9a7c35;
  --accent-amber:      #e8863a;

  --text-primary:      #f5f5f7;
  --text-secondary:    #a1a1aa;
  --text-muted:        #52525b;

  --border-subtle:     rgba(255, 255, 255, 0.06);
  --border-gold:       rgba(201, 168, 76, 0.25);
  --border-card:       rgba(255, 255, 255, 0.08);

  /* Gradients */
  --gradient-gold:     linear-gradient(135deg, #c9a84c 0%, #e8c97a 50%, #c9a84c 100%);
  --gradient-gold-h:   linear-gradient(90deg, #c9a84c, #e8c97a);
  --gradient-hero:     linear-gradient(135deg, #060a14 0%, #09090b 45%, #120800 100%);
  --gradient-dark:     linear-gradient(180deg, #09090b 0%, #141418 100%);
  --gradient-card:     linear-gradient(145deg, #141418 0%, #111115 100%);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md:    0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg:    0 8px 48px rgba(0, 0, 0, 0.6);
  --shadow-gold:  0 0 40px rgba(201, 168, 76, 0.15);
  --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.7);

  /* Transitions */
  --transition-fast:   0.18s ease;
  --transition-normal: 0.32s ease;
  --transition-slow:   0.55s ease;

  /* Border Radius */
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Spacing */
  --section-py:      120px;
  --container-max:   1260px;
  --container-px:    24px;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-gold-dark); border-radius: 3px; }

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(201, 168, 76, 0.25);
  color: var(--text-primary);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background: var(--bg-section);
}

.section--darker {
  background: var(--bg-secondary);
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* Flex helpers */
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  margin-bottom: 72px;
  text-align: center;
}

.section-header--left {
  text-align: left;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title .gold { color: var(--accent-gold); }
.section-title .italic { font-style: italic; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-header--left .section-subtitle {
  margin: 0;
}

/* Gold divider */
.divider-gold {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin: 20px auto 0;
}

.section-header--left .divider-gold {
  margin-left: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition-normal);
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ─── Logo ─── */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent-gold);
  letter-spacing: 4px;
  line-height: 1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 3.5px;
  color: #888888;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ─── Navigation ─── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: #444444;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: color var(--transition-fast);
  letter-spacing: 0.3px;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold-dark);
}

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

/* ─── Header CTA ─── */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ─── Menu Toggle ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1010;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333333;
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile Overlay ─── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay .nav-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 5px;
  padding: 12px 24px;
  color: var(--text-secondary);
}

.mobile-overlay .nav-link:hover {
  color: var(--accent-gold);
}

.mobile-overlay .nav-link::after {
  display: none;
}

.mobile-overlay-cta {
  margin-top: 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-xs);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-fast);
  background: rgba(255, 255, 255, 0.05);
}

.btn:hover::before { opacity: 1; }

/* Primary (gold) */
.btn-primary {
  background: var(--gradient-gold);
  color: #080808;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
  color: #080808;
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* Ghost */
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-card);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Sizes */
.btn-xl { padding: 18px 44px; font-size: 0.95rem; }
.btn-lg { padding: 15px 34px; font-size: 0.9rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-xs { padding: 7px 14px; font-size: 0.75rem; }

/* Icon button */
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

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

/* Card icon */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.card-icon i,
.card-icon svg {
  font-size: 1.4rem;
  color: var(--accent-gold);
  width: 24px;
  height: 24px;
}

.card:hover .card-icon {
  background: rgba(201, 168, 76, 0.15);
  transform: scale(1.05);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 40px 24px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 70%);
}

.img-placeholder i {
  font-size: 2.5rem;
  color: var(--accent-gold);
  opacity: 0.35;
}

.img-placeholder span {
  letter-spacing: 1px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  animation: waPulse 2.5s infinite;
  z-index: -1;
}

/* Tooltip */
.wa-float::after {
  content: 'Solicitar Orçamento';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(9, 9, 11, 0.9);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060608;
  border-top: 1px solid var(--border-gold);
}

.footer-main {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.6fr;
  gap: 60px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 20px 0 28px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 3.5px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-list a::before {
  content: '›';
  color: var(--accent-gold);
  font-size: 1rem;
}

.footer-links-list a:hover {
  color: var(--text-secondary);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-contact-item strong {
  color: var(--text-secondary);
  display: block;
  margin-bottom: 2px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-copyright span {
  color: var(--accent-gold);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--accent-gold);
}

/* ============================================================
   PAGE HERO (reutilizável para páginas internas)
   ============================================================ */
.page-hero {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.page-hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-gold);
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-hero-title .gold { color: var(--accent-gold); }
.page-hero-title .italic { font-style: italic; }

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.page-hero-deco {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 18rem;
  color: rgba(201, 168, 76, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -10px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb-item {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
  color: var(--accent-gold);
}

.breadcrumb-sep {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.breadcrumb-item.current {
  color: var(--accent-gold);
}

/* ============================================================
   FILM GRAIN OVERLAY
   ============================================================ */
.film-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 150px 150px;
}

/* ============================================================
   HIGHLIGHT / BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(201, 168, 76, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.badge-green {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  padding: 13px 16px;
  transition: all var(--transition-fast);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form-control::placeholder {
  color: var(--text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   STAT BLOCKS
   ============================================================ */
.stat-block {
  text-align: center;
  padding: 32px 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --section-py: 100px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .page-hero-deco {
    display: none;
  }

  .wa-float {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }

  .wa-float::after {
    display: none;
  }
}

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

  .btn-xl {
    padding: 15px 28px;
    font-size: 0.875rem;
  }

  .section-header {
    margin-bottom: 48px;
  }
}
