/* ═══════════════════════════════════════════════════════════════
   ASA ATACADISTA — PREMIUM STYLES
   Versão 3.0 • Design System Premium • 2026
═══════════════════════════════════════════════════════════════ */

:root {
  /* Core Colors */
  --color-navy: #0b1757;
  --color-navy-light: #1a2768;
  --color-navy-dark: #050b2d;
  --color-yellow: #ffcc29;
  --color-yellow-light: #ffd84d;
  --color-yellow-dark: #e6b823;
  --color-bg: #e3e0e3;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #eeedf0;
  --color-gray-dark: #666666;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-light) 100%);
  --gradient-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 23, 87, 0.04);
  --shadow-md: 0 4px 16px rgba(11, 23, 87, 0.08);
  --shadow-lg: 0 8px 32px rgba(11, 23, 87, 0.12);
  --shadow-xl: 0 16px 48px rgba(11, 23, 87, 0.16);
  --shadow-glow: 0 0 40px rgba(255, 204, 41, 0.3);
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Layout */
  --header-height: 8rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


::selection {
  background: var(--color-yellow);
  color: var(--color-navy);
}

/* loader styles removed – loading screen will no longer appear */

/* contrast improvements: use strongly dark navy for body text and key elements */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-bg);
  color: var(--color-navy-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ensure navigation and buttons stand out against backgrounds */
.nav-link,
.mobile-nav-link,
.btn-secondary {
  color: var(--color-navy-dark);
}

.nav-link:hover,
.mobile-nav-link:hover,
.btn-secondary:hover {
  color: var(--color-yellow-dark);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.875rem 0;
  transition: all var(--transition-smooth);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-navy);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.header.scrolled {
  padding: 1rem 0;
  box-shadow: var(--shadow-lg);
}

.header.scrolled::before {
  opacity: 0.98;
  backdrop-filter: blur(12px);
}

.header-bg {
  position: absolute;
  inset: 0;
  background: var(--color-navy);
  opacity: 0.95;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-img {
  height: 120px;
  width: auto;
  filter: none;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  filter: none;
}

@media (max-width: 768px) {
  .logo-img {
    height: 90px;
  }
  .footer-logo-img {
    height: 80px;
  }
}

/* legacy text-based styling (hidden now) */
.logo-text {
  display: none;
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--color-yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.menu a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.menu a:not(.btn-header)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-yellow);
  transition: width var(--transition-base);
}

.menu a:not(.btn-header):hover {
  color: var(--color-yellow);
}

.menu a:not(.btn-header):hover::after {
  width: 100%;
}

.btn-header {
  /* changed to solid navy with yellow text for contrast, removed yellow border effect */
  background: var(--color-navy);
  color: var(--color-yellow) !important;
  padding: 0.625rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all var(--transition-base);
  /* subtle yellow glow instead of contour */
  box-shadow: 0 0 0 0 rgba(255, 204, 41, 0.3);
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 204, 41, 0.4);
}

.btn-header::after {
  display: none;
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 41, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 28px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: calc(100vh - var(--header-height));
  background: var(--color-navy);
  z-index: 999;
  transition: right var(--transition-smooth);
  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 6rem 2rem 2rem;
}

.mobile-menu nav ul {
  list-style: none;
}

.mobile-menu nav ul li {
  opacity: 0;
  transform: translateX(20px);
  animation: slideInRight 0.3s ease forwards;
}

.mobile-menu.active nav ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active nav ul li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active nav ul li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active nav ul li:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-link {
  display: block;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.mobile-nav-link:hover {
  color: var(--color-yellow);
  padding-left: 1rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(227,224,227,0.9) 100%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--color-yellow);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--color-navy);
  bottom: -100px;
  left: -50px;
  animation-delay: 5s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--color-yellow);
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* override hero for simplified design and fog effect */
.hero {
  padding: calc(var(--header-height) + 2rem) 0 2rem;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.hero-gradient,
.hero-shapes {
  display: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 11, 45, 0.65) 0%,
    rgba(5, 11, 45, 0.55) 60%,
    rgba(5, 11, 45, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: rgba(5, 11, 45, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero h2 {
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
}
/* make feature icons bigger */
.hero-features svg {
  width: 20px;
  height: 20px;
  color: var(--color-yellow);
}
.hero-cta {
  margin-top: 1rem;
}

/* contact info line under CTA buttons */
.cta-contact-info {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--color-white);
  text-align: center;
}
.cta-contact-info a {
  color: var(--color-yellow);
  text-decoration: underline;
}

/* accent underline helper */
.underline-accent {
  color: var(--color-navy);
  text-decoration: underline var(--color-yellow) 3px;
  text-underline-offset: 4px;
}

/* sobre-image should show the chosen picture */
.sobre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* make MVV grid vertical */
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Map states animation */
.localizacao .mapa {
  position: relative;
  width: 100%;
  height: 400px;
  background: var(--color-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.localizacao .state {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--color-yellow);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.localizacao .state.go { top: 40%; left: 30%; animation-delay: 0s; }
.localizacao .state.df { top: 50%; left: 45%; animation-delay: 0.5s; }
.localizacao .state.mg { top: 60%; left: 55%; animation-delay: 1s; }
.localizacao .state.sp { top: 50%; left: 70%; animation-delay: 1.5s; }

/* governance section styles */
.governanca {
  background: #f2f1f3;
  padding: var(--space-lg) 0;
}
.governanca .section-header h2 {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 100%;
  color: var(--color-navy);
}
.gov-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.gov-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--color-navy);
}
.gov-item svg {
  width: 24px;
  height: 24px;
  color: var(--color-yellow);
  flex-shrink: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(11, 23, 87, 0.05);
  border: 1px solid rgba(11, 23, 87, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-yellow);
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-outline {
  -webkit-text-stroke: 2px var(--color-navy);
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-gray-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-white);
  border: 1px solid rgba(11, 23, 87, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.tag svg {
  width: 16px;
  height: 16px;
  color: var(--color-yellow);
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-yellow);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gradient-accent);
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-shine);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 204, 41, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary svg {
  transition: transform var(--transition-base);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-visual {
  position: relative;
  height: 500px;
  display: none;
}

.visual-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.visual-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255,204,41,0.3) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-navy);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-navy) 0%, transparent 100%);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-visual {
    display: block;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════════ */

section {
  padding: 6rem 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* override for governance section label: blue text on yellow background */
.governanca .section-label {
  background: var(--color-yellow);
  color: var(--color-navy);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
}

.label-line {
  display: none;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-label {
  justify-content: center;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   SOBRE SECTION
═══════════════════════════════════════════════════════════════ */

.sobre {
  background: var(--color-gray);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.sobre-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray-dark);
  margin-bottom: 1.5rem;
}

.sobre-text strong {
  color: var(--color-navy);
  font-weight: 700;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  color: var(--color-navy);
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  line-height: 1.4;
}

.sobre-image {
  position: relative;
  height: 500px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(11,23,87,0.2) 0%, transparent 70%);
  animation: rotate 15s linear infinite;
}

.image-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  background-size: cover;
  background-position: center;
}


/* ═══════════════════════════════════════════════════════════════
   PROPOSTA SECTION
═══════════════════════════════════════════════════════════════ */

.proposta {
  position: relative;
  background: #f2f1f3;
}

.proposta-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(11,23,87,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,204,41,0.03) 0%, transparent 50%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.card {
  position: relative;
  padding: 2.5rem;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-shine);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card:hover::before {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,204,41,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

.card:hover .card-glow {
  opacity: 1;
  animation: rotate 8s linear infinite;
}

.card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 41, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
  transition: all var(--transition-base);
}

.card:hover .card-icon {
  background: var(--color-yellow);
  color: var(--color-navy);
  transform: scale(1.1) rotate(5deg);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  position: relative;
  min-height: 2rem;
  display: flex;
  align-items: flex-start;
  padding-right: 5rem; /* give space for the badge */
  line-height: 1.3;
}

.card p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--gradient-accent);
  color: var(--color-navy);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════════
   LOCALIZAÇÃO SECTION
═══════════════════════════════════════════════════════════════ */

.localizacao {
  background: var(--color-gray);
}

/* Override text-gradient for localizacao section to ensure contrast on light background */
.localizacao h2 .text-gradient {
  background: linear-gradient(135deg, var(--color-navy) 0%, #2a3d8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.local-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.local-list {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.local-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.local-list li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  color: var(--color-navy);
}

.local-list li span {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-gray-dark);
}

.local-list strong {
  color: var(--color-navy);
  font-weight: 700;
}

.mapa-wrapper {
  position: relative;
  height: 500px;
}

.mapa {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px);
}

@media (min-width: 1024px) {
  .local-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NÚMEROS SECTION
═══════════════════════════════════════════════════════════════ */

.numeros {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}

.numeros-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.grid-pattern {
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.numeros h2 {
  color: var(--color-white);
  text-align: center;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.numero-card {
  position: relative;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.numero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0;
  border-radius: var(--radius-lg);
  transition: opacity var(--transition-base);
}

.numero-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-yellow);
  box-shadow: 0 12px 40px rgba(255, 204, 41, 0.2);
}

.numero-card:hover::before {
  opacity: 0.1;
}

.numero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 41, 0.1);
  border-radius: 50%;
  color: var(--color-yellow);
  position: relative;
  transition: all var(--transition-base);
}

.numero-card:hover .numero-icon {
  background: var(--color-yellow);
  color: var(--color-navy);
  transform: scale(1.1) rotate(360deg);
}

.numero-value {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
}

.numero-value::after {
  content: '+';
  margin-left: 0.25rem;
}

.numero-label {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════
   MVV SECTION
═══════════════════════════════════════════════════════════════ */

/* Global section styling for premium transitions */
section {
  position: relative;
  padding: var(--space-lg) 0;
  box-shadow: inset 0 1px 0 rgba(11, 23, 87, 0.03),
              inset 0 -1px 0 rgba(11, 23, 87, 0.03);
  transition: background 0.3s ease, color 0.3s ease;
}

section + section {
  margin-top: calc(var(--space-lg) / 2);
}

section::before,
section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  pointer-events: none;
}

/* subtle grey fade at section edges */
section::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 0%, transparent 100%);
}
section::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.04) 0%, transparent 100%);
}

.mvv {
  background: #f2f1f3;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mvv-box {
  position: relative;
  padding: 3rem;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.mvv-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-shine);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mvv-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.mvv-box:hover::before {
  opacity: 1;
}

.mvv-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 41, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-yellow);
  margin-bottom: 2rem;
  position: relative;
  transition: all var(--transition-base);
}

.mvv-box:hover .mvv-icon {
  background: var(--color-yellow);
  color: var(--color-navy);
  transform: scale(1.1) rotate(-5deg);
}

.mvv-box h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
  position: relative;
}

.mvv-box p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════ */

.cta {
  position: relative;
  background: var(--color-yellow);
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-shapes {
  position: absolute;
  inset: 0;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--color-navy);
  top: -100px;
  right: -100px;
  animation: float 15s ease-in-out infinite;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: var(--color-white);
  bottom: -80px;
  left: -80px;
  animation: float 12s ease-in-out infinite reverse;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  border-radius: 50%;
  color: var(--color-white);
  box-shadow: 0 8px 32px rgba(11, 23, 87, 0.3);
  animation: pulse 3s ease-in-out infinite;
}

.cta-icon svg {
  width: 42px;
  height: 42px;
}

.cta h2 {
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta > .container > p {
  font-size: 1.125rem;
  color: var(--color-navy);
  opacity: 0.8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: var(--color-navy);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(11, 23, 87, 0.3);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(11, 23, 87, 0.4);
}

.btn-cta:hover::before {
  opacity: 1;
}

.btn-cta svg {
  transition: transform var(--transition-base);
}

.btn-cta:hover svg {
  transform: translateX(4px);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: transparent;
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.0625rem;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-cta-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(11, 23, 87, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.footer-logo {
  margin-bottom: 0.5rem;
}
/* footer-logo-img size managed above in logo section */

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* improved layout for contact details */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch; /* allow blocks to grow to same height */
}

.footer-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  flex: 1; /* ensure equal width and height when parent stretches */
  padding: 0.5rem 0;
}
.footer-block svg {
  flex-shrink: 0;
  color: var(--color-yellow);
}
.footer-block p {
  margin: 0;
  font-size: 1rem;
  color: var(--color-white);
  line-height: 1.3;
}
.footer-block p a {
  color: var(--color-yellow);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  .footer-info > p {
    flex-basis: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-smooth);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fadeIn"] {
  transform: none;
}

[data-animate="fadeIn"].animated {
  opacity: 1;
}

[data-animate="scaleUp"] {
  transform: scale(0.9);
}

[data-animate="scaleUp"].animated {
  opacity: 1;
  transform: scale(1);
}

[data-animate="slideUp"] {
  transform: translateY(40px);
}

[data-animate="slideUp"].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][style*="--delay"] {
  transition-delay: var(--delay);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .header {
    padding: 0.75rem 0;
    height: 6.5rem;
  }
  
  :root {
    --header-height: 6.5rem;
  }

  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 1.5rem) 0 3rem;
    align-items: center;
  }
  .hero h2 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }
  .hero-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 1.25rem 0;
    justify-content: center;
  }
  .feature {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
  }
  .hero-content {
    padding: 2rem 1.25rem;
    margin: 0 0.75rem;
    border-radius: var(--radius-lg);
  }
  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .cards,
  .sobre-grid,
  .governanca .gov-grid,
  .numeros-grid,
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  
  .sobre-image {
    height: auto;
  }
  
  .cta-icon {
    width: 72px;
    height: 72px;
  }
  .cta-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-cta,
  .btn-cta-outline {
    width: 100%;
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-link,
  .mobile-nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 0;
  }

  .mobile-menu-btn {
    padding: 1rem;
  }

  .hero-bg {
    background-position: center top;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-label {
    font-size: 0.875rem;
  }
  
  .governanca .section-header h2 {
    font-size: clamp(0.875rem, 3.5vw, 1.1rem);
  }
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════════ */

.relative { position: relative; }
.absolute { position: absolute; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.overflow-hidden { overflow: hidden; }

.footer {
  background: var(--color-navy-dark);
  color: var(--color-white);
}

.footer-top {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
}

.footer-description {
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-yellow);
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-column a:hover {
  color: var(--color-yellow);
  padding-left: 4px;
}

.footer-social {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transition: var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-yellow);
  color: var(--color-navy);
  transform: translateY(-3px);
}

.footer-bottom {
  background: #02061c;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
/* ═══════════════════════════════════════════════════════════════
   MELHORIAS MOBILE — UX/UI EXCLUSIVO PARA DISPOSITIVOS MÓVEIS
   Apenas melhorias visuais, sem alterar conteúdo
   Breakpoint: max-width 767px
═══════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* ─── BASE ─── */
  .container {
    width: 92%;
  }

  section {
    padding: 3rem 0 !important;
  }

  section + section {
    margin-top: 0 !important;
  }

  /* ─── HEADER ─── */
  .header {
    padding: 0.75rem 0 !important;
    height: 6rem !important;
  }

  :root {
    --header-height: 6rem;
  }

  /* Logo SVG: tamanho ideal no mobile */
  .logo-img {
    height: 68px !important;
  }

  /* Hamburguer com área de toque maior */
  .mobile-menu-btn {
    padding: 0.625rem;
  }

  /* Mobile menu: padding superior correto */
  .mobile-menu-content {
    padding: 2.5rem 1.75rem 2rem;
  }

  .mobile-nav-link {
    font-size: 1.25rem;
    padding: 0.875rem 0;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100svh;
    padding: calc(var(--header-height) + 1.25rem) 0 2.5rem !important;
    align-items: center;
  }

  /* Card de conteúdo do hero: padding equilibrado */
  .hero-content {
    padding: 1.75rem 1.375rem !important;
    margin: 0 !important;
    border-radius: var(--radius-lg) !important;
  }

  /* Título hero: bem legível, não muito grande nem pequeno */
  .hero h2 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }

  /* Features (tags Logística/Escala/Relacionamento): ícones menores e texto proporcional */
  .hero-features {
    gap: 0.5rem !important;
    margin: 1.125rem 0 !important;
    justify-content: center;
    flex-wrap: wrap;
  }

  .feature {
    font-size: 0.8125rem !important;
    padding: 0.375rem 0.75rem !important;
    gap: 0.375rem !important;
  }

  /* Ícones das features: MENORES — eram 24px, no mobile 16px */
  .hero-features svg,
  .feature svg {
    width: 16px !important;
    height: 16px !important;
  }

  /* Botão CTA do hero: largura total */
  .btn-primary.hero-cta,
  .hero-cta.btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.9375rem 1.5rem !important;
    font-size: 0.9375rem !important;
    margin-top: 0.875rem;
  }

  /* ─── SEÇÕES: CABEÇALHOS ─── */
  .section-header {
    margin-bottom: 1.75rem;
  }

  .section-header h2,
  h2 {
    font-size: clamp(1.5rem, 6.5vw, 2rem) !important;
    line-height: 1.2;
  }

  .section-label {
    font-size: 0.75rem !important;
    margin-bottom: 0.625rem;
  }

  /* ─── SOBRE ─── */
  .sobre-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Centralizar tudo na seção quem somos */
  .sobre-content {
    text-align: center !important;
  }

  .sobre-content .section-label {
    justify-content: center !important;
  }

  /* Espaçamento maior entre título e texto */
  .sobre-content h2 {
    margin-bottom: 1.75rem !important;
  }

  .sobre-text p {
    font-size: 0.9375rem !important;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  /* Imagem da seção sobre: altura automática e proporcionada */
  .sobre-image {
    height: 260px !important;
  }

  .sobre-image img {
    border-radius: var(--radius-md) !important;
    height: 100%;
    object-fit: cover;
  }

  /* ─── PROPOSTA / CARDS ─── */
  .cards {
    grid-template-columns: 1fr !important;
    gap: 0.875rem !important;
  }

  .card {
    padding: 1.625rem !important;
  }

  /* Ícone dos cards: menor e proporcional */
  .card-icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 1rem !important;
  }

  .card-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .card h3 {
    font-size: 1.1rem !important;
    padding-right: 4rem !important;
    margin-bottom: 0.625rem !important;
  }

  .card p {
    font-size: 0.875rem !important;
    line-height: 1.65;
  }

  .card-badge {
    font-size: 0.65rem !important;
    padding: 0.3rem 0.625rem !important;
    top: 1.25rem !important;
    right: 1.25rem !important;
  }

  /* ─── LOCALIZAÇÃO ─── */
  .local-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .local-list {
    gap: 0.875rem !important;
    margin-top: 1.25rem !important;
  }

  .local-list li {
    padding: 1rem 1.125rem !important;
    gap: 0.875rem !important;
  }

  /* Ícone da lista de localização: menor */
  .list-icon {
    width: 36px !important;
    height: 36px !important;
    flex-shrink: 0;
  }

  .list-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .local-list li span {
    font-size: 0.9rem !important;
    line-height: 1.55;
  }

  .mapa-wrapper {
    height: 240px !important;
  }

  /* ─── NÚMEROS ─── */
  .numeros-grid {
    grid-template-columns: 1fr !important;
    gap: 0.875rem !important;
  }

  .numero-card {
    padding: 2rem 1.5rem !important;
  }

  /* Ícone números: menor */
  .numero-icon {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 1.25rem !important;
  }

  .numero-icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  .numero-value {
    font-size: clamp(2.25rem, 10vw, 3rem) !important;
    margin-bottom: 0.5rem;
  }

  .numero-label {
    font-size: 0.875rem !important;
    line-height: 1.5;
  }

  /* ─── MVV ─── */
  .mvv-grid {
    grid-template-columns: 1fr !important;
    gap: 0.875rem !important;
  }

  .mvv-box {
    padding: 1.625rem !important;
  }

  /* Ícone MVV: menor */
  .mvv-icon {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 1.125rem !important;
  }

  .mvv-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .mvv-box h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.625rem !important;
  }

  .mvv-box p {
    font-size: 0.9rem !important;
    line-height: 1.65;
  }

  /* ─── GOVERNANÇA ─── */
  .governanca {
    padding: 2.5rem 0 !important;
  }

  /* Centralizar tudo na governanca */
  .governanca .section-header {
    text-align: center !important;
  }

  .governanca .section-label {
    justify-content: center !important;
  }

  .governanca .section-header h2 {
    font-size: clamp(0.875rem, 3.5vw, 1.1rem) !important;
    line-height: 1.55;
  }

  .gov-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
  }

  .gov-item {
    font-size: 0.8375rem !important;
    gap: 0.5rem !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Icone governanca: menor */
  .gov-item svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
  }

  /* ─── CTA ─── */
  .cta {
    padding: 3.5rem 0 !important;
  }

  .cta-icon {
    width: 72px !important;
    height: 72px !important;
    margin-bottom: 1.5rem !important;
  }

  .cta-icon svg {
    width: 32px !important;
    height: 32px !important;
  }

  .cta h2 {
    font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
    margin-bottom: 1rem !important;
  }

  .cta > .container > p {
    font-size: 0.9375rem !important;
    margin-bottom: 2rem !important;
  }

  .cta-buttons {
    flex-direction: column !important;
    width: 100%;
    gap: 0.75rem !important;
  }

  .btn-cta,
  .btn-cta-outline {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.9375rem 1.5rem !important;
    font-size: 0.9375rem !important;
  }

  /* ─── FOOTER ─── */
  .footer-top {
    padding: 2.5rem 0 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Logo do footer: tamanho ideal */
  .footer-logo-img {
    height: 72px !important;
  }

  .footer-description {
    font-size: 0.875rem !important;
    margin-top: 0.875rem;
    line-height: 1.6;
  }

  .footer-social {
    margin-top: 1.125rem;
  }

  .footer-column h4 {
    font-size: 0.875rem !important;
    margin-bottom: 0.75rem;
  }

  .footer-column ul li {
    margin-bottom: 0.5rem;
  }

  .footer-column a {
    font-size: 0.875rem !important;
  }

  .footer-bottom {
    padding: 1rem 0 !important;
  }

  .footer-bottom-content {
    flex-direction: column !important;
    gap: 0.25rem !important;
    text-align: center;
    font-size: 0.775rem !important;
  }

  /* ─── SCROLL INDICATOR ─── */
  .scroll-indicator {
    display: none;
  }

  /* ─── FOOTER: ocultar email no mobile ─── */
  .footer-email-item {
    display: none !important;
  }
}
/* ═══════════════════════════════════════════════════════════════
   CATEGORIAS / SEGMENTOS SECTION
═══════════════════════════════════════════════════════════════ */

.categorias {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-gray-dark);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.cat-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 23, 87, 0.06);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(11,23,87,0.06) 0%, rgba(255,204,41,0.12) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-navy);
  transition: all var(--transition-base);
}

.cat-card:hover .cat-icon {
  background: var(--gradient-primary);
  color: var(--color-yellow);
}

.cat-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.625rem;
}

.cat-card p {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.cat-tag {
  display: inline-block;
  background: rgba(11, 23, 87, 0.06);
  color: var(--color-navy);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cat-card-cta {
  background: var(--gradient-primary);
  border-color: transparent;
}

.cat-card-cta h3,
.cat-card-cta p {
  color: var(--color-white);
}

.cat-card-cta .cat-icon {
  background: rgba(255,255,255,0.15);
  color: var(--color-yellow);
}

.cat-card-cta:hover .cat-icon {
  background: var(--color-yellow);
  color: var(--color-navy);
}

.cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--color-yellow);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap var(--transition-base);
}

.cat-btn:hover {
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GOVERNANÇA — IMPROVED CARDS
═══════════════════════════════════════════════════════════════ */

.gov-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gov-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 23, 87, 0.06);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gov-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.gov-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(11,23,87,0.06) 0%, rgba(255,204,41,0.15) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.gov-card:hover .gov-card-icon {
  background: var(--gradient-primary);
  color: var(--color-yellow);
}

.gov-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.gov-card p {
  font-size: 0.875rem;
  color: var(--color-gray-dark);
  line-height: 1.65;
  flex: 1;
}

.gov-card-metric {
  display: inline-block;
  background: rgba(255, 204, 41, 0.15);
  color: var(--color-navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .gov-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gov-cards {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM SECTION
═══════════════════════════════════════════════════════════════ */

.form-section {
  padding: var(--space-xl) 0;
  background: var(--color-navy-dark);
  position: relative;
  overflow: hidden;
}

.form-section::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.02'%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");
  opacity: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-info .section-label span:not(.label-line) {
  color: var(--color-yellow);
  opacity: 0.9;
}

.form-info .label-line {
  background: var(--color-yellow);
}

.form-info h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 1rem 0;
}

.form-info > p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.form-contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.form-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: opacity var(--transition-base);
}

.form-contact-link:hover {
  opacity: 0.8;
}

.form-contact-link svg {
  flex-shrink: 0;
}

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(11, 23, 87, 0.15);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--color-navy-dark);
  background: var(--color-white);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230b1757' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(11, 23, 87, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

.btn-form-submit:hover {
  background: #1ebe59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-gray-dark);
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP CTA BUTTON STYLE
═══════════════════════════════════════════════════════════════ */

.btn-cta.btn-whatsapp {
  background: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white) !important;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--transition-base);
}

.btn-cta.btn-whatsapp:hover {
  background: #1ebe59;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   HERO EYEBROW & SUB
═══════════════════════════════════════════════════════════════ */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255,204,41,0.35);
  border-radius: var(--radius-full);
  background: rgba(255,204,41,0.08);
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   DIFERENCIAIS (Quem Somos)
═══════════════════════════════════════════════════════════════ */
.diferenciais {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(11,23,87,0.1);
}

.diferencial-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-navy);
}

.diferencial-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(11,23,87,0.06) 0%, rgba(255,204,41,0.15) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   NOSSAS MARCAS
═══════════════════════════════════════════════════════════════ */
.marcas {
  padding: var(--space-xl) 0;
  position: relative;
  background: var(--color-navy-dark);
  overflow: hidden;
}

.marcas-bg {
  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.025'%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");
}

.marcas .section-header h2,
.marcas .section-subtitle,
.marcas .section-label span:not(.label-line) {
  color: var(--color-white);
}

.marcas .section-label .label-line {
  background: var(--color-yellow);
}

.marcas .section-subtitle {
  color: rgba(255,255,255,0.65);
}

/* marca-card-mais and marca-cta-link styles moved to main marcas block */

/* ═══════════════════════════════════════════════════════════════
   LOCALIZAÇÃO — local-intro
═══════════════════════════════════════════════════════════════ */
.local-intro {
  font-size: 1rem;
  color: var(--color-gray-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   MVV — NEW LAYOUT (top grid + valores)
═══════════════════════════════════════════════════════════════ */
.mvv-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.valores-section {
  background: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.center-label-wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.center-label-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(255,204,41,0.4);
}

.center-label-text {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-yellow);
  white-space: nowrap;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.valor-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid rgba(255,204,41,0.1);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.valor-item:hover {
  background: rgba(255,204,41,0.08);
  border-color: rgba(255,204,41,0.25);
}

.valor-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
  opacity: 0.7;
  flex-shrink: 0;
  min-width: 32px;
}

.valor-content h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.valor-content p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .mvv-top-grid {
    grid-template-columns: 1fr;
  }
  .valores-grid {
    grid-template-columns: 1fr 1fr;
  }
  .valores-section {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .valores-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE OVERRIDES FOR NEW SECTIONS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .diferenciais {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
  .diferencial-item {
    font-size: 0.875rem;
  }
  .marcas-grid {
    gap: 0.875rem;
    margin-top: 2rem;
  }
  .local-intro {
    font-size: 0.9375rem;
  }
  .mvv-top-grid {
    gap: 0.875rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CARDS — 3 COLUNAS (DIFERENCIAIS)
═══════════════════════════════════════════════════════════════ */
.cards-3col {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .cards-3col { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════════
   NOSSAS MARCAS — PREMIUM LOGO CARDS v2
═══════════════════════════════════════════════════════════════ */

.marcas-section {
  padding: var(--space-xl) 0;
  background: var(--color-navy-dark);
  position: relative;
  overflow: hidden;
}

/* Layered ambient background */
.marcas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 15% 30%, rgba(255,204,41,0.045) 0%, transparent 65%),
    radial-gradient(ellipse 600px 400px at 85% 75%, rgba(26,39,104,0.35) 0%, transparent 65%),
    radial-gradient(circle 300px at 50% 50%, rgba(255,255,255,0.012) 0%, transparent 100%);
  pointer-events: none;
}

.marcas-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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.012'%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");
  opacity: 0.6;
  pointer-events: none;
}

.marcas-section .section-label span:not(.label-line) { color: var(--color-yellow); opacity: .9; }
.marcas-section .label-line { background: var(--color-yellow); }
.marcas-section h2 { color: var(--color-white); }
.marcas-section .section-subtitle { color: rgba(255,255,255,.6); max-width: 540px; margin-inline: auto; }

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* ── Brand Card ── */
.marca-card {
  background:
    linear-gradient(165deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Top highlight line */
.marca-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

/* Glow overlay on hover */
.marca-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 120% 80% at 50% 30%,
    rgba(255,204,41,0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.marca-card:hover {
  background:
    linear-gradient(165deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border-color: rgba(255,204,41,0.28);
  transform: translateY(-8px);
  box-shadow:
    0 24px 64px -12px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,204,41,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.marca-card:hover::before {
  width: 60%;
}

.marca-card:hover::after {
  opacity: 1;
}

/* ── Logo Container ── */
.marca-logo-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.25rem 2rem 1rem;
  position: relative;
}

.marca-logo-container {
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Subtle glow behind logo */
.marca-logo-container::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,204,41,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.marca-card:hover .marca-logo-container::after {
  opacity: 1;
}

.marca-logo-img {
  max-width: 85%;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.marca-card:hover .marca-logo-img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 2px 20px rgba(255,204,41,0.18));
  transform: scale(1.08);
}

/* ── Divider between logo and info ── */
.marca-info {
  padding: 0 2rem 0.5rem;
  width: 100%;
  position: relative;
}

.marca-info::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,204,41,0.35), transparent);
  margin: 0 auto 0.75rem;
  transition: width 0.4s ease;
}

.marca-card:hover .marca-info::before {
  width: 56px;
}

.marca-nome {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.marca-card:hover .marca-nome {
  color: rgba(255,255,255,0.85);
}

.marca-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.28);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
  transition: color 0.4s ease;
}

.marca-card:hover .marca-sub {
  color: rgba(255,255,255,0.4);
}

/* ── Tag ── */
.marca-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255,204,41,0.08);
  color: rgba(255,204,41,0.85);
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.625rem 2rem 1.75rem;
  border: 1px solid rgba(255,204,41,0.08);
  transition: all 0.4s ease;
}

.marca-card:hover .marca-tag {
  background: rgba(255,204,41,0.14);
  border-color: rgba(255,204,41,0.2);
  color: var(--color-yellow);
}

/* ── "E muito mais" card ── */
.marca-card-mais {
  background:
    linear-gradient(145deg, rgba(255,204,41,0.07) 0%, rgba(255,204,41,0.015) 100%);
  border-color: rgba(255,204,41,0.18);
}

.marca-card-mais:hover {
  border-color: rgba(255,204,41,0.45);
  background:
    linear-gradient(145deg, rgba(255,204,41,0.13) 0%, rgba(255,204,41,0.04) 100%);
}

.marca-mais-icon-wrap {
  width: 68px;
  height: 68px;
  background:
    linear-gradient(135deg, rgba(255,204,41,0.14) 0%, rgba(255,204,41,0.06) 100%);
  border: 1px solid rgba(255,204,41,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.marca-mais-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(255,204,41,0.12);
  transition: all 0.5s ease;
}

.marca-card-mais:hover .marca-mais-icon-wrap {
  background:
    linear-gradient(135deg, rgba(255,204,41,0.24) 0%, rgba(255,204,41,0.1) 100%);
  border-color: rgba(255,204,41,0.4);
  transform: rotate(90deg) scale(1.1);
}

.marca-card-mais:hover .marca-mais-icon-wrap::after {
  border-color: rgba(255,204,41,0.25);
  inset: -10px;
}

.marca-nome-mais {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

.marca-tag-cta {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 2rem;
}

.marca-cta-link {
  color: var(--color-yellow);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1.375rem;
  border: 1px solid rgba(255,204,41,0.3);
  border-radius: var(--radius-full);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.02em;
}

.marca-cta-link:hover {
  background: rgba(255,204,41,0.12);
  border-color: rgba(255,204,41,0.55);
  gap: 0.6rem;
  padding-right: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .marcas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .marcas-grid { grid-template-columns: 1fr; gap: 1rem; }
  .marca-logo-wrap { padding: 1.75rem 1.5rem 0.75rem; }
  .marca-logo-container { height: 72px; }
  .marca-logo-img { max-height: 60px; max-width: 80%; }
  .marca-info { padding: 0 1.5rem 0.25rem; }
  .marca-tag { margin: 0.5rem 1.5rem 1.5rem; }
  .marca-mais-icon-wrap { width: 56px; height: 56px; }
  .marca-mais-icon-wrap svg { width: 26px; height: 26px; }
}

/* ═══════════════════════════════════════════════════════════════
   LOCALIZAÇÃO — intro text
═══════════════════════════════════════════════════════════════ */
.local-intro {
  font-size: 1rem;
  color: var(--color-gray-dark);
  line-height: 1.7;
  margin: 0.75rem 0 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   VALORES
═══════════════════════════════════════════════════════════════ */

.valores-wrap {
  margin-top: 3rem;
}

.valores-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.valor-card {
  background: #f9f8fa;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.375rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11,23,87,0.06);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.valor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.valor-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(11,23,87,0.06) 0%, rgba(255,204,41,0.15) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.valor-card:hover .valor-icon {
  background: var(--gradient-primary);
  color: var(--color-yellow);
}

.valor-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
}

.valor-card p {
  font-size: 0.8125rem;
  color: var(--color-gray-dark);
  line-height: 1.55;
}

@media (max-width: 1100px) { .valores-cards { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 700px)  { .valores-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .valores-cards { grid-template-columns: 1fr; } }