/* ==========================================================================
   TrackMax Cupertino - Design System
   Paleta de marca TrackMax (navy + red) sobre sistema iOS/macOS
   Usado junto com Tailwind CDN configurado em index.php
   ========================================================================== */

/* ---- Root variables ------------------------------------------------------ */
:root {
  /* TrackMax brand (substitui ios-blue como cor primária) */
  --tm-blue: #1A237E;
  --tm-blue-dark: #0D1657;
  --tm-blue-soft: rgba(26, 35, 126, 0.12);
  --tm-red: #E53935;
  --tm-red-soft: rgba(229, 57, 53, 0.12);

  /* iOS system */
  --ios-green: #34C759;
  --ios-cyan: #1FC0EA;
  --ios-cyan-soft: rgba(31, 192, 234, 0.15);
  --ios-separator: #C6C6C8;
  --ios-gray-1: #8E8E93;
  --ios-gray-2: #AEAEB2;
  --ios-gray-3: #C7C7CC;
  --ios-gray-4: #D1D1D6;
  --ios-gray-5: #E5E5EA;
  --ios-gray-6: #F2F2F7;
  --ios-bg: #F2F2F7;
  --ios-card: #FFFFFF;
  --ios-text: #1c1c1e;

  /* Shadows */
  --shadow-ios: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-ios-md: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-ios-lg: 0 8px 30px rgba(0,0,0,0.12);

  /* Radius */
  --r-ios: 12px;
  --r-ios-lg: 16px;
  --r-ios-xl: 20px;
  --r-ios-full: 980px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  background: var(--ios-bg);
  color: var(--ios-text);
  font-size: 15px;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--tm-blue); text-decoration: none; transition: opacity 0.15s; }
a:hover { opacity: 0.75; }

:focus-visible {
  outline: 3px solid rgba(26, 35, 126, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--tm-blue);
  color: #fff;
  padding: 10px 16px;
  z-index: 10000;
  border-radius: 0 0 var(--r-ios) 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Componentes iOS/Cupertino
   ========================================================================== */

.ios-blur {
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

/* ---- Buttons ------------------------------------------------------------- */
.ios-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--r-ios);
  padding: 12px 22px;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease-out;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
  -webkit-appearance: none;
}
.ios-btn:active { transform: scale(0.97); opacity: 0.85; }

.ios-btn-primary { background: var(--tm-blue); color: #fff; }
.ios-btn-primary:hover { background: var(--tm-blue-dark); opacity: 1; }

.ios-btn-secondary { background: var(--tm-blue-soft); color: var(--tm-blue); }
.ios-btn-secondary:hover { background: rgba(26, 35, 126, 0.18); opacity: 1; }

.ios-btn-danger { background: var(--tm-red-soft); color: var(--tm-red); }
.ios-btn-danger:hover { background: rgba(229, 57, 53, 0.18); opacity: 1; }

.ios-btn-red-solid { background: var(--tm-red); color: #fff; }
.ios-btn-red-solid:hover { background: #c62828; opacity: 1; }

/* Botao CTA EXPOSEC - cyan brilhante sobre navy escuro (paleta banner oficial) */
.ios-btn-exposec-cta {
  background: #1FC0EA;
  color: #010715;
  font-weight: 700;
  box-shadow: 0 4px 22px rgba(31, 192, 234, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.ios-btn-exposec-cta:hover { background: #fff; color: #010715; opacity: 1; }

.ios-btn-sm {
  padding: 8px 16px;
  font-size: 15px;
  border-radius: 10px;
  min-height: 36px;
}

.ios-btn-whatsapp { background: #25D366; color: #fff; }
.ios-btn-whatsapp:hover { background: #1da851; opacity: 1; }

.ios-btn-block { width: 100%; }

/* ---- Inputs -------------------------------------------------------------- */
.ios-input,
.ios-textarea {
  width: 100%;
  border: none;
  outline: none;
  background: rgba(118, 118, 128, 0.12);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ios-text);
  transition: all 0.2s ease-out;
  min-height: 44px;
  -webkit-appearance: none;
}
.ios-input:focus,
.ios-textarea:focus {
  background: rgba(118, 118, 128, 0.18);
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.2);
}
.ios-textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.ios-input::placeholder,
.ios-textarea::placeholder { color: var(--ios-gray-1); }

.ios-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ios-gray-1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  padding-left: 4px;
}

/* ---- Cards --------------------------------------------------------------- */
.ios-card {
  background: var(--ios-card);
  border-radius: var(--r-ios);
  box-shadow: var(--shadow-ios);
  overflow: hidden;
}
.ios-card-lg {
  background: var(--ios-card);
  border-radius: var(--r-ios-lg);
  box-shadow: var(--shadow-ios);
  padding: 20px;
}
.ios-card-hover { transition: transform 0.2s ease-out, box-shadow 0.2s ease-out; }
.ios-card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-ios-lg); }

/* ---- Segment control ----------------------------------------------------- */
.ios-segment {
  display: inline-flex;
  background: rgba(118, 118, 128, 0.12);
  border-radius: 9px;
  padding: 2px;
  gap: 2px;
  flex-wrap: wrap;
  max-width: 100%;
}
.ios-segment-item {
  background: transparent;
  border: none;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ios-text);
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  font-family: inherit;
}
.ios-segment-item.is-active {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

/* ---- List rows ----------------------------------------------------------- */
.ios-list { background: #fff; border-radius: var(--r-ios); overflow: hidden; }
.ios-list-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
}
.ios-list-row + .ios-list-row {
  border-top: 0.5px solid var(--ios-separator);
  margin-left: 16px;
}

/* ---- Badge --------------------------------------------------------------- */
.ios-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-ios-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--tm-blue-soft);
  color: var(--tm-blue);
}
.ios-badge-red { background: var(--tm-red-soft); color: var(--tm-red); }
.ios-badge-cyan { background: var(--ios-cyan-soft); color: var(--ios-cyan); }
.ios-badge-exposec { background: rgba(255, 255, 255, 0.18); color: #fff; border: 0.5px solid rgba(255,255,255,0.4); }
.ios-badge-green { background: rgba(52, 199, 89, 0.15); color: #248A3D; }
.ios-badge-solid-red { background: var(--tm-red); color: #fff; }

.ios-section-header {
  font-size: 12px;
  font-weight: 600;
  color: var(--ios-gray-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* ==========================================================================
   Layout - Navbar sticky com blur
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #ffffff;
  border-bottom: 0.5px solid var(--ios-gray-5);
  transition: box-shadow 0.2s;
}
.site-header.is-sticky { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }

.navbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
}
.navbar-brand img {
  height: 64px;
  width: auto;
  background: transparent;
  display: block;
}
.navbar-nav {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.navbar-nav li a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ios-text);
  border-radius: 10px;
  transition: background 0.15s;
}
.navbar-nav li a:hover { background: rgba(0, 0, 0, 0.04); opacity: 1; }
.navbar-nav li a.is-active {
  background: var(--tm-blue);
  color: #fff;
  font-weight: 600;
}
.navbar-menu { display: flex; align-items: center; gap: 16px; }
.navbar-social { display: flex; gap: 6px; }
.navbar-social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--ios-text);
  transition: all 0.15s;
}
.navbar-social a:hover { background: var(--tm-blue); color: #fff; opacity: 1; }

.navbar-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ios-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  margin: 0 auto;
}
.navbar-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navbar-toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ==========================================================================
   EXPOSEC Top Banner
   ========================================================================== */
.exposec-topbar {
  /* Identidade oficial EXPOSEC 2026 - navy profundo com highlights cyan (igual banner oficial) */
  background:
    radial-gradient(circle at 85% 50%, rgba(31, 192, 234, 0.22) 0%, transparent 55%),
    linear-gradient(90deg, #010715 0%, #051C40 45%, #0A2F63 100%);
  color: #fff;
  padding: 22px 0;
  font-size: 13px;
  position: relative;
  z-index: 800;
  border-top: 2px solid #1FC0EA;
  box-shadow: 0 6px 30px rgba(1, 7, 21, 0.5);
}
.exposec-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.exposec-topbar-info { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.exposec-topbar-logo { height: 48px; width: auto; /* logo original sem filtro */ }
.exposec-topbar .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1FC0EA;
  font-weight: 600;
}
.exposec-topbar .title { font-weight: 700; font-size: 16px; color: #fff; }
.exposec-topbar .detail { font-size: 13px; color: rgba(255, 255, 255, 0.85); }

.countdown-mini { display: flex; gap: 6px; position: relative; z-index: 1; }
.countdown-mini .cd-item {
  background: rgba(31, 192, 234, 0.12);
  border: 0.5px solid rgba(31, 192, 234, 0.35);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px 14px;
  min-width: 52px;
  text-align: center;
}
.countdown-mini .cd-number {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.countdown-mini .cd-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  color: #1FC0EA;
  letter-spacing: 0.06em;
  margin-top: 2px;
  font-weight: 600;
}
.exposec-topbar .ios-btn {
  position: relative;
  z-index: 1;
  background: #1FC0EA;
  color: #010715;
  padding: 11px 24px;
  font-size: 15px;
  min-height: 42px;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(31, 192, 234, 0.35);
}
.exposec-topbar .ios-btn:hover { background: #fff; color: #010715; opacity: 1; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--ios-bg) 100%);
  padding: 60px 20px 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(26, 35, 126, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(229, 57, 53, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 900px; z-index: 1; }
.hero-text-cycle { position: relative; min-height: 1.2em; margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  color: var(--ios-text);
  position: relative;
}
.cycle-item {
  position: absolute;
  left: 0; right: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s;
  background: linear-gradient(135deg, var(--tm-blue) 0%, var(--tm-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cycle-item.cycle-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--ios-gray-1);
  max-width: 680px;
  margin: 16px auto 32px;
  font-weight: 400;
  line-height: 1.5;
}

/* ==========================================================================
   Sections genéricas
   ========================================================================== */
.section { padding: 70px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ios-text);
  margin: 0 0 12px;
  line-height: 1.15;
}
.section-header p {
  font-size: 17px;
  color: var(--ios-gray-1);
  margin: 0;
  line-height: 1.5;
}
.section-header .ios-badge { margin-bottom: 16px; }

.section-dark { background: #0a1628; color: #fff; }
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.65); }

/* ==========================================================================
   Seção - Hub de Soluções
   ========================================================================== */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.hub-image img {
  border-radius: var(--r-ios-lg);
  box-shadow: var(--shadow-ios-md);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hub-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hub-card {
  background: #fff;
  border-radius: var(--r-ios-lg);
  padding: 22px;
  box-shadow: var(--shadow-ios);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hub-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-ios-md);
}
.hub-card .hub-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--tm-blue-soft);
  color: var(--tm-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.hub-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ios-text);
}
.hub-card p {
  font-size: 14px;
  color: var(--ios-gray-1);
  margin: 0;
  line-height: 1.45;
}
.hub-card-cta {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--tm-blue) 0%, var(--tm-blue-dark) 100%);
  color: #fff;
}
.hub-card-cta h3 { color: #fff; font-size: 20px; }
.hub-card-cta p { color: rgba(255, 255, 255, 0.85); margin-bottom: 14px; }
.hub-card-cta .ios-btn { background: #fff; color: var(--tm-blue); }
.hub-card-cta .ios-btn:hover { background: #fff; opacity: 0.9; }

/* ==========================================================================
   Seção - Stats (KPIs)
   ========================================================================== */
.stats-hero { text-align: center; margin-bottom: 40px; }
.stats-hero .stats-big-number {
  display: block;
  font-size: clamp(72px, 14vw, 140px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--tm-blue) 0%, var(--tm-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
}
.stats-hero h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  margin: 8px 0 14px;
  color: var(--ios-text);
}
.stats-hero p {
  font-size: 16px;
  color: var(--ios-gray-1);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.stat-card {
  background: #fff;
  border-radius: var(--r-ios-lg);
  padding: 22px;
  box-shadow: var(--shadow-ios);
  text-align: left;
}
.stat-card .stat-prefix {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ios-gray-1);
  font-weight: 600;
}
.stat-card .stat-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--tm-blue);
  line-height: 1.1;
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
}
.stat-card .stat-suffix {
  font-size: 22px;
  font-weight: 700;
  color: var(--tm-blue);
  margin-left: 4px;
}
.stat-card .stat-label {
  display: block;
  font-size: 14px;
  color: var(--ios-gray-1);
  font-weight: 500;
}

/* ==========================================================================
   Seção - EXPOSEC dedicada
   ========================================================================== */
.section-exposec {
  /* Fundo fiel ao banner oficial EXPOSEC 2026 */
  background: linear-gradient(180deg, #010715 0%, #051C40 40%, #0A2F63 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-exposec::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(31, 192, 234, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(13, 180, 234, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(10, 47, 99, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.section-exposec::after {
  /* Grid tech sutil tipo circuito, fiel ao visual do banner */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 192, 234, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 192, 234, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.6;
}
.section-exposec .container { position: relative; z-index: 2; }
.section-exposec .section-header h2 {
  color: #fff;
  text-shadow: 0 0 40px rgba(31, 192, 234, 0.25);
}
.section-exposec .ios-badge-exposec {
  background: rgba(31, 192, 234, 0.14);
  color: #1FC0EA;
  border: 0.5px solid rgba(31, 192, 234, 0.4);
  text-shadow: 0 0 12px rgba(31, 192, 234, 0.3);
}
.exposec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.exposec-image img {
  border-radius: var(--r-ios-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
}
.exposec-details h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}
.exposec-details p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.exposec-info-list { list-style: none; padding: 0; margin: 0 0 24px; }
.exposec-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}
.exposec-info-list .icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(31, 192, 234, 0.14);
  border: 0.5px solid rgba(31, 192, 234, 0.35);
  color: #1FC0EA;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.countdown-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.countdown-large .cd-item {
  background: rgba(31, 192, 234, 0.08);
  backdrop-filter: blur(12px);
  border: 0.5px solid rgba(31, 192, 234, 0.3);
  border-radius: var(--r-ios);
  padding: 16px 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(1, 7, 21, 0.3), inset 0 1px 0 rgba(31, 192, 234, 0.15);
}
.countdown-large .cd-number {
  display: block;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 20px rgba(31, 192, 234, 0.4);
}
.countdown-large .cd-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1FC0EA;
  margin-top: 8px;
  font-weight: 600;
}

/* ==========================================================================
   Seção - Diferenciais (segment control + painel)
   ========================================================================== */
.tabs-nav {
  display: inline-flex;
  background: rgba(118, 118, 128, 0.12);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
  margin: 0 auto 32px;
  max-width: 100%;
  flex-wrap: wrap;
}
.tabs-nav-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.tab-btn {
  background: transparent;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ios-text);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--tm-blue); }
.tab-btn.is-active {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: var(--tm-blue);
}
.tab-panel {
  display: none;
  background: #fff;
  border-radius: var(--r-ios-lg);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-ios);
}
.tab-panel.is-active {
  display: block;
  animation: iosFadeIn 0.3s ease-out;
}
.tab-panel h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--ios-text);
  letter-spacing: -0.01em;
}
.tab-panel p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ios-gray-1);
  margin: 0 0 20px;
}

/* ==========================================================================
   Cards dinâmicos
   ========================================================================== */
.cards-grid { display: grid; gap: 20px; }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

/* ---- Pricing card -------------------------------------------------------- */
.pricing-card {
  background: #fff;
  border-radius: var(--r-ios-lg);
  padding: 24px 20px 20px;
  box-shadow: var(--shadow-ios);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-ios-lg);
}
.pricing-card.featured {
  border-color: var(--tm-red);
  box-shadow: 0 0 0 3px var(--tm-red-soft), var(--shadow-ios-md);
  padding-top: 32px;
}
.pricing-card.featured::before {
  content: "MAIS VENDIDO";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tm-red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--r-ios-full);
  white-space: nowrap;
}
.pricing-card-header {
  text-align: center;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid var(--ios-gray-5);
}
.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ios-text);
  letter-spacing: -0.01em;
}
.pricing-subtitle {
  font-size: 13px;
  color: var(--ios-gray-1);
  margin: 0;
  font-weight: 500;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}
.pricing-card li {
  font-size: 13px;
  color: var(--ios-text);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}
.pricing-card li::before {
  content: "✓";
  color: var(--ios-green);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.pricing-card li i.fa-check { display: none; }
.pricing-card .btn-cta {
  width: 100%;
  background: var(--tm-blue);
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  min-height: 40px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.pricing-card .btn-cta:hover { background: var(--tm-blue-dark); opacity: 1; }
.pricing-card .btn-cta:active { transform: scale(0.97); opacity: 0.85; }

/* ---- Product card -------------------------------------------------------- */
.product-card {
  background: #fff;
  border-radius: var(--r-ios-lg);
  box-shadow: var(--shadow-ios);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-ios-lg);
}
.product-card-image {
  display: block;
  background: var(--ios-gray-6);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ios-text);
  letter-spacing: -0.01em;
}
.product-card h3 a { color: inherit; }
.product-card p {
  font-size: 14px;
  color: var(--ios-gray-1);
  margin: 0;
  line-height: 1.5;
}

/* ---- Team card ----------------------------------------------------------- */
.team-card {
  background: #fff;
  border-radius: var(--r-ios-lg);
  padding: 28px 20px 22px;
  box-shadow: var(--shadow-ios);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-ios-lg);
}
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--ios-gray-6);
  box-shadow: var(--shadow-ios);
}
.team-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ios-text);
}
.team-card .role {
  font-size: 13px;
  color: var(--ios-gray-1);
  margin: 0 0 16px;
  font-weight: 500;
}
.team-card .btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 9px 18px;
  font-size: 14px;
  min-height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.team-card .btn-whatsapp:hover { background: #1da851; opacity: 1; }

/* ---- Supplier card ------------------------------------------------------- */
.supplier-card {
  background: #fff;
  border-radius: var(--r-ios-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-ios);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.supplier-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-ios-lg);
}
.supplier-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.supplier-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ios-text);
}
.supplier-card .subtitle {
  display: block;
  font-size: 12px;
  color: var(--tm-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.supplier-card p {
  font-size: 14px;
  color: var(--ios-gray-1);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Seção - Contato
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.contact-box {
  background: #fff;
  border-radius: var(--r-ios-lg);
  padding: 24px;
  box-shadow: var(--shadow-ios);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-ios-md);
}
.contact-box .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--tm-blue-soft);
  color: var(--tm-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.contact-box h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ios-text);
  margin: 0 0 8px;
}
.contact-box p {
  font-size: 14px;
  color: var(--ios-gray-1);
  margin: 4px 0;
}
.contact-box a { color: var(--tm-blue); font-weight: 500; }

.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-ios-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-ios);
}
.contact-form-wrap h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 8px;
  color: var(--ios-text);
  letter-spacing: -0.01em;
}
.contact-form-wrap .subtitle {
  text-align: center;
  color: var(--ios-gray-1);
  font-size: 15px;
  margin: 0 0 24px;
}
.form-group { margin-bottom: 16px; }

.alert {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--r-ios);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.alert-success { background: rgba(52, 199, 89, 0.15); color: #248A3D; }
.alert-error { background: var(--tm-red-soft); color: var(--tm-red); }

.map-wrapper {
  margin-top: 48px;
  border-radius: var(--r-ios-lg);
  overflow: hidden;
  box-shadow: var(--shadow-ios);
}
.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.map-wrapper h3 {
  background: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding: 16px;
  color: var(--ios-text);
  border-bottom: 0.5px solid var(--ios-gray-5);
}

/* ==========================================================================
   EXPOSEC Footer Banner
   ========================================================================== */
.exposec-footer-banner {
  background:
    radial-gradient(circle at 90% 50%, rgba(31, 192, 234, 0.22) 0%, transparent 55%),
    linear-gradient(90deg, #010715 0%, #051C40 50%, #0A2F63 100%);
  color: #fff;
  padding: 24px 0;
  position: relative;
  overflow: hidden;
  border-top: 0.5px solid rgba(31, 192, 234, 0.25);
}
.exposec-footer-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.exposec-footer-text { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
.exposec-footer-logo { height: 52px; /* logo original sem filtro */ }
.exposec-footer-info h4 { margin: 0; font-size: 18px; font-weight: 700; color: #fff; }
.exposec-footer-info p { margin: 4px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.82); }
.exposec-footer-banner .ios-btn {
  position: relative;
  z-index: 1;
  background: #1FC0EA;
  color: #010715;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(31, 192, 234, 0.4);
}
.exposec-footer-banner .ios-btn:hover { background: #fff; color: #010715; opacity: 1; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--ios-gray-6);
  padding: 48px 0 28px;
  text-align: center;
  border-top: 0.5px solid var(--ios-gray-5);
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-nav a {
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ios-text);
  border-radius: 10px;
  transition: background 0.15s;
  font-weight: 500;
}
.footer-nav a:hover { background: rgba(0, 0, 0, 0.05); opacity: 1; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: #fff;
  color: var(--ios-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-ios);
  transition: all 0.15s;
}
.footer-social a:hover {
  background: var(--tm-blue);
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}
.footer-copyright { font-size: 13px; color: var(--ios-gray-1); margin: 0; }

/* ==========================================================================
   WhatsApp Float
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 950;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.06); opacity: 1; }
.whatsapp-float:active { transform: scale(0.94); }

/* ==========================================================================
   Animações
   ========================================================================== */
@keyframes iosFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ios-animate { animation: iosFadeIn 0.3s ease-out; }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  padding: 14px 22px;
  border-radius: var(--r-ios);
  font-size: 15px;
  font-weight: 500;
  box-shadow: var(--shadow-ios-lg);
  animation: slideIn 0.3s ease-out;
  max-width: 90vw;
}
.toast-success { background: var(--ios-green); color: #fff; }
.toast-error   { background: var(--tm-red); color: #fff; }
.toast-info    { background: var(--tm-blue); color: #fff; }

/* ==========================================================================
   Scrollbar
   ========================================================================== */
::-webkit-scrollbar       { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--ios-gray-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ios-gray-2); }

/* ==========================================================================
   Mobile responsive
   ========================================================================== */
/* ==========================================================================
   Tablet (max-width: 1023px)
   ========================================================================== */
@media (max-width: 1023px) {

  .navbar { padding: 10px 18px; }
  .navbar-brand img { height: 50px; }

  /* Menu drawer iOS */
  .navbar-toggle { display: flex; }
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 40px;
    gap: 8px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
    transition: right 0.3s ease-out;
    overflow-y: auto;
    z-index: 1000;
  }
  .navbar-menu.is-open { right: 0; }
  /* Backdrop escuro ao abrir drawer */
  .navbar-menu.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
  }
  .navbar-nav { flex-direction: column; align-items: stretch; gap: 4px; }
  .navbar-nav li a {
    display: block;
    padding: 14px 16px;
    font-size: 17px;
    border-radius: 12px;
    min-height: 44px;
  }
  .navbar-social {
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 0.5px solid var(--ios-separator);
  }

  /* EXPOSEC topbar mobile: empilhado centralizado */
  .exposec-topbar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .exposec-topbar-info { flex-direction: column; gap: 8px; align-items: center; }
  .exposec-topbar-logo { height: 36px; }
  .countdown-mini { justify-content: center; }
  .exposec-topbar .ios-btn { width: auto; min-width: 200px; }

  /* Grids simplificados */
  .hub-grid,
  .exposec-grid { grid-template-columns: 1fr; gap: 24px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.cols-3,
  .cards-grid.cols-4,
  .cards-grid.cols-5 { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }

  .tab-panel { padding: 24px; }
  .tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 3px 4px;
  }
  .tabs-nav::-webkit-scrollbar { display: none; }
  .tab-btn { flex-shrink: 0; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  /* Map menor no tablet */
  .map-wrapper iframe { height: 300px; }

  /* Section exposec image */
  .exposec-image img { max-height: 350px; object-fit: cover; }

  /* Footer banner mobile */
  .exposec-footer-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .exposec-footer-text { flex-direction: column; gap: 10px; }
  .exposec-footer-logo { height: 40px; margin: 0 auto; }
}

/* ==========================================================================
   Mobile (max-width: 640px)
   ========================================================================== */
@media (max-width: 640px) {
  /* Touch targets Apple HIG: min 44px para todos interativos */
  .ios-btn, button, a.btn-cta, a.btn-whatsapp,
  .ios-input, .ios-textarea, .ios-select, select,
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="password"], input[type="date"], textarea {
    min-height: 44px;
    font-size: 16px; /* previne auto-zoom no iOS Safari */
  }

  .container { padding: 0 16px; }

  /* Navbar mobile */

  .navbar { padding: 8px 14px; }
  .navbar-brand img { height: 42px; }
  .exposec-topbar { padding: 12px 0; }

  /* EXPOSEC topbar mais compacto */
  .exposec-topbar .container { gap: 10px; }
  .exposec-topbar-logo { height: 28px; }
  .exposec-topbar .title { font-size: 13px; }
  .exposec-topbar .detail { font-size: 11px; }
  .exposec-topbar .label { font-size: 9px; }
  .countdown-mini { gap: 4px; }
  .countdown-mini .cd-item { min-width: 40px; padding: 4px 7px; }
  .countdown-mini .cd-number { font-size: 14px; }
  .countdown-mini .cd-label { font-size: 8px; }
  .exposec-topbar .ios-btn {
    width: 100%;
    font-size: 13px;
    padding: 10px 16px;
    min-width: unset;
  }

  /* Hero mobile */
  .hero { padding: 44px 16px 52px; min-height: 56vh; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 15px; margin: 12px auto 24px; }
  .hero .ios-badge { font-size: 11px; margin-bottom: 18px !important; }
  .hero .ios-btn { font-size: 15px; padding: 12px 20px; width: 100%; }

  /* Stats mobile */
  .stats-hero .stats-big-number { font-size: 72px; }
  .stats-hero h2 { font-size: 22px; }
  .stats-hero p { font-size: 14px; }
  .stats-grid { grid-template-columns: 1fr; gap: 10px; }
  .stat-card { padding: 18px; }
  .stat-card .stat-number { font-size: 34px; }

  /* Section headers */
  .section-header h2 { font-size: 26px; }
  .section-header p { font-size: 15px; }

  /* Hub mobile */
  .hub-cards { grid-template-columns: 1fr; }
  .hub-card-cta { grid-column: span 1; }
  .hub-card { padding: 18px; }
  .hub-card h3 { font-size: 16px; }

  /* Cards grid: tudo 1 coluna */
  .cards-grid.cols-2,
  .cards-grid.cols-3,
  .cards-grid.cols-4,
  .cards-grid.cols-5 { grid-template-columns: 1fr; }

  /* Pricing card mobile */
  .pricing-card { padding: 20px 16px 16px; }
  .pricing-card h3 { font-size: 16px; }
  .pricing-card li { font-size: 13px; }
  .pricing-card .btn-cta { min-height: 44px; }

  /* Product card mobile */
  .product-card-body { padding: 16px 16px 18px; }

  /* EXPOSEC section mobile */
  .exposec-details h3 { font-size: 22px; }
  .exposec-details p { font-size: 14px; }
  .exposec-info-list li { font-size: 14px; padding: 9px 0; }
  .countdown-large { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .countdown-large .cd-item { padding: 12px 6px; }
  .countdown-large .cd-number { font-size: 22px; }
  .countdown-large .cd-label { font-size: 9px; }
  .ios-btn-exposec-cta { width: 100%; font-size: 15px; }

  /* Diferenciais tabs mobile */
  .tab-panel { padding: 20px 16px; }
  .tab-panel h3 { font-size: 20px; }
  .tab-panel p { font-size: 14px; }
  .tab-btn { padding: 8px 14px; font-size: 13px; }

  /* Contato mobile */
  .contact-box { padding: 20px 16px; }
  .contact-form-wrap { padding: 22px 16px; }
  .contact-form-wrap h3 { font-size: 20px; }
  .ios-btn-block, .contact-form-wrap .ios-btn { min-height: 48px; }

  /* Map mobile */
  .map-wrapper { margin-top: 32px; }
  .map-wrapper iframe { height: 260px; }
  .map-wrapper h3 { font-size: 16px; padding: 12px; }

  /* Footer mobile */
  .footer-nav { gap: 2px; }
  .footer-nav a { padding: 8px 10px; font-size: 13px; }
  .footer-social a { width: 38px; height: 38px; font-size: 14px; }
  .footer-copyright { font-size: 12px; }

  /* Footer banner mobile */
  .exposec-footer-banner { padding: 18px 0; }
  .exposec-footer-logo { height: 32px; }
  .exposec-footer-info h4 { font-size: 15px; }
  .exposec-footer-info p { font-size: 12px; }
  .exposec-footer-banner .ios-btn { width: 100%; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 24px; }

  /* Supplier/Team cards */
  .supplier-card { padding: 22px 18px; }
  .team-card { padding: 22px 16px; }
  .team-avatar { width: 76px; height: 76px; }
}

/* ==========================================================================
   Telas muito pequenas (max-width: 380px) — iPhone SE / mini
   ========================================================================== */
@media (max-width: 380px) {
  .container { padding: 0 12px; }

  .hero h1 { font-size: 28px; letter-spacing: -0.02em; }
  .hero-subtitle { font-size: 14px; }
  .stats-hero .stats-big-number { font-size: 60px; }
  .countdown-mini .cd-item { min-width: 36px; padding: 3px 5px; }
  .countdown-mini .cd-number { font-size: 13px; }
  .countdown-large .cd-number { font-size: 20px; }
  .countdown-large .cd-label { font-size: 8px; }
  .section-header h2 { font-size: 23px; }
  .exposec-details h3 { font-size: 20px; }
  .pricing-card h3 { font-size: 15px; }
  .navbar-brand img { height: 36px; }
  .tab-btn { padding: 7px 10px; font-size: 12px; }
}

/* ==========================================================================
   Safe area (iPhone notch / dynamic island)
   ========================================================================== */
@supports (padding: env(safe-area-inset-top)) {
  .site-header {
    padding-top: env(safe-area-inset-top);
  }
  .whatsapp-float {
    bottom: calc(16px + env(safe-area-inset-bottom));
    right: calc(16px + env(safe-area-inset-right));
  }
  .navbar-menu {
    padding-top: calc(80px + env(safe-area-inset-top));
    padding-bottom: calc(40px + env(safe-area-inset-bottom));
  }
}

.text-center { text-align: center; }
.hidden { display: none !important; }

/* ==========================================================================
   FontAwesome slim (compat com markup legado de cards_render.php)
   Apenas os glifos utilizados no site
   ========================================================================== */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
       url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
       url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.fa-phone:before       { content: "\f095"; }
.fa-headphones:before  { content: "\f025"; }
.fa-cloud:before       { content: "\f0c2"; }
.fa-calendar:before    { content: "\f073"; }
.fa-clock-o:before     { content: "\f017"; }
.fa-map-marker:before  { content: "\f041"; }
.fa-globe:before       { content: "\f0ac"; }
.fa-envelope:before    { content: "\f0e0"; }
.fa-check:before       { content: "\f00c"; }
.fa-whatsapp:before    { content: "\f232"; }
.fa-facebook:before    { content: "\f09a"; }
.fa-instagram:before   { content: "\f16d"; }
.fa-youtube:before     { content: "\f167"; }
