﻿/* ============================================
   FEFA GROUP - NOVO DESIGN PREMIUM
   Cores: Branco + Preto + Azul
   ============================================ */

/* === FONTS & VARIABLES === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Cores Principais */
  --primary: #0A1628;           /* Navy/Azul escuro */
  --primary-light: #1E3A8A;     /* Azul */
  --primary-dark: #060D19;      /* Navy muito escuro */
  --secondary: #0F172A;         /* Preto azulado */
  --secondary-light: #1E293B;  /* Cinza escuro */
  
  /* Cores de Destaque - Azul */
  --accent: #2563EB;            /* Azul principal */
  --accent-light: #3B82F6;      /* Azul claro */
  --accent-dark: #1D4ED8;       /* Azul escuro */
  --accent-glow: rgba(37, 99, 235, 0.3);
  
  /* Cores Neutras */
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-50: #F1F5F9;
  --gray-100: #E2E8F0;
  --gray-200: #CBD5E1;
  --gray-300: #94A3B8;
  --gray-400: #64748B;
  --gray-500: #475569;
  --gray-600: #334155;
  --gray-700: #1E293B;
  --gray-800: #0F172A;
  --black: #000000;
  --gray-text: #4B5563;
  --gray: #E5E7EB;
  --gray-2: #D1D5DB;
  --gray-border: #E5E7EB;
  --gray-light: #F3F4F6;
  --light-gray: #E5E7EB;
  --text: #0A1628;
  --text-light: #94A3B8;
  --page-bg: #f6f8fb;
  
  /* Paleta complementar */
  --blue: #2563EB;
  --blue-accent: #2563EB;
  --blue-dark: #0B1D3A;
  --blue-pale: #E7EDF9;
  --navy-light: #111827;
  
  /* Cores de Feedback */
  --success: #059669;
  --success-bg: #E8F5E9;
  --error: #DC2626;
  --info: #2563EB;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-blue: 0 4px 30px rgba(37, 99, 235, 0.25);
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
  --shadow: 0 10px 30px rgba(0,0,0,0.18);
  --shadow-red: 0 8px 24px rgba(255, 99, 132, 0.3);
  
  /* Gradientes */
  --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1E293B 100%);
  --gradient-hero: linear-gradient(135deg, #0B1D3A 0%, #1E3A8A 55%, #0A1628 100%);
  --gradient-blue: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
  --gradient-light: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* Transições */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Fontes */
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--gray-600);
  background: #ffffff !important;
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
}

p {
  color: var(--gray-500);
  line-height: 1.7;
}

/* === UTILITIES === */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: clamp(3.5rem, 6vw, 6.5rem) 0;
}

.section--dark {
  background: var(--primary);
  color: #ffffff;
}

.section--gray {
  background: #ffffff !important;
}

.section-pad {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.bg-gray {
  background: #ffffff !important;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--white) !important; }

/* Eyebrow / kicker */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker.centered {
  margin-left: auto;
  margin-right: auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  color: #ffffff;
}

.btn-primary {
  background: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent) !important;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-secondary {
  background: var(--primary);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary) !important;
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff !important;
  border-color: var(--primary);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
  background: var(--white);
  color: #ffffff;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #1DA850;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 10px 35px rgba(15,23,42,0.14);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

#nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 850;
}

#nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.625rem 1rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: rgba(37, 99, 235, 0.05);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: var(--transition-fast);
}

.nav-dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: -1rem;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 999;
  border: 1px solid var(--gray-100);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: #ffffff !important;
  color: var(--accent);
}

.dropdown-item-icon {
  width: 36px;
  height: 36px;
  background: #ffffff !important;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.dropdown-item:hover .dropdown-item-icon {
  background: var(--accent);
  color: #ffffff;
}

.dropdown-item--child {
  padding-left: 2.5rem;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.dropdown-item--child::before {
  content: '↳';
  margin-right: 0.5rem;
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* Navbar CTA */
.navbar-cta {
  background: var(--primary);
  color: #ffffff;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.navbar-cta:hover {
  background: var(--accent);
  color: #ffffff;
}

/* Mobile Menu */
@media (max-width: 640px) {
  .navbar { padding: 0.55rem 0; }
  .navbar-logo img { height: 30px; }
  .navbar-inner { gap: 0.4rem; }
  .navbar-cta { padding: 0.45rem 1rem; font-size: 0.82rem; border-radius: var(--radius-full); }
  .home-slider-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
  .home-slider-dots button { width: 9px; height: 9px; }
  .home-slider-dots button.active { width: 22px; }
}
@media (max-width: 480px) {
  .navbar { padding: 0.45rem 0; }
  .navbar-logo img { height: 28px; }
  .navbar-cta { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 85vw);
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-2xl);
    z-index: 900;
  }

  .navbar-nav.open {
    transform: translateX(0);
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #ffffff !important;
    margin-top: 0.5rem;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
}

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  height: 479px;
  min-height: 479px;
  overflow: hidden;
  background: var(--primary);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.5);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.8) 0%, rgba(10, 22, 40, 0.4) 50%, transparent 100%);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--accent);
  width: 40px;
  border-radius: 6px;
}

.slider-arrows {
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  color: #ffffff;
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* Hero Content */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 5;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-text {
  max-width: 650px;
  color: #ffffff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-title span {
  color: var(--accent-light);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.hero-btn--primary {
  background: var(--accent);
  color: #ffffff;
}

.hero-btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.hero-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.3);
}

.hero-btn--outline:hover {
  background: var(--white);
  color: #ffffff;
  border-color: #ffffff;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 0.9rem;
  right: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

@media (max-width: 768px) {
  .hero-slider {
    height: 420px;
    min-height: 420px;
  }
  
  .hero-inner {
    padding: 0 1.25rem;
  }
  h1 { font-size: clamp(2rem, 6vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.5rem); }
  p  { line-height: 1.6; }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .slider-arrows {
    display: none;
  }
}

/* === STATS STRIP === */
.stats-strip {
  background: #ffffff !important;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: none;
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span {
  color: var(--accent-light);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(37, 99, 235, 0.14);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
}

/* === PRODUCT CARDS === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #ffffff !important;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 1.2rem;
}

.product-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.product-card-link svg {
  transition: transform 0.2s;
}

.product-card:hover .product-card-link svg {
  transform: translateX(4px);
}

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

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 1.25rem;
  }
}

@media (max-width: 540px) {
  .product-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }
  .product-card-footer a.product-inquiry-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 1rem;
  }
  .container {
    padding: 0 1rem;
  }
  .section {
    padding: 2.25rem 0;
  }
}

/* === ABOUT SECTION === */
.about-section {
  background: #ffffff !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.about-image-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  background: var(--gradient-blue);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.about-image-badge span {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-content h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-list-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-list-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  stroke-width: 3;
  fill: none;
}

.about-list-item span {
  font-size: 1rem;
  color: var(--gray-700);
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 350px;
  }
}

/* === CERTIFICATIONS === */
.certifications {
  padding: 5rem 0;
  background: var(--white);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: #ffffff !important;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cert-item {
  background: var(--white);
  padding: 1.1rem 0.75rem;
  text-align: center;
  transition: var(--transition);
}

.cert-item:hover {
  background: #ffffff !important;
}

.cert-badge {
  width: 26px;
  height: 26px;
  margin: 0 auto 0.5rem;
  display: block;
}

.cert-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.cert-item span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

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

/* === CTA SECTION === */
.cta-section {
  background: var(--gradient-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
}

.cta-section .btn-white,
.cta-section .btn-outline {
  background: #ffffff;
  color: var(--primary) !important;
  border-color: #ffffff;
}

.cta-section .btn-white:hover,
.cta-section .btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff !important;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.site-footer {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 50px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--accent);
  color: #ffffff;
}

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

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

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

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  color: #ffffff;
}

.whatsapp-float.mobile {
  position: fixed;
  bottom: 0.9rem;
  right: 0.9rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* === PAGE HERO === */
.page-hero {
  background: var(--gradient-hero) !important;
  padding: 10rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

.breadcrumb-current {
  color: #ffffff;
}

.page-hero h1 {
  color: #fff !important;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.page-hero p {
  color: rgba(255,255,255,0.82) !important;
  font-size: 1.1rem;
  max-width: 600px;
  text-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =========================================================
   INTERNAL PAGES – LAYOUT & COMPONENTS
   ========================================================= */

/* Page hero tweaks */
.page-hero {
  background: var(--gradient-hero) !important;
  padding: 9.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(37, 99, 235, 0.22), transparent 36%),
    radial-gradient(circle at 80% 15%, rgba(37, 99, 235, 0.16), transparent 32%),
    linear-gradient(135deg, #0A1628 0%, #0F172A 60%);
  opacity: 0.9;
  pointer-events: none;
}

.page-hero::before {
  z-index: 0;
  opacity: 0.35;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-hero h1 {
  margin-bottom: 0.35rem;
  color: #fff !important;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,0.82) !important;
  text-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* === HOME SLIDER (index) === */
.home-slider {
  position: relative;
  width: 100%;
  height: clamp(180px, 48vw, 240px);
  
  overflow: hidden;
  background: #ffffff !important;
}

.home-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.home-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 100%;
  background: #ffffff !important;
  display: block;
}

.home-slide::after {
  content: none;
}

.home-slider-arrow {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  color: #fff;
  z-index: 3;
  font-size: 1.2rem;
  cursor: pointer;
}

.home-slider-arrow.prev { left: 1rem; }
.home-slider-arrow.next { right: 1rem; }

.home-slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  z-index: 3;
  display: flex;
  gap: .45rem;
}

.home-slider-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: var(--transition-fast);
}

.home-slider-dots button.active {
  width: 30px;
  background: #0F5EDB;
}

@media (max-width: 900px) { .home-slider { height: clamp(180px, 52vw, 230px); } }
@media (max-width: 700px) { .home-slider { height: clamp(175px, 58vw, 220px); } }
@media (max-width: 480px) { .home-slider { height: clamp(170px, 65vw, 210px); } }

/* Category cards (produtos) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.category-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #ffffff !important;
  overflow: hidden;
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%);
}

.category-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  background: rgba(255,255,255,0.92);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.category-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.category-card-body h3 {
  margin: 0;
}

.category-card-body p {
  margin: 0;
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.category-card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.category-card:hover .category-card-link::after {
  transform: translateX(4px);
}

/* Certifications strip (produtos) */
.certs2 {
  background: var(--white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.certs2-in {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.certs2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.cert2-item {
  background: #ffffff !important;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.cert2-item strong {
  display: block;
  margin-top: 0.75rem;
  color: #ffffff;
}

.cert2-item span {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.cert2-badge {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.btn2-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #ffffff;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.btn2-primary:hover {
  background: var(--accent);
}

/* About visual cards (empresa) */
.about-visual {
  position: relative;
}

.about-visual-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-visual-main img {
  width: 100%;
  height: 480px;
  object-fit: contain;
}

.about-floating-card {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-floating-card strong {
  display: block;
  font-size: 1.1rem;
  color: #ffffff;
}

.about-floating-card span {
  display: block;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.about-floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-text h2 {
  margin: 0 0 0.25rem;
}

.about-text p {
  margin: 0;
}

/* MVV cards */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.mvv-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.mvv-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(37,99,235,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.mvv-card h3 {
  margin: 0 0 0.4rem;
}

.mvv-card p {
  margin: 0;
}

/* History carousel */
.history-carousel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.history-track {
  display: flex;
  transition: transform 0.45s ease;
}

.history-slide {
  min-width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.history-slide img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  display: block;
}

.history-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.history-btn {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.history-prev { left: 0.5rem; }
.history-next { right: 0.5rem; }

.history-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.history-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #ffffff !important;
  cursor: pointer;
  transition: var(--transition-fast);
}

.history-dot.active {
  width: 26px;
  background: var(--accent);
}

/* Features dark section */
.features-dark {
  background: var(--primary);
  color: #ffffff;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-glow);
  height: 100%;
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 0.9rem;
}

.feature-card h3 {
  color: #ffffff;
  margin: 0 0 0.35rem;
}

.feature-card p {
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* Lightbox */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1200;
}

.lb-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lb-inner {
  position: relative;
  max-width: 900px;
  width: 92vw;
  background: #000;
  padding: 1rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
}

.lb-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lb-caption {
  color: #fff;
  margin-top: 0.75rem;
  text-align: center;
}

.lb-close,
.lb-nav {
  position: absolute;
  border: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

.lb-close {
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.4rem;
}

.lb-nav {
  top: 70%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}

.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1.75rem;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-md);
}

.contact-info-items {
  display: flex;
  flex-direction: column;
}

.contact-info-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-info-item:last-child {
  border-bottom: 0;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff !important;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item p {
  margin: 0.15rem 0 0;
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-weight: 600;
  color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: #ffffff !important;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
  outline: none;
  background: #fff;
}

.contact-map iframe {
  border: 0;
}

/* Manuals */
.manuals-category {
  margin-bottom: 2.5rem;
}

.manuals-cat-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.manuals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.manual-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.manual-card-top {
  background: var(--gradient-blue);
  color: #fff;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.manual-card .manual-card-cat {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.manual-svg-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.manual-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.manual-card-body h4 {
  margin: 0;
}

.manual-card-body p {
  margin: 0;
  color: var(--gray-500);
}

.manual-card-btns {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.btn-pdf-view,
.btn-pdf-dl {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: #ffffff !important;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-pdf-view:hover,
.btn-pdf-dl:hover {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-pdf-dl {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-pdf-dl:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* PDF modal */
.pdf-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1300;
}

.pdf-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.pdf-modal {
  width: min(960px, 92vw);
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  display: flex;
  flex-direction: column;
}

.pdf-modal-header {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-100);
}

.pdf-modal-title {
  font-weight: 700;
  color: #ffffff;
}

.pdf-modal-actions {
  display: flex;
  gap: 0.5rem;
}

.pdf-modal-body {
  height: 70vh;
}

.pdf-modal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pdf-modal-btn {
  border: 1px solid var(--gray-200);
  background: #ffffff !important;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
}

.pdf-modal-btn--dl {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.pdf-modal-btn--dl:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.pdf-modal-btn--close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Assistência / SEO highlights */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.seo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.seo-cards > div {
  text-align: center;
  box-shadow: var(--shadow-md);
}

.section-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
}

.section-cta .btn-outline-white {
  border-color: rgba(255,255,255,0.4);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .page-hero {
    padding: 8.5rem 0 3.5rem;
  }
}

@media (max-width: 768px) {
  .category-grid {
    gap: 1rem;
  }

  .history-slide img {
    height: 260px;
  }

  .history-btn {
    display: none;
  }
}

.page-hero,
.page-hero .breadcrumb,
.page-hero .breadcrumb a,
.page-hero .breadcrumb-sep,
.page-hero .breadcrumb-current,
.page-hero h1,
.page-hero p {
  color: rgba(255,255,255,0.9) !important;
}

.page-hero h1 {
  color: #fff !important;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.page-hero p {
  color: rgba(255,255,255,0.82) !important;
  text-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.page-hero {
  background: var(--gradient-hero) !important;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease forwards;
}

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

/* =========================================================
   CONSISTÊNCIA ENTRE PÁGINAS E COMPONENTES RECORRENTES
   ========================================================= */

/* Section variants */
.section-header--left {
  text-align: left;
  margin: 0 0 3rem 0;
  max-width: 900px;
}

/* Buttons – variantes utilitárias */
.btn-lg { padding: 1rem 2rem; font-size: 1rem; font-weight: 700; }
.btn-white {
  background: #fff;
  color: #ffffff;
  border: 1px solid var(--gray-200);
}
.btn-white:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-light); }
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-ghost-white:hover { background: #fff; color: #ffffff; }

/* Produtos – grade + barra lateral */
.products-section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.products-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.75rem;
  align-items: start;
}

.products-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  display: none;
}

.sidebar-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.sidebar-nav-item {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: #ffffff !important;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.85rem;
}

.sidebar-nav-item:hover {
  background: #fff;
  border-color: var(--accent);
  color: var(--accent);
}

.sidebar-nav-item.active {
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

.sidebar-cta {
  margin-top: 1rem;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.25rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.sidebar-cta h4 {
  margin: 0 0 0.5rem;
  color: #fff;
  font-size: 1rem;
}

.sidebar-cta p {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .products-layout { grid-template-columns: 1fr; gap: 1.25rem; }
  .products-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .sidebar-card, .sidebar-cta { flex: 1 1 260px; }
  .sidebar-nav { width: 100%; }
  .sidebar-nav-item { flex: 1 1 calc(50% - 0.75rem); text-align: center; }
}

@media (max-width: 640px) {
  .sidebar-nav-item { flex: 1 1 100%; }
}

/* Cartões de produto (aliases + rodapé) */
.product-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 110%;
  background: #f7f7f7;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-category-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.12);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
}

.product-inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}

.product-inquiry-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* Página de produto (detalhes) */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.75rem;
  align-items: start;
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-main-img {
  background: #ffffff !important;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 110%;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.product-thumb {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-fast);
  background: #fff;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 110%;
  display: block;
}

.product-thumb:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.product-info {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow-md);
}

.product-info h1 { margin-bottom: 0.75rem; }
.product-info h2 { margin: 1.25rem 0 0.75rem; }
.product-info p { margin-bottom: 0.75rem; }

.product-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 0.75rem;
}

.product-table thead {
  background: #ffffff !important;
  color: var(--gray-700);
}

.product-table th,
.product-table td {
  padding: 0.85rem 0.75rem;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
}

.product-table tbody tr:nth-child(even) {
  background: #f9fbff;
}

@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Blog */
.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-filter-tabs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.blog-tab {
  border: 1px solid var(--gray-200);
  background: #ffffff !important;
  color: var(--gray-700);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
}

.blog-tab.active,
.blog-tab:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-blue);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #ffffff !important;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-tag-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0,0,0,0.72);
  color: #fff;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.blog-card-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.blog-card-body h3 { margin: 0; font-size: 1.1rem; }
.blog-card-body p { margin: 0; color: var(--gray-600); line-height: 1.65; flex: 1; }

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--accent);
}

.blog-read-more span {
  transition: transform 0.2s ease;
}

.blog-read-more:hover span {
  transform: translateX(4px);
}

/* Vídeos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.video-card {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.video-card iframe,
.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}

.video-card-body {
  padding: 1rem 1.25rem;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Timeline (Empresa) */
.timeline-wrapper {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.timeline {
  position: relative;
  padding: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #0A1628, #1E293B, #CBD5E1);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 0.25rem 0;
}

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px var(--primary);
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: #fff;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .2s, box-shadow .2s;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-content::before,
.timeline-item:nth-child(even) .timeline-content::before {
  content: '';
  position: absolute;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -10px;
  border-left: 10px solid #fff;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -10px;
  border-right: 10px solid #fff;
}

.timeline-year {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
  padding: .35rem .85rem;
  border-radius: 20px;
  margin-bottom: .75rem;
  letter-spacing: .05em;
}

.timeline-item h3 { margin: 0 0 .6rem; }
.timeline-item p  { margin: 0; color: var(--gray-600); line-height: 1.65; }

@media (max-width: 768px) {
  .timeline::before { left: 8px; }
  .timeline-item {
    flex-direction: column !important;
    padding-left: 40px;
  }
  .timeline-item:nth-child(even) { flex-direction: column !important; }
  .timeline-marker { left: 8px; transform: translateX(0); }
  .timeline-content::before { display: none; }
}

/* Dino / Dinamômetros */
.dino-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}

.dino-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}

.dino-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.dino-card-icon {
  display: none;
}

.dino-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ffffff !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-100);
}

.dino-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Consultoria / CTA (dinamômetros) */
.consultation-box {
  background: var(--blue-dark);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.consultation-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Manuais v2 */
.manual-card.v2 {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
}

.manual-card.v2 .manual-card-top {
  background: linear-gradient(135deg, #0A1628 0%, #1E3A8A 100%);
  padding: 1.25rem 1.5rem;
}

.manual-card.v2 .manual-card-body {
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .seo-grid,
  .seo-cards {
    grid-template-columns: 1fr !important;
  }
}

.category-card-body{display:flex;flex-direction:column;}\n.category-card-link{margin-top:auto;}\n
