:root {
  --primary: #004a8f;
  --primary-dark: #003366;
  --primary-light: #0066cc;
  --secondary: #1a7f37;
  --secondary-dark: #145e28;
  --accent: #e6b800;
  --accent-light: #ffe600;
  --red: #c90612;
  --red-dark: #a0050f;

  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ============ ANIMAÇÕES ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes droneMove {
  0% {
    transform: scale(1.15) translate(0%, 0%) rotate(0deg);
  }
  20% {
    transform: scale(1.18) translate(-1.5%, -2%) rotate(0.3deg);
  }
  40% {
    transform: scale(1.22) translate(0.5%, -4%) rotate(-0.2deg);
  }
  60% {
    transform: scale(1.2) translate(2%, -2.5%) rotate(0.4deg);
  }
  80% {
    transform: scale(1.17) translate(-1%, -1%) rotate(-0.3deg);
  }
  100% {
    transform: scale(1.15) translate(0%, 0%) rotate(0deg);
  }
}

@keyframes droneParallax {
  0% {
    transform: scale(1.08) translateY(0);
  }
  50% {
    transform: scale(1.12) translateY(-25px);
  }
  100% {
    transform: scale(1.08) translateY(0);
  }
}

@keyframes cloudFloat {
  0% {
    transform: translateX(-300px);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateX(calc(100vw + 300px));
    opacity: 0;
  }
}

@keyframes cloudFloat2 {
  0% {
    transform: translateX(calc(100vw + 300px));
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateX(-300px);
    opacity: 0;
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    top: 6px;
  }
  50% {
    opacity: 0.5;
    top: 20px;
  }
  100% {
    opacity: 0;
    top: 30px;
  }
}

@keyframes borderPulse {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.2);
  }
  50% {
    border-color: rgba(255, 255, 255, 0.5);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============ BARRA DE ACESSIBILIDADE ============ */
.accessibility-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.8rem;
  font-weight: 500;
  position: relative;
  z-index: 101;
}

.accessibility-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.skip-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.skip-link {
  color: var(--gray-700);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  cursor: pointer;
  font-weight: 500;
}

.skip-link:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.skip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  transition: var(--transition-bounce);
}

.skip-link:hover .skip-num {
  transform: scale(1.2);
  background: var(--primary-dark);
  box-shadow: 0 0 10px rgba(0, 74, 143, 0.3);
}

.accessibility-tools {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.tool-btn {
  background: white;
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  padding: 6px 12px;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.tool-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contrast-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 12px;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.contrast-toggle:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.toggle-track {
  width: 38px;
  height: 22px;
  background: var(--gray-300);
  border-radius: 22px;
  position: relative;
  transition: var(--transition);
}

.toggle-thumb {
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contrast-active .toggle-track {
  background: var(--primary);
}

.contrast-active .toggle-thumb {
  left: 18px;
}

/* ============ HEADER ============ */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled {
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.99);
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}

.brand:hover {
  transform: scale(1.03);
}

.brand-logo {
  height: 65px;
  width: auto;
  transition: var(--transition-bounce);
}

.brand:hover .brand-logo {
  transform: rotate(-3deg) scale(1.08);
}

.brand-text {
  border-left: 2px solid var(--gray-200);
  padding-left: 16px;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.main-nav {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
  background: rgba(0, 74, 143, 0.05);
}

.nav-link i {
  transition: var(--transition);
  font-size: 1rem;
}

.nav-item:hover > .nav-link i {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  min-width: 250px;
  border-radius: 10px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.97);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200;
  border: 1px solid var(--gray-200);
  padding: 10px 0;
  transform-origin: top center;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.nav-dropdown a {
  display: block;
  padding: 12px 24px;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-dropdown a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.nav-dropdown a:hover {
  background: var(--gray-50);
  color: var(--primary);
  padding-left: 32px;
}

.nav-dropdown a:hover::before {
  transform: scaleY(1);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
  letter-spacing: 0.3px;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  left: 0;
}

.btn-outline:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  padding: 8px;
  border-radius: 8px;
}

.mobile-menu-btn:hover {
  background: var(--gray-100);
  transform: scale(1.1);
}

/* ============ HERO COM BANNER DRONE ============ */
.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-drone-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.drone-parallax-layer {
  position: absolute;
  top: -8%;
  left: -5%;
  width: 110%;
  height: 116%;
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  opacity: 100;
  filter: blur(4px) brightness(0.8);
  animation: droneParallax 18s ease-in-out infinite;
  will-change: transform;
}

.drone-banner-layer {
  position: absolute;
  top: -5%;
  left: -3%;
  width: 106%;
  height: 110%;
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: droneMove 25s ease-in-out infinite;
  will-change: transform;
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.04) 87.5%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.04) 87.5%);
  background-size: 80px 140px;
  background-position: 0 0, 40px 70px;
  opacity: 0.6;
  z-index: 2;
  animation: shimmer 4s linear infinite;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  z-index: 2;
  filter: blur(15px);
}

.cloud-1 {
  width: 350px;
  height: 90px;
  top: 12%;
  animation: cloudFloat 30s linear infinite;
}

.cloud-2 {
  width: 250px;
  height: 70px;
  top: 22%;
  animation: cloudFloat2 35s linear infinite;
  animation-delay: -8s;
}

.cloud-3 {
  width: 300px;
  height: 80px;
  top: 55%;
  animation: cloudFloat 40s linear infinite;
  animation-delay: -15s;
}

.cloud-4 {
  width: 200px;
  height: 60px;
  top: 68%;
  animation: cloudFloat2 32s linear infinite;
  animation-delay: -20s;
}

.cloud-5 {
  width: 280px;
  height: 75px;
  top: 75%;
  animation: cloudFloat 38s linear infinite;
  animation-delay: -5s;
}

.drone-indicator {
  position: absolute;
  bottom: 90px;
  right: 50px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(15px);
  padding: 12px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: borderPulse 3s ease-in-out infinite;
}

.drone-dot {
  width: 10px;
  height: 10px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 15px #00ff88, 0 0 30px #00ff88;
  animation: pulse 1.5s ease-in-out infinite;
}

.drone-text {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-text {
  color: white;
  animation: fadeInLeft 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: pulse 2.5s ease-in-out infinite;
}

.hero-badge i {
  font-size: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 24px;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  opacity: 0.92;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-search {
  background: white;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  max-width: 520px;
  transition: var(--transition-bounce);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-search:focus-within {
  box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.4), 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.hero-search input {
  flex: 1;
  border: none;
  padding: 16px 22px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  color: var(--gray-800);
}

.hero-search input::placeholder {
  color: var(--gray-400);
}

.hero-search button {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-bounce);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.hero-search button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-search button:hover::before {
  width: 400px;
  height: 400px;
}

.hero-search button:hover {
  background: var(--secondary-dark);
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(26, 127, 55, 0.4);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  animation: fadeInRight 1s ease-out;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 26px 22px;
  border-radius: 14px;
  color: white;
  transition: var(--transition-bounce);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.highlight-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 0 50px;
  transition: var(--transition);
}

.highlight-card:hover::after {
  width: 100px;
  height: 100px;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.highlight-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  transition: var(--transition-bounce);
  display: block;
}

.highlight-card:hover .highlight-icon {
  transform: scale(1.25) translateY(-5px);
}

.highlight-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 0.8rem;
  opacity: 0.8;
  line-height: 1.5;
}

.scroll-indicator {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-mouse {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  position: relative;
}

.scroll-wheel {
  width: 5px;
  height: 9px;
  background: white;
  border-radius: 3px;
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
}

/* ============ SEÇÕES ============ */
.section {
  padding: 90px 0;
  position: relative;
}

.section-gray {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.section-dark {
  background: var(--gray-900);
  color: white;
}

.section-primary {
  background: var(--primary);
  color: white;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  margin-bottom: 56px;
  animation: fadeInUp 0.7s ease-out;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  transition: var(--transition-bounce);
}

.section-label:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-dark .section-title,
.section-primary .section-title {
  color: white;
}

.section-description {
  font-size: 1.08rem;
  color: var(--gray-600);
  max-width: 620px;
  line-height: 1.7;
}

.section-dark .section-description,
.section-primary .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* ============ SERVIÇOS ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 36px 28px;
  transition: var(--transition-bounce);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.15s; }
.service-card:nth-child(3) { animation-delay: 0.25s; }
.service-card:nth-child(4) { animation-delay: 0.35s; }
.service-card:nth-child(5) { animation-delay: 0.45s; }
.service-card:nth-child(6) { animation-delay: 0.55s; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light));
  transition: height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 0 3px 3px 0;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(0, 74, 143, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30px, 30px);
  transition: var(--transition-slow);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover::after {
  transform: translate(0, 0) scale(3);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.service-card:active {
  transform: translateY(-3px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition-bounce);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: rotate(8deg) scale(1.12);
  box-shadow: 0 10px 30px rgba(0, 74, 143, 0.3);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 18px;
  text-decoration: none;
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-15px);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* ============ CONTADORES ============ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: var(--transition-bounce);
}

.stat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ NOTÍCIAS ============ */
.news-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.news-featured {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition-bounce);
  position: relative;
}

.news-featured:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: var(--primary);
}

.news-featured-image {
  position: relative;
  height: 420px;
  background: var(--gray-200);
  overflow: hidden;
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.news-featured:hover .news-featured-image img {
  transform: scale(1.08);
}

.news-featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--red);
  color: white;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 5px 20px rgba(201, 6, 18, 0.4);
}

.news-featured-content {
  padding: 32px;
}

.news-featured-content h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--gray-900);
  transition: var(--transition);
  line-height: 1.3;
}

.news-featured:hover .news-featured-content h2 {
  color: var(--primary);
}

.news-featured-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.news-meta {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.news-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-read-more:hover {
  color: var(--primary-dark);
  gap: 14px;
}

.btn-read-more i {
  transition: var(--transition);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition-bounce);
  cursor: pointer;
  display: flex;
}

.news-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateX(6px);
}

.news-card-image {
  width: 130px;
  min-height: 100%;
  background: var(--gray-200);
  flex-shrink: 0;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.12);
}

.news-card-content {
  padding: 18px;
  flex: 1;
}

.news-card-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition);
}

.news-card:hover .news-card-content h4 {
  color: var(--primary);
}

.news-card-content p {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 8px;
  line-height: 1.5;
}

.news-card-content .date {
  font-size: 0.72rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.sidebar-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  color: white;
  border-radius: 14px;
  padding: 32px 28px;
  margin-bottom: 24px;
  transition: var(--transition-bounce);
}

.sidebar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.sidebar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-links {
  list-style: none;
}

.sidebar-links li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.9rem;
}

.sidebar-links li:hover {
  padding-left: 10px;
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding-left: 16px;
}

.sidebar-links li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent-light);
  border-radius: 50%;
  transition: var(--transition-bounce);
  flex-shrink: 0;
}

.sidebar-links li:hover::before {
  transform: scale(1.6);
  box-shadow: 0 0 10px var(--accent-light);
}

/* ============ SERVIÇOS ONLINE ============ */
.online-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.online-service-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 22px;
  text-align: center;
  transition: var(--transition-bounce);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.online-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.online-service-card:hover::after {
  transform: scaleX(1);
}

.online-service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.online-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition-bounce);
}

.online-service-card:hover .online-icon {
  transform: scale(1.12) rotate(6deg);
  box-shadow: 0 15px 35px rgba(0, 74, 143, 0.35);
  border-radius: 50%;
}

.online-service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.online-service-card p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ============ TIMELINE ============ */
.timeline-scroll {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 24px 0 48px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.timeline-scroll::-webkit-scrollbar {
  height: 8px;
}

.timeline-scroll::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 4px;
}

.timeline-scroll::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.timeline-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.timeline-card {
  min-width: 400px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: var(--transition-bounce);
  flex-shrink: 0;
}

.timeline-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.timeline-card-image {
  height: 220px;
  background: var(--gray-200);
  overflow: hidden;
}

.timeline-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.timeline-card:hover .timeline-card-image img {
  transform: scale(1.1);
}

.timeline-card-body {
  padding: 26px;
}

.timeline-card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--gray-900);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 14px;
  transition: var(--transition-bounce);
}

.timeline-card:hover .timeline-card-date {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.timeline-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
  line-height: 1.3;
}

.timeline-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.6;
}

.timeline-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.timeline-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-nav-btn:hover {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* ============ CTA ============ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatUpDown 12s ease-in-out infinite;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatUpDown 15s ease-in-out infinite reverse;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-light);
  color: var(--gray-900);
  border: none;
  padding: 18px 42px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.btn-large:hover {
  background: #ffd700;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 25px 50px rgba(255, 230, 0, 0.35);
}

/* ============ MAPA ============ */
.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 450px;
  background: var(--gray-200);
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8edf2, #d5dde5);
  color: var(--gray-700);
  font-size: 1.2rem;
  flex-direction: column;
  gap: 16px;
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary);
  animation: floatUpDown 3s ease-in-out infinite;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--gray-900);
  color: white;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand img {
  height: 55px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  transition: var(--transition-bounce);
}

.footer-brand img:hover {
  transform: scale(1.06);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  color: var(--accent-light);
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--accent-light);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.footer-col:hover h4::after {
  width: 60px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: white;
  transform: translateX(6px);
}

.footer-links a i {
  font-size: 0.7rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.82rem;
}

.footer-bottom-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 40%, var(--accent) 70%, var(--red) 100%);
  background-size: 300% 100%;
  animation: shimmer 3s linear infinite;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============ RESPONSIVO ============ */

/* Telas muito grandes (acima de 1600px) */
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .online-services-grid {
    gap: 32px;
  }
}

/* Desktop médio (1200px - 1600px) */
@media (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
}

/* Desktop pequeno / Laptop (1024px - 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
    padding: 0 24px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .online-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-grid {
    gap: 40px;
  }
}

/* Tablet / Pequeno laptop (768px - 1024px) */
@media (max-width: 1024px) {
  .header-inner {
    padding: 12px 24px;
  }
  
  .main-nav {
    gap: 0px;
  }
  
  .nav-link {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-search {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .news-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .news-featured-image {
    height: 350px;
  }
  
  .timeline-card {
    min-width: 350px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .cta-title {
    font-size: 2.4rem;
  }
  
  .accessibility-inner {
    padding: 8px 24px;
  }
}

/* Tablet pequeno / Mobile landscape (480px - 768px) */
@media (max-width: 768px) {
  /* Header */
  .header-inner {
    padding: 12px 20px;
  }
  
  .brand-text {
    display: none; /* Esconde texto da marca em mobile */
  }
  
  .brand-logo {
    height: 50px;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    border-top: 1px solid var(--gray-200);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
  }
  
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    display: none;
  }
  
  .nav-item.active-dropdown .nav-dropdown {
    display: block;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header-actions .btn-outline {
    display: none; /* Esconde botão ouvidoria em mobile */
  }
  
  .header-actions .btn-primary {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  /* Hero */
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 16px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-search {
    flex-direction: column;
    padding: 4px;
  }
  
  .hero-search input {
    padding: 14px 18px;
    text-align: center;
  }
  
  .hero-search button {
    width: 100%;
    padding: 14px;
  }
  
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
  }
  
  .highlight-card {
    padding: 20px;
    text-align: center;
  }
  
  .drone-indicator,
  .scroll-indicator {
    display: none;
  }
  
  /* Seções */
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  /* Serviços */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 28px 24px;
  }
  
  /* Estatísticas */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 40px 0;
  }
  
  .stat-card {
    padding: 24px 16px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  /* Notícias */
  .news-featured-image {
    height: 250px;
  }
  
  .news-featured-content {
    padding: 24px;
  }
  
  .news-featured-content h2 {
    font-size: 1.3rem;
  }
  
  .news-card {
    flex-direction: column;
  }
  
  .news-card-image {
    width: 100%;
    height: 180px;
  }
  
  .news-card-content {
    padding: 16px;
  }
  
  /* Serviços Online */
  .online-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .online-service-card {
    padding: 24px 16px;
  }
  
  .online-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }
  
  /* Timeline */
  .timeline-scroll {
    gap: 20px;
    padding: 20px 0 40px;
  }
  
  .timeline-card {
    min-width: 280px;
  }
  
  .timeline-card-image {
    height: 180px;
  }
  
  .timeline-card-body {
    padding: 20px;
  }
  
  .timeline-nav-buttons {
    margin-top: 0;
  }
  
  .timeline-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  /* CTA */
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .btn-large {
    padding: 14px 32px;
    font-size: 0.95rem;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links a {
    justify-content: center;
  }
  
  .footer-brand p {
    text-align: center;
  }
  
  /* Mapa */
  .map-container {
    height: 350px;
  }
  
  /* Acessibilidade */
  .accessibility-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .skip-nav {
    justify-content: center;
    gap: 16px;
  }
  
  .accessibility-tools {
    justify-content: center;
  }
}

/* Mobile médio (375px - 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .header-inner {
    padding: 10px 16px;
  }
  
  .brand-logo {
    height: 45px;
  }
  
  .header-actions .btn-primary {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-label {
    font-size: 0.7rem;
    padding: 6px 16px;
  }
  
  .service-card h3 {
    font-size: 1rem;
  }
  
  .service-card p {
    font-size: 0.85rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .online-services-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-card {
    min-width: 260px;
  }
  
  .news-featured-badge {
    padding: 6px 12px;
    font-size: 0.7rem;
    top: 16px;
    left: 16px;
  }
  
  .sidebar-card {
    padding: 24px 20px;
  }
  
  .sidebar-links li {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    font-size: 0.75rem;
    padding: 20px 16px;
  }
  
  .modal-image {
    width: 90%;
  }
  
  .modal-box {
    padding: 24px 20px;
    margin: 16px;
  }
  
  .modal-box h2 {
    font-size: 1.2rem;
  }
}

/* Mobile pequeno (até 375px) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.4rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .btn-primary {
    padding: 6px 12px;
  }
  
  .skip-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .skip-link {
    font-size: 0.7rem;
  }
  
  .timeline-card {
    min-width: 240px;
  }
}

/* Orientação landscape (mobile deitado) */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }
  
  .hero-content {
    gap: 30px;
  }
  
  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .timeline-card {
    min-width: 300px;
  }
}

/* Telas muito pequenas (smartwatches, dispositivos ultra-compactos) */
@media (max-width: 280px) {
  .hero-title {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.1rem;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  
  .hero-search input,
  .hero-search button {
    padding: 10px;
    font-size: 0.8rem;
  }
  
  .highlight-card h3 {
    font-size: 0.9rem;
  }
}

/* Tablet em modo paisagem */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Melhorias de toque para dispositivos móveis */
@media (hover: none) and (pointer: coarse) {
  .nav-link,
  .service-card,
  .news-card,
  .online-service-card,
  .highlight-card,
  .timeline-card,
  .stat-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  .nav-link:active,
  .service-card:active,
  .news-card:active,
  .online-service-card:active {
    transform: scale(0.98);
  }
  
  button,
  .btn-primary,
  .btn-outline,
  .tool-btn,
  .contrast-toggle {
    min-height: 44px; /* Tamanho mínimo para toque (Apple guideline) */
  }
  
  .skip-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Ajustes de fonte para telas de alta densidade */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-title,
  .section-title,
  .cta-title {
    font-weight: 700;
  }
}

/* Suporte para notch e áreas seguras (iPhone X e superiores) */
@supports (padding: max(0px)) {
  .hero-content {
    padding-left: max(32px, env(safe-area-inset-left));
    padding-right: max(32px, env(safe-area-inset-right));
  }
  
  .container {
    padding-left: max(32px, env(safe-area-inset-left));
    padding-right: max(32px, env(safe-area-inset-right));
  }
  
  .header-inner {
    padding-left: max(32px, env(safe-area-inset-left));
    padding-right: max(32px, env(safe-area-inset-right));
  }
}
/* ============ ALTO CONTRASTE ============ */
.contrast-active {
  filter: invert(1) hue-rotate(180deg) saturate(1.5);
}

.contrast-active img,
.contrast-active .drone-banner-layer,
.contrast-active .drone-parallax-layer {
  filter: invert(1) hue-rotate(180deg) saturate(1.5) !important;
}

.contrast-active .hero-overlay {
  background: rgba(0, 0, 0, 0.7) !important;
}

/* ============ REDUZIR MOVIMENTO ============ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ FOCO ACESSIBILIDADE ============ */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link:focus-visible {
  outline-color: var(--accent-light);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: fadeIn 0.4s ease;
  display: none; /* Adicionado para esconder inicialmente */
}

.modal-box {
  background: white;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  max-width: 550px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: scaleIn 0.3s ease;
  position: relative;
}

.modal-image {
  width: 450px;
  margin-bottom: 10px;
}

.modal-box h2 {
  color: var(--primary);
  margin-bottom: 10px;
}

.modal-box p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gray-500);
  transition: 0.3s;
}

.modal-close:hover {
  color: var(--red);
  transform: scale(1.2);
}

#countdown {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 800;
}
/* Melhorias para a lista de notícias na home */
.news-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.news-card:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.news-card-image {
    width: 200px;
    min-height: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-card-content {
    flex: 1;
    padding: 18px 18px 18px 0;
}

.news-category {
    margin-bottom: 10px;
}

.category-badge {
    display: inline-block;
    background: var(--gray-100);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.news-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-content h4 a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.3s;
}

.news-card-content h4 a:hover {
    color: var(--primary);
}

.news-card-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.news-footer .date {
    font-size: 0.7rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.read-more {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.no-news {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    color: var(--gray-500);
}

.no-news i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

/* Responsivo */
@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
        gap: 0;
    }
    
    .news-card-image {
        width: 100%;
        height: 180px;
    }
    
    .news-card-image img {
        height: 180px;
    }
    
    .news-card-content {
        padding: 18px;
    }
    
    .news-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .news-card-image {
        height: 150px;
    }
    
    .news-card-image img {
        height: 150px;
    }
}

/* ============ ESTILOS PARA LISTA DE NOTÍCIAS ============ */

.news-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.news-card:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.news-card-image {
    width: 200px;
    min-height: 150px;
    flex-shrink: 0;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-card-content {
    flex: 1;
    padding: 18px 18px 18px 0;
}

.news-category {
    margin-bottom: 10px;
}

.category-badge {
    display: inline-block;
    background: var(--gray-100);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.news-card-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-content h4 a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color 0.3s;
}

.news-card-content h4 a:hover {
    color: var(--primary);
}

.news-card-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.news-footer .date {
    font-size: 0.7rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.read-more {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* Botão Ver todas as notícias */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline i {
    transition: transform 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(4px);
}

/* Responsivo */
@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
        gap: 0;
    }
    
    .news-card-image {
        width: 100%;
        height: 180px;
    }
    
    .news-card-image img {
        height: 180px;
    }
    
    .news-card-content {
        padding: 18px;
    }
    
    .news-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .news-card-image {
        height: 150px;
    }
    
    .news-card-image img {
        height: 150px;
    }
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

/* MAPA FUNDO */
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
}

/* SEU PLACEHOLDER POR CIMA */
.map-placeholder {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    /* FUNDO TRANSPARENTE ESCURO (efeito profissional) */
    background: rgba(0, 0, 0, 0.4);
    color: #fff;

    backdrop-filter: blur(3px);
}

/* Ícone */
.map-placeholder i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ff4d4d;
}

.background: linear-gradient(
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.3)
);

