/* ==========================================================================
   GUARÁ TRANSPORTES & AGREGADOS - FOLHA DE ESTILOS PROFISSIONAL
   Design System: Luxury Industrial Dark, Glassmorphism, Micro-Animações & Alta Conversão
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

:root {
  /* Fundo & Camadas */
  --bg-deep: #050811;
  --bg-main: #090D18;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(22, 32, 54, 0.85);
  --bg-surface: #111827;
  --bg-surface-light: #1E293B;

  /* Cores de Destaque - Dourado / Âmbar Guará */
  --primary: #F59E0B;
  --primary-light: #FBBF24;
  --primary-dark: #D97706;
  --primary-glow: rgba(245, 158, 11, 0.35);
  --gold-gradient: linear-gradient(135deg, #FFFBEB 0%, #FBBF24 50%, #D97706 100%);

  /* Esportes / Beach Tennis & Areia */
  --accent-sport: #0EA5E9;
  --accent-sport-light: #38BDF8;
  --accent-sport-glow: rgba(14, 165, 233, 0.35);

  /* WhatsApp & Sucesso */
  --whatsapp: #25D366;
  --whatsapp-hover: #1ebd5a;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);

  /* Textos & Bordas */
  --text-primary: #FFFFFF;
  --text-secondary: #E2E8F0;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.35);
  --border-sport: rgba(14, 165, 233, 0.35);

  /* Tipografia */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Sombras & Transições */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.75);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-secondary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

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

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

/* ==========================================================================
   BARRA SUPERIOR (TOP BAR)
   ========================================================================== */
.top-notice-bar {
  background: linear-gradient(90deg, #050811 0%, #0F172A 50%, #050811 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.top-notice-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

.live-indicator {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: var(--whatsapp);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--whatsapp);
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.top-links a {
  color: #FBBF24;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-links a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   HEADER & NAVEGAÇÃO
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 13, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img,
.brand-logo svg {
  height: 48px;
  width: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-highlight-sport {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(6, 182, 212, 0.25));
  border: 1px solid var(--accent-sport);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: #E0F2FE !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.nav-highlight-sport:hover {
  background: var(--accent-sport);
  color: #FFFFFF !important;
  box-shadow: 0 0 20px var(--accent-sport-glow);
  transform: translateY(-2px);
}

.sport-badge-hot {
  background: #F59E0B;
  color: #0F172A;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #1db954 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1ebd5a 0%, #169e46 100%);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0F172A;
  box-shadow: 0 6px 25px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(245, 158, 11, 0.5);
  color: #0F172A;
}

.btn-sport {
  background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 25px var(--accent-sport-glow);
}

.btn-sport:hover {
  background: linear-gradient(135deg, #38BDF8 0%, #0EA5E9 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION - CINEMATIC HIGHWAY EXPERIENCE
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  background-color: var(--bg-deep);
  background-image: url('../images/frota-guara-transportes.jpg');
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

/* Canvas dos feixes de luz e partículas sobre a foto */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Overlay com vinheta elegante para garantir contraste perfeito no texto */
.hero-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(90deg, 
    rgba(5, 8, 17, 0.97) 0%, 
    rgba(5, 8, 17, 0.92) 42%, 
    rgba(5, 8, 17, 0.40) 75%, 
    rgba(5, 8, 17, 0.85) 100%
  ),
  radial-gradient(circle at 75% 45%, transparent 30%, rgba(5, 8, 17, 0.85) 100%);
  pointer-events: none;
}

.hero-grid {
  display: block;
  max-width: 860px;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 840px;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.22rem;
  color: #CBD5E1;
  margin-bottom: 34px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Card Rápido de Cotação no Hero (Glassmorphism de Luxo) */
.hero-quick-card {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(245, 158, 11, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-quick-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-sport), var(--whatsapp));
}

.quick-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.quick-card-header h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.quick-card-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.quick-form-group {
  margin-bottom: 16px;
}

.quick-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.quick-input,
.quick-select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(5, 8, 17, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition);
}

.quick-input:focus,
.quick-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  background: rgba(5, 8, 17, 0.95);
}

.quick-btn-submit {
  width: 100%;
  margin-top: 12px;
  font-size: 1rem;
}

/* ==========================================================================
   ESTATÍSTICAS & CONFIANÇA
   ========================================================================== */
.stats-banner {
  background: #0B101E;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 38px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   DESTAQUE ESPECIAL: AREIA DE QUADRAS
   ========================================================================== */
.sports-banner-section {
  padding: 70px 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, #081628 50%, var(--bg-main) 100%);
  position: relative;
}

.sports-spotlight-box {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid var(--border-sport);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.18);
  position: relative;
  overflow: hidden;
}

.sports-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.22);
  color: #38BDF8;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sports-title {
  font-size: 2.4rem;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.sports-desc {
  font-size: 1.05rem;
  color: #CBD5E1;
  margin-bottom: 24px;
  line-height: 1.65;
}

.sports-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.sports-feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: #E2E8F0;
}

.sports-feature-pill i {
  color: #38BDF8;
}

.sports-image-preview {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(14, 165, 233, 0.4);
}

.sports-image-preview img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sports-image-preview:hover img {
  transform: scale(1.05);
}

.sports-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 22px;
  background: linear-gradient(0deg, rgba(5, 8, 17, 0.95) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sports-overlay-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FBBF24;
}

/* ==========================================================================
   MATERIAIS E AGREGADOS (AREIA E PEDRA)
   ========================================================================== */
.section-padding {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.7rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
}

/* Banner de Pátio com Foto Real dos Agregados */
.materials-hero-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.materials-hero-banner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.materials-banner-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background: linear-gradient(0deg, rgba(5, 8, 17, 0.95) 0%, rgba(5, 8, 17, 0.7) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.products-tab-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  background: #0E1422;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  background: #1E293B;
  color: #FFFFFF;
}

.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #0F172A;
  box-shadow: 0 4px 18px var(--primary-glow);
}

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

.product-card {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  background: rgba(22, 32, 54, 0.9);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(245, 158, 11, 0.1);
}

.product-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.product-card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.product-specs {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  list-style: none;
}

.product-specs li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.product-specs li i {
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 4px;
}

.product-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   CALCULADORA DE CARGA & FRETE
   ========================================================================== */
.calculator-section {
  background: #060A14;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 90px 0;
}

.calc-wrapper {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
}

.calc-inputs-col h4 {
  font-size: 1.45rem;
  margin-bottom: 22px;
  color: var(--text-primary);
}

.calc-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.calc-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}

.calc-results-col {
  background: #050811;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-result-box {
  text-align: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border-subtle);
}

.calc-vol-number {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
}

.calc-vol-unit {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.calc-details-list {
  margin: 22px 0;
  font-size: 0.95rem;
}

.calc-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.calc-detail-row span:last-child {
  font-weight: 700;
  color: var(--text-primary);
}

/* ==========================================================================
   HISTÓRIA & AUTORIDADE: LUIS ANTONIO DA SILVA (HERÓI DAS ESTRADAS 2011)
   ========================================================================== */
.history-section {
  padding: 110px 0;
  background: radial-gradient(circle at 10% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 60%),
              radial-gradient(circle at 90% 50%, rgba(14, 165, 233, 0.06) 0%, transparent 60%),
              var(--bg-main);
  position: relative;
}

.history-card-master {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(22, 32, 54, 0.95) 100%);
  border: 2px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 158, 11, 0.15);
  position: relative;
}

.history-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 52px;
  align-items: center;
}

.history-media-wrap {
  text-align: center;
}

.seal-showcase {
  max-width: 280px;
  margin: 0 auto 24px auto;
  filter: drop-shadow(0 15px 30px rgba(245, 158, 11, 0.35));
  transition: transform 0.4s ease;
}

.seal-showcase:hover {
  transform: scale(1.06) rotate(1deg);
}

.history-quote-box {
  background: rgba(5, 8, 17, 0.9);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: left;
  font-style: italic;
  color: #FDE68A;
  margin-top: 24px;
  font-size: 0.96rem;
  line-height: 1.6;
}

.history-content h3 {
  font-size: 2.3rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.history-role-tag {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 22px;
}

.history-story p {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 1.04rem;
  line-height: 1.72;
}

.history-milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}

.milestone-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
}

.milestone-year {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.milestone-title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.milestone-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   REGIÕES ATENDIDAS & SEO LOCAL
   ========================================================================== */
.regions-section {
  padding: 96px 0;
  background: #0B101E;
  border-top: 1px solid var(--border-subtle);
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.cities-pill-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.city-pill {
  background: #050811;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.city-pill:hover,
.city-pill.highlight {
  background: rgba(245, 158, 11, 0.16);
  border-color: var(--primary);
  color: var(--primary-light);
  transform: translateY(-2px);
}

.coverage-box {
  background: #050811;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.coverage-route-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.coverage-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
  padding: 96px 0;
  background: var(--bg-main);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 30px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding-bottom: 26px;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.site-footer {
  background: #04060C;
  border-top: 1px solid var(--border-subtle);
  padding: 88px 0 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 44px;
  margin-bottom: 64px;
}

.footer-col h4 {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 0.96rem;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 1.2rem;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* ==========================================================================
   BOTÃO FLUTUANTE DO WHATSAPP & MOBILE BAR
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: linear-gradient(135deg, var(--whatsapp) 0%, #1db954 100%);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 15px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-float-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.65);
}

.whatsapp-icon-circle {
  font-size: 1.6rem;
}

.mobile-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 16, 28, 0.98);
  border-top: 1px solid var(--border-gold);
  padding: 12px 18px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   PÁGINA EXCLUSIVA DE QUADRAS ESPORTIVAS
   ========================================================================== */
.sport-page-hero {
  background: radial-gradient(circle at 75% 25%, rgba(14, 165, 233, 0.16) 0%, transparent 60%),
              radial-gradient(circle at 25% 75%, rgba(245, 158, 11, 0.10) 0%, transparent 60%),
              var(--bg-main);
  padding: 96px 0 70px 0;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.sport-hero-badge {
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid var(--accent-sport);
  color: #38BDF8;
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.sport-table-wrapper {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-sport);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  margin: 44px 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.sport-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.sport-table th {
  background: #060B16;
  padding: 20px 26px;
  font-family: var(--font-heading);
  color: #38BDF8;
  font-size: 1rem;
  font-weight: 800;
  border-bottom: 1px solid var(--border-subtle);
}

.sport-table td {
  padding: 18px 26px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.sport-table tr:hover td {
  background: rgba(14, 165, 233, 0.06);
}

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

.truck-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

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

/* ==========================================================================
   RESPONSIVIDADE DE ALTA PERFORMANCE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid,
  .sports-spotlight-box,
  .calc-grid,
  .history-grid,
  .regions-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .products-grid,
  .products-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-title {
    font-size: 2.7rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Espaço para a barra fixa inferior não cobrir o rodapé */
  }

  .site-header {
    height: 72px;
  }

  .header-container {
    height: 72px;
  }

  .brand-logo img,
  .brand-logo svg {
    height: 38px;
    max-width: 220px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(6, 10, 20, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-gold);
    padding: 28px 20px;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.active {
    display: block;
    animation: mobileMenuSlide 0.25s ease forwards;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    color: #E2E8F0;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link.active {
    background: rgba(245, 158, 11, 0.14);
    border-color: var(--border-gold);
    color: #FBBF24;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: #FFFFFF;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
  }

  .mobile-menu-btn:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--border-gold);
    color: #FBBF24;
  }

  .header-actions .btn-whatsapp {
    display: none;
  }

  .hero-section {
    padding: 44px 0 32px 0;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 1rem;
  }

  .hero-trust-bar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .hero-trust-bar .trust-item {
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    width: 100%;
    font-size: 0.9rem;
  }

  .products-grid,
  .products-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .calc-row-3,
  .calc-row-2,
  .history-milestones,
  .sports-features-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sports-spotlight-box {
    padding: 26px 18px;
    border-radius: var(--radius-lg);
  }

  .sports-title {
    font-size: 1.85rem;
  }

  .calc-wrapper {
    padding: 26px 18px;
    border-radius: var(--radius-lg);
  }

  .calc-wrapper h2 {
    font-size: 1.85rem;
  }

  .history-card-master {
    padding: 28px 18px;
    border-radius: var(--radius-lg);
    text-align: center;
  }

  .history-media-wrap .seal-showcase {
    max-width: 180px;
    margin: 0 auto 16px auto;
  }

  .history-content h2 {
    font-size: 1.85rem;
  }

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

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

  /* No mobile ocultamos o botão flutuante para priorizar a barra fixa inferior de conversão limpa */
  .whatsapp-float-btn {
    display: none !important;
  }

  .mobile-bottom-cta {
    display: block;
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }

  .mobile-bottom-cta .btn {
    font-size: 0.95rem;
    padding: 13px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  .chapter-nav-list {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .chapter-nav-list::-webkit-scrollbar {
    display: none;
  }

  .sport-table th,
  .sport-table td {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
}

@media (max-width: 540px) {
  .top-notice-bar {
    padding: 6px 0;
    font-size: 0.78rem;
    text-align: center;
  }

  .top-notice-bar .top-links {
    display: none;
  }

  .top-notice-bar .top-highlight {
    justify-content: center;
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-item {
    padding: 14px 8px;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 0.74rem;
  }

  .truck-stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-hero-cinematic {
    padding: 70px 0 40px 0;
  }

  .story-hero-title {
    font-size: 1.95rem;
  }

  .chapter-heading {
    font-size: 1.75rem;
  }

  .doc-bulletin-card,
  .award-trophy-card {
    padding: 22px 16px;
  }
}

/* ==========================================================================
   ESTILOS EXCLUSIVOS DA PÁGINA: NOSSA HISTÓRIA (DOCUMENTÁRIO EDITORIAL LUXURY)
   ========================================================================== */
.story-hero-cinematic {
  position: relative;
  padding: 130px 0 80px 0;
  background: linear-gradient(180deg, rgba(6, 10, 20, 0.86) 0%, rgba(9, 14, 26, 0.96) 100%),
              url('../images/frota-guara-transportes.jpg') center center / cover no-repeat;
  border-bottom: 2px solid rgba(245, 158, 11, 0.3);
  overflow: hidden;
}

.story-hero-cinematic::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.16) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.story-hero-cinematic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(0deg, #050811 0%, transparent 100%);
  pointer-events: none;
}

.story-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.story-breadcrumb a {
  color: var(--primary-light);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.story-breadcrumb a:hover {
  color: #FFFFFF;
}

.story-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid var(--border-gold);
  color: #FDE68A;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.2);
}

.story-hero-title {
  font-size: 3.5rem;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.story-hero-subtitle {
  font-size: 1.22rem;
  line-height: 1.7;
  color: #CBD5E1;
  max-width: 860px;
  margin-bottom: 38px;
}

/* Barra de Estatísticas do Documentário */
.story-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(11, 17, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-top: 40px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.story-stat-card {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
}

.story-stat-card:last-child {
  border-right: none;
}

.story-stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: #FBBF24;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.story-stat-label {
  font-size: 0.84rem;
  color: #94A3B8;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Menu de Pílulas de Navegação por Capítulos */
.story-chapter-nav {
  position: sticky;
  top: 80px;
  z-index: 90;
  background: rgba(9, 13, 24, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.chapter-nav-list {
  display: flex;
  gap: 12px;
  list-style: none;
  overflow-x: auto;
  padding-bottom: 4px;
}

.chapter-nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.chapter-nav-list a:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--border-gold);
  color: #FBBF24;
  transform: translateY(-2px);
}

/* Seções de Capítulos */
.story-chapter-section {
  padding: 95px 0;
  position: relative;
}

.story-chapter-section:nth-child(even) {
  background: #080D1A;
}

.story-chapter-section:nth-child(odd) {
  background: #050811;
}

.chapter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(180, 83, 9, 0.2) 100%);
  border: 1px solid var(--border-gold);
  color: #FBBF24;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.chapter-heading {
  font-size: 2.6rem;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.story-grid-2col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.story-grid-2col.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.story-paragraph-lead {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #E2E8F0;
  margin-bottom: 22px;
  font-weight: 500;
}

.story-paragraph {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #CBD5E1;
  margin-bottom: 18px;
}

.story-dropcap::first-letter {
  font-size: 3.4rem;
  float: left;
  line-height: 0.85;
  margin-right: 12px;
  color: #FBBF24;
  font-family: var(--font-heading);
  font-weight: 900;
  text-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Card Documentário & Boletim */
.doc-bulletin-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(26, 38, 64, 0.9) 100%);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(245, 158, 11, 0.12);
  position: relative;
}

.doc-bulletin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.doc-stamp {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #38BDF8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.doc-quote-statement {
  font-size: 1.15rem;
  font-style: italic;
  color: #FEF3C7;
  line-height: 1.65;
  margin: 20px 0;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--primary);
}

.doc-officer-info {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Card do Troféu e Selo de Ouro */
.award-trophy-card {
  background: radial-gradient(circle at 50% 30%, rgba(245, 158, 11, 0.15) 0%, rgba(11, 15, 25, 0.95) 80%);
  border: 2px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--radius-xl);
  padding: 44px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(245, 158, 11, 0.18);
  position: relative;
}

.award-seal-large {
  max-width: 280px;
  margin: 0 auto 24px auto;
  filter: drop-shadow(0 15px 35px rgba(245, 158, 11, 0.4));
  transition: transform 0.4s ease;
}

.award-seal-large:hover {
  transform: scale(1.05) rotate(1deg);
}

.official-recognition-badge {
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #38BDF8;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 22px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

/* Citação de Página Inteira */
.editorial-quote-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  text-align: center;
}

.editorial-quote-text {
  font-size: 1.5rem;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.6;
  max-width: 880px;
  margin: 0 auto 16px auto;
}

.editorial-quote-author {
  font-size: 1rem;
  color: #FBBF24;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Linha do Tempo Visual Avançada */
.history-timeline-wrap {
  position: relative;
  max-width: 960px;
  margin: 50px auto 0 auto;
}

.history-timeline-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, #38BDF8 50%, rgba(245, 158, 11, 0.1) 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.timeline-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-step:nth-child(odd) .timeline-step-content {
  grid-column: 1;
  text-align: right;
}

.timeline-step:nth-child(even) .timeline-step-content {
  grid-column: 2;
  text-align: left;
}

.timeline-step:nth-child(even) .timeline-step-empty {
  grid-column: 1;
}

.timeline-step-node {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #060913;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBBF24;
  font-size: 1.25rem;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
  z-index: 2;
}

.timeline-card-box {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(22, 32, 54, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-card-box:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.timeline-year-badge {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  color: #FBBF24;
  font-family: var(--font-heading);
  margin-bottom: 8px;
}

/* Grid de Valores Inegociáveis */
.values-master-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 40px;
}

.value-master-card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.85) 0%, rgba(13, 19, 33, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.value-master-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.value-master-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.15);
}

.value-master-card:hover::before {
  opacity: 1;
}

.value-master-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #FBBF24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.value-master-title {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.value-master-desc {
  font-size: 0.94rem;
  color: #CBD5E1;
  line-height: 1.65;
}

/* Responsividade Editorial */
@media (max-width: 992px) {
  .story-hero-title {
    font-size: 2.7rem;
  }
  .story-grid-2col,
  .story-grid-2col.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .story-stat-card:nth-child(2) {
    border-right: none;
  }
  .values-master-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .history-timeline-wrap::before {
    left: 26px;
  }
  .timeline-step-node {
    left: 26px;
  }
  .timeline-step {
    grid-template-columns: 1fr;
    padding-left: 64px;
    gap: 0;
  }
  .timeline-step:nth-child(odd) .timeline-step-content,
  .timeline-step:nth-child(even) .timeline-step-content {
    grid-column: 1;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .story-hero-title {
    font-size: 2.15rem;
  }
  .story-stats-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .story-stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
  }
  .story-stat-card:last-child {
    border-bottom: none;
  }
  .values-master-grid {
    grid-template-columns: 1fr;
  }
  .editorial-quote-text {
    font-size: 1.25rem;
  }
}


