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

/* ==========================================================================
   DESIGN TOKENS & VARIABLES (CLEAN/LIGHT THEME)
   ========================================================================== */
:root {
  --color-blue-royal: #0052CC;
  --color-magenta: #E91E8C;
  --color-gold: #FFB800;
  --color-lime: #76B900;
  --color-coral: #FF6B35;
  --color-cyan: #00A3C4;
  --color-white: #FFFFFF;
  --color-dark-bg: #F5F7FB;
  --color-dark-surface: #FFFFFF;
  --color-surface-bg: #FFFFFF;
  
  --color-text-main: #131722;
  --color-text-muted: #5C677E;
  
  --color-glass-bg: rgba(255, 255, 255, 0.8);
  --color-glass-border: rgba(0, 82, 204, 0.08);
  
  --color-header-bg: rgba(255, 255, 255, 0.8);
  --color-header-bg-scrolled: rgba(255, 255, 255, 0.95);
  --color-header-bg-mobile: rgba(255, 255, 255, 0.98);
  
  --color-video-overlay: radial-gradient(circle at center, rgba(0, 82, 204, 0.03) 0%, rgba(245, 247, 251, 0.3) 80%),
                         linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, var(--color-dark-bg) 100%);
  --color-hero-overlay: radial-gradient(circle at center, rgba(0, 82, 204, 0.05) 0%, rgba(245, 247, 251, 0.4) 80%),
                        linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, var(--color-dark-bg) 100%);
  --color-input-bg: #F9FAFC;
  --leaflet-tile-filter: none;
  
  --font-family-body: 'Plus Jakarta Sans', sans-serif;
  --font-family-title: 'Outfit', sans-serif;
  
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
  
  --container-max-width: 1200px;
}

body.dark-mode {
  --color-dark-bg: #0A0E1A;
  --color-dark-surface: #131A30;
  --color-surface-bg: #131A30;
  
  --color-text-main: #F5F7FB;
  --color-text-muted: #A0AEC0;
  
  --color-glass-bg: rgba(19, 26, 48, 0.8);
  --color-glass-border: rgba(255, 255, 255, 0.08);
  
  --color-header-bg: rgba(10, 14, 26, 0.8);
  --color-header-bg-scrolled: rgba(10, 14, 26, 0.95);
  --color-header-bg-mobile: rgba(10, 14, 26, 0.98);
  
  --color-video-overlay: radial-gradient(circle at center, rgba(0, 82, 204, 0.03) 0%, rgba(10, 14, 26, 0.4) 80%),
                         linear-gradient(to bottom, rgba(10, 14, 26, 0.2) 0%, var(--color-dark-bg) 100%);
  --color-hero-overlay: radial-gradient(circle at center, rgba(0, 82, 204, 0.05) 0%, rgba(10, 14, 26, 0.5) 80%),
                        linear-gradient(to bottom, rgba(10, 14, 26, 0.2) 0%, var(--color-dark-bg) 100%);
  
  --color-input-bg: #1A2238;
  --leaflet-tile-filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-dark-bg);
  color: var(--color-text-main);
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 82, 204, 0.2);
  border-radius: 5px;
  border: 2px solid var(--color-dark-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-blue-royal);
}

/* Typography Custom Rules */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-title);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

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

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

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

/* ==========================================================================
   STICKY HEADER NAVIGATION (LIGHT THEME)
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--color-header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  padding: 0.5rem 0;
  background: var(--color-header-bg-scrolled);
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.05);
}

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

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

.nav-brand-title {
  font-family: var(--font-family-title);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  padding: 0.5rem 0;
  position: relative;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--color-blue-royal);
}

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

.nav-cta-btn {
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--color-magenta) 0%, var(--color-blue-royal) 100%);
  color: var(--color-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 5px 15px rgba(0, 82, 204, 0.2);
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.35);
}

/* Nav actions and Theme Toggle Button */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.theme-toggle-btn {
  background: transparent;
  border: none;
  color: var(--color-text-main);
  font-size: 1.25rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
  background: rgba(0, 82, 204, 0.08);
  color: var(--color-blue-royal);
}

body.dark-mode .theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-text-main);
  cursor: pointer;
}

@media (max-width: 992px) {
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--color-header-bg-mobile);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-glass-border);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    display: none;
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.08);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
}

/* ==========================================================================
   UTILITY & HELPER CLASSES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-gradient-primary {
  background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-blue-royal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-coral) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-padding {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.glow-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border: none;
}

.glow-btn-primary {
  background: var(--color-magenta);
  color: var(--color-white);
  box-shadow: 0 5px 20px rgba(233, 30, 140, 0.3);
}

.glow-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-magenta), var(--color-blue-royal));
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.glow-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(233, 30, 140, 0.4), 0 5px 15px rgba(0, 82, 204, 0.3);
}

.glow-btn-primary:hover::after {
  opacity: 1;
}

.glow-btn-secondary {
  background: transparent;
  color: var(--color-blue-royal);
  border: 2px solid rgba(0, 82, 204, 0.2);
  backdrop-filter: blur(10px);
}

.glow-btn-secondary:hover {
  border-color: var(--color-blue-royal);
  background: var(--color-blue-royal);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.25);
}

/* Glassmorphism Card (Light Theme) */
.glass-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 82, 204, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 82, 204, 0.25);
  box-shadow: 0 25px 45px rgba(0, 82, 204, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--color-blue-royal) 0%, var(--color-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: -0.03em;
}

.section-header p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
  .section-header p {
    font-size: 1rem;
  }
}

/* ==========================================================================
   SEÇÃO 1: HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-dark-bg);
  z-index: 1;
  padding-top: 70px;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 82, 204, 0.05) 0%, rgba(245, 247, 251, 0.4) 80%),
              linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, var(--color-dark-bg) 100%);
  z-index: -2;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.hero-geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.shape {
  position: absolute;
  opacity: 0.18;
  filter: blur(1px);
  animation: floatGeometric 22s infinite linear;
}

.shape-1 {
  top: 15%;
  left: 8%;
  width: 90px;
  height: 90px;
  border: 10px solid var(--color-magenta);
  border-radius: 50%;
}

.shape-2 {
  top: 60%;
  right: 10%;
  width: 120px;
  height: 120px;
  border: 10px solid var(--color-lime);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.shape-3 {
  bottom: 15%;
  left: 12%;
  width: 70px;
  height: 70px;
  background-color: var(--color-gold);
  transform: rotate(45deg);
}

.shape-4 {
  top: 25%;
  right: 22%;
  width: 60px;
  height: 60px;
  border: 7px solid var(--color-cyan);
  border-radius: 16px;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  padding: 0 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tagline {
  font-family: var(--font-family-body);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-magenta);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.9s ease-out 0.4s forwards;
}

.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 5.25rem);
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 2rem;
  font-family: var(--font-family-title);
  letter-spacing: -0.04em;
  color: var(--color-text-main);
  opacity: 0;
  animation: fadeInUp 0.9s ease-out 0.6s forwards;
  text-shadow: 0 4px 15px rgba(0, 82, 204, 0.08);
}

.hero-subheadline {
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.9s ease-out 0.8s forwards;
}

.hero-description {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--color-text-muted);
  max-width: 800px;
  margin-bottom: 3.5rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 0.9s ease-out 1s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s ease-out 1.2s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGeometric {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-60px) rotate(180deg) scale(1.15);
  }
  100% {
    transform: translateY(0) rotate(360deg) scale(1);
  }
}

/* ==========================================================================
   SEÇÃO 2: POR QUE JUAZEIRO 2027?
   ========================================================================== */
.why-juazeiro {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.08) 0%, rgba(0, 163, 196, 0.03) 50%, rgba(255, 255, 255, 0.8) 100%);
}

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

.why-card {
  border-top: 6px solid var(--color-blue-royal);
  background: var(--color-surface-bg);
}

.why-card:nth-child(even) {
  border-top: 6px solid var(--color-magenta);
}

.why-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-card:nth-child(odd) .why-icon {
  background: rgba(0, 82, 204, 0.08);
  color: var(--color-blue-royal);
  box-shadow: 0 5px 15px rgba(0, 82, 204, 0.1);
}

.why-card:nth-child(even) .why-icon {
  background: rgba(233, 30, 140, 0.08);
  color: var(--color-magenta);
  box-shadow: 0 5px 15px rgba(233, 30, 140, 0.15);
}

.why-card h3 {
  font-size: 1.65rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.why-card p {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ==========================================================================
   SEÇÃO 3: NÚMEROS QUE COMPROVAM (LIGHT THEME)
   ========================================================================== */
.stats {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.06) 0%, rgba(255, 255, 255, 0.8) 100%);
  position: relative;
  border-top: 1px solid rgba(0, 82, 204, 0.06);
  border-bottom: 1px solid rgba(0, 82, 204, 0.06);
}

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

.stats-category {
  padding: 3rem 2.5rem;
  border-radius: 28px;
  background: rgba(0, 82, 204, 0.02);
  border: 1px solid rgba(0, 82, 204, 0.05);
}

.category-title {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  color: var(--color-blue-royal);
  border-left: 4px solid var(--color-blue-royal);
  padding-left: 12px;
}

.stats-item {
  margin-bottom: 2.5rem;
}

.stats-item:last-child {
  margin-bottom: 0;
}

.stats-number {
  font-family: var(--font-family-title);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  letter-spacing: -0.04em;
}

.stats-item:nth-child(1) .stats-number { color: var(--color-magenta); }
.stats-item:nth-child(2) .stats-number { color: var(--color-blue-royal); }
.stats-item:nth-child(3) .stats-number { color: var(--color-lime); }

.stats-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SEÇÃO 4: INCLUSÃO E RESPONSABILIDADE (LIGHT OVERLAY)
   ========================================================================== */
.responsibility {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 247, 251, 0.95) 100%),
              url('trio2.png') center/cover no-repeat fixed;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.resp-card {
  background: var(--color-surface-bg);
  border: 1px solid rgba(0, 82, 204, 0.08);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.04);
  transition: var(--transition-slow);
}
.resp-card:nth-child(1) { border-top: 5px solid var(--color-magenta); }
.resp-card:nth-child(2) { border-top: 5px solid var(--color-blue-royal); }
.resp-card:nth-child(3) { border-top: 5px solid var(--color-coral); }
.resp-card:nth-child(4) { border-top: 5px solid var(--color-lime); }

.resp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.1);
  border-color: rgba(0, 82, 204, 0.2);
}

.resp-icon {
  font-size: 2.5rem;
  margin-bottom: 1.75rem;
  display: inline-flex;
  background: rgba(0, 82, 204, 0.05);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.resp-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--color-blue-royal);
  letter-spacing: -0.02em;
}

.resp-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.responsibility-footer {
  margin-top: 5rem;
  text-align: center;
  font-family: var(--font-family-title);
  font-size: 2.1rem;
  line-height: 1.3;
  color: var(--color-text-main);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .responsibility-footer {
    font-size: 1.45rem;
  }
}

/* ==========================================================================
   SEÇÃO 5: VÍDEOS EM DESTAQUE (FULL BACKGROUND VIDEO)
   ========================================================================== */
.featured-video {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 8rem;
  border-top: 1px solid rgba(0, 82, 204, 0.04);
}

.featured-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  z-index: -2;
}

.featured-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-video-overlay);
  z-index: -1;
  transition: var(--transition-smooth);
}

.featured-video-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-controls-overlay {
  background: var(--color-glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--color-glass-border);
  border-radius: 24px;
  padding: 2rem 2.5rem;
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 15px 35px rgba(0, 82, 204, 0.06);
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .video-controls-overlay {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

.video-main-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.video-audio-control {
  position: relative;
  background: var(--color-magenta);
  color: var(--color-white);
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.video-audio-control:hover {
  background: var(--color-blue-royal);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 82, 204, 0.4);
}
.video-audio-control i {
  font-size: 1rem;
}

.video-carousel-container {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 1rem;
  position: relative;
}

.video-carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.video-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  will-change: transform;
  padding: 0.5rem;
}

.video-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--color-surface-bg);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.04);
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .video-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 480px) {
  .video-card {
    flex: 0 0 100%;
  }
}

.video-card.active {
  border-color: var(--color-magenta);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(233, 30, 140, 0.15);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 82, 204, 0.08);
}

.video-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.08);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 82, 204, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.video-card:hover .play-overlay,
.video-card.active .play-overlay {
  opacity: 1;
}

.video-card.active .play-overlay {
  background: rgba(233, 30, 140, 0.4);
}

.video-card h4 {
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-main);
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-control {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-surface-bg);
  border: 1px solid rgba(0, 82, 204, 0.08);
  color: var(--color-blue-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
  flex-shrink: 0;
  z-index: 5;
}

.carousel-control:hover {
  background: var(--color-blue-royal);
  color: #fff;
  transform: scale(1.05);
}

/* ==========================================================================
   SEÇÃO 6: PLAYER DE ÁUDIO - VINHETA
   ========================================================================== */
.audio-section {
  background: radial-gradient(circle at 80% 50%, rgba(255, 184, 0, 0.05) 0%, transparent 40%),
              var(--color-dark-bg);
}

.audio-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
}

@media (max-width: 992px) {
  .audio-layout {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
}

.audio-text {
  flex: 1.2;
}

.audio-text h2 {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-main);
}

.audio-player-container {
  flex: 0.8;
  width: 100%;
  max-width: 480px;
}

.custom-audio-player {
  background: var(--color-surface-bg);
  border: 2px solid var(--color-gold);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 20px 45px rgba(0, 82, 204, 0.06);
  transition: var(--transition-smooth);
}

.custom-audio-player:hover {
  border-color: var(--color-magenta);
  box-shadow: 0 20px 45px rgba(0, 82, 204, 0.1);
}

.audio-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.audio-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 184, 0, 0.08);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition-smooth);
}

.custom-audio-player:hover .audio-icon-wrapper {
  background: rgba(233, 30, 140, 0.08);
  color: var(--color-magenta);
}

.audio-info h4 {
  font-size: 1.2rem;
  color: var(--color-text-main);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.audio-info p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.audio-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 184, 0, 0.25);
}

.audio-play-btn:hover {
  background: var(--color-magenta);
  color: var(--color-white);
  transform: scale(1.08);
  box-shadow: 0 5px 20px rgba(233, 30, 140, 0.3);
}

.audio-progress-container {
  flex-grow: 1;
}

.audio-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(0, 82, 204, 0.08);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  margin-bottom: 0.65rem;
}

.audio-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-magenta) 100%);
  border-radius: 3px;
  width: 0%;
  position: relative;
}

.audio-time {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Audio Equalizer visualizer mockup */
.audio-visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 35px;
  width: 100%;
  gap: 4px;
}

.eq-bar {
  width: 100%;
  height: 4px;
  background: rgba(0, 82, 204, 0.08);
  border-radius: 2px;
  transition: height 0.1s ease;
}

.custom-audio-player.playing .eq-bar {
  background: linear-gradient(to top, var(--color-magenta), var(--color-gold));
  animation: equalize 1.2s infinite ease-in-out alternate;
}

.custom-audio-player.playing .eq-bar:nth-child(2)  { animation-delay: 0.15s; }
.custom-audio-player.playing .eq-bar:nth-child(3)  { animation-delay: 0.4s; }
.custom-audio-player.playing .eq-bar:nth-child(4)  { animation-delay: 0.25s; }
.custom-audio-player.playing .eq-bar:nth-child(5)  { animation-delay: 0.5s; }
.custom-audio-player.playing .eq-bar:nth-child(6)  { animation-delay: 0.3s; }
.custom-audio-player.playing .eq-bar:nth-child(7)  { animation-delay: 0.6s; }
.custom-audio-player.playing .eq-bar:nth-child(8)  { animation-delay: 0.1s; }
.custom-audio-player.playing .eq-bar:nth-child(9)  { animation-delay: 0.45s; }
.custom-audio-player.playing .eq-bar:nth-child(10) { animation-delay: 0.2s; }

@keyframes equalize {
  0% { height: 4px; }
  100% { height: 35px; }
}

/* ==========================================================================
   SEÇÃO 7: ATRAÇÕES CONFIRMADAS
   ========================================================================== */
.attractions {
  background: linear-gradient(180deg, var(--color-dark-bg) 0%, #FFFFFF 100%);
}

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

@media (min-width: 992px) {
  .attractions-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .attractions-grid .attraction-card {
    grid-column: span 2;
  }
}

.attraction-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  border: 1px solid rgba(0, 82, 204, 0.08);
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.04);
  transition: var(--transition-slow);
}

.attraction-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.attraction-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.3) 55%,
    rgba(0, 82, 204, 0.85) 100%);
  z-index: 1;
  transition: var(--transition-smooth);
  opacity: 0.88;
}

.attraction-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.attraction-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 2rem;
  z-index: 2;
  transition: var(--transition-smooth);
}

.attraction-info h3 {
  font-size: 1.9rem;
  color: var(--color-white);
  margin-bottom: 0.35rem;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  letter-spacing: -0.02em;
}

.attraction-info p {
  font-size: 0.88rem;
  color: var(--color-gold);
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  opacity: 0;
}

/* Hover effects */
.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 82, 204, 0.15);
  border-color: var(--color-blue-royal);
}

.attraction-card:hover .attraction-img {
  transform: scale(1.12);
}

.attraction-card:hover .attraction-img-wrapper::after {
  opacity: 1;
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 0.1) 0%,
    rgba(233, 30, 140, 0.35) 45%,
    rgba(0, 82, 204, 0.9) 100%);
}

.attraction-card:hover .attraction-info h3 {
  transform: translateY(0);
}

.attraction-card:hover .attraction-info p {
  transform: translateY(0);
  opacity: 1;
}

/* Highlighting Ivete in the Center (Special styling class) */
.attraction-card.highlighted {
  border: 3px solid var(--color-magenta);
  box-shadow: 0 15px 35px rgba(233, 30, 140, 0.15);
  transform: scale(1.03);
}

.attraction-card.highlighted::before {
  content: 'ESTRELA DO CARNAVAL';
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-magenta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  z-index: 10;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(233, 30, 140, 0.3);
}

/* ==========================================================================
   SEÇÃO 8: MAPA DO PERCURSO
   ========================================================================== */
.map-section {
  background-color: var(--color-white);
  border-top: 1px solid rgba(0, 82, 204, 0.04);
}

.map-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

#map {
  width: 100%;
  height: 550px;
  border-radius: 28px;
  border: 2px solid rgba(0, 82, 204, 0.08);
  box-shadow: 0 20px 45px rgba(0, 82, 204, 0.05);
  z-index: 10;
}

@media (max-width: 768px) {
  #map {
    height: 380px;
  }
}

.map-legend {
  background: var(--color-dark-bg);
  border: 1px solid rgba(0, 82, 204, 0.06);
  border-radius: 24px;
  padding: 2rem;
}

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

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.legend-color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

/* Leaflet maps custom glow overrides (Light Theme) */
.leaflet-container {
  background: var(--color-dark-bg) !important;
}

.leaflet-bar {
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

.leaflet-bar a {
  background-color: var(--color-white) !important;
  color: var(--color-text-main) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.leaflet-bar a:hover {
  background-color: var(--color-blue-royal) !important;
  color: var(--color-white) !important;
}

.leaflet-popup-content-wrapper {
  background: var(--color-white) !important;
  color: var(--color-text-main) !important;
  border: 1px solid rgba(0, 82, 204, 0.08) !important;
  border-radius: 16px !important;
  padding: 0.25rem !important;
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.08) !important;
}

.leaflet-popup-tip {
  background: var(--color-white) !important;
}

.map-popup h4 {
  font-family: var(--font-family-title);
  color: var(--color-blue-royal);
  margin-bottom: 6px;
  font-size: 1rem;
}

.map-popup p {
  font-size: 0.85rem;
  font-family: var(--font-family-body);
  line-height: 1.4;
  color: var(--color-text-muted);
}

/* ==========================================================================
   SEÇÃO 9: PERFIL DO PÚBLICO
   ========================================================================== */
.audience {
  background: radial-gradient(circle at 85% 20%, rgba(118, 185, 0, 0.06) 0%, transparent 45%),
              radial-gradient(circle at 15% 80%, rgba(0, 82, 204, 0.08) 0%, transparent 45%);
}

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

.audience-card {
  border-top: 6px solid var(--color-blue-royal);
  background: var(--color-surface-bg);
}

.audience-card:nth-child(even) {
  border-top: 6px solid var(--color-lime);
}

.audience-card h3 {
  font-size: 1.65rem;
  margin-bottom: 1.75rem;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.audience-stat {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-blue-royal);
  margin-bottom: 1.25rem;
  font-family: var(--font-family-title);
  letter-spacing: -0.03em;
}

.audience-list {
  list-style: none;
}

.audience-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.95rem;
  font-size: 0.98rem;
  color: var(--color-text-muted);
}

.audience-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-lime);
  font-size: 0.9rem;
}

.audience-card:nth-child(odd) .audience-list li::before {
  color: var(--color-blue-royal);
}

/* ==========================================================================
   SEÇÃO 10: COTAS DE PATROCÍNIO 2027
   ========================================================================== */
.sponsorship {
  background: linear-gradient(135deg, rgba(0, 163, 196, 0.06) 0%, rgba(0, 82, 204, 0.03) 100%);
}

.sponsorship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.cota-card {
  position: relative;
  background: var(--color-surface-bg);
  border: 1px solid rgba(0, 82, 204, 0.08);
  border-radius: 28px;
  padding: 3.5rem 2.25rem 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 82, 204, 0.03);
  transition: var(--transition-slow);
}

/* Glowing border hover system */
.cota-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  pointer-events: none;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

/* Highlighted state */
.cota-card.cota-diamante {
  border: 2px solid var(--color-magenta);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(233, 30, 140, 0.15);
}

.cota-card.cota-diamante::before {
  content: 'EXCLUSIVO';
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-magenta);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  letter-spacing: 0.08em;
}

.cota-badge {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.cota-diamante .cota-badge { color: var(--color-magenta); }
.cota-ouro .cota-badge { color: var(--color-gold); }
.cota-prata .cota-badge { color: var(--color-cyan); }
.cota-bronze .cota-badge { color: var(--color-coral); }

.cota-title {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
  color: var(--color-text-main);
  letter-spacing: -0.03em;
}

.cota-price {
  font-family: var(--font-family-title);
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--color-blue-royal);
  letter-spacing: -0.02em;
}

.cota-availability {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.cota-benefits {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.cota-benefits li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.95rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cota-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 900;
}

.cota-diamante .cota-benefits li::before { color: var(--color-magenta); }
.cota-ouro .cota-benefits li::before { color: var(--color-gold); }
.cota-prata .cota-benefits li::before { color: var(--color-cyan); }
.cota-bronze .cota-benefits li::before { color: var(--color-coral); }

.cota-btn {
  width: 100%;
  padding: 1.1rem;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cota-diamante .cota-btn {
  background: var(--color-magenta);
  color: var(--color-white);
  box-shadow: 0 5px 15px rgba(233, 30, 140, 0.2);
}
.cota-diamante .cota-btn:hover {
  background: var(--color-blue-royal);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(0, 82, 204, 0.35);
}

.cota-ouro .cota-btn {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 5px 15px rgba(255, 184, 0, 0.2);
}
.cota-ouro .cota-btn:hover {
  background: var(--color-blue-royal);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
}

.cota-prata .cota-btn {
  background: var(--color-cyan);
  color: var(--color-white);
  box-shadow: 0 5px 15px rgba(0, 163, 196, 0.2);
}
.cota-prata .cota-btn:hover {
  background: var(--color-blue-royal);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
}

.cota-bronze .cota-btn {
  background: var(--color-coral);
  color: var(--color-white);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}
.cota-bronze .cota-btn:hover {
  background: var(--color-blue-royal);
  color: var(--color-white);
  box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
}

/* Hover scales for all cota cards */
.cota-card:hover {
  transform: translateY(-8px);
}
.cota-card.cota-diamante:hover {
  transform: translateY(-15px);
}

.cota-card:hover::after {
  border-color: rgba(0, 82, 204, 0.15);
}

.cota-card.cota-diamante:hover::after {
  border-color: var(--color-magenta);
}

/* ==========================================================================
   SEÇÃO 11: CALL-TO-ACTION FINAL
   ========================================================================== */
.final-cta {
  position: relative;
  background-color: var(--color-blue-royal);
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(233, 30, 140, 0.3) 0%, transparent 65%),
              linear-gradient(135deg, rgba(0, 82, 204, 0.5) 0%, rgba(0, 36, 122, 0.8) 100%);
  z-index: -1;
  pointer-events: none;
}

.cta-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.cta-content h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.cta-large-btn {
  padding: 1.35rem 4rem;
  font-size: 1.15rem;
  background-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 5px 25px rgba(255, 184, 0, 0.35);
}

.cta-large-btn:hover {
  background-color: var(--color-white);
  color: var(--color-blue-royal);
  box-shadow: 0 5px 30px rgba(255, 255, 255, 0.4);
  transform: scale(1.06);
}

.contact-channels {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.98rem;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-link:hover {
  background: var(--color-white);
  color: var(--color-blue-royal);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   SEÇÃO 12: FOOTER (LIGHT FOOTER)
   ========================================================================== */
.main-footer {
  background-color: var(--color-surface-bg);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(0, 82, 204, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }
}

.footer-info {
  max-width: 420px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-brand-title {
  font-size: 1.35rem;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.footer-info p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-dates h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--color-blue-royal);
}

.footer-dates p {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: -0.01em;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--color-magenta);
}

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

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 82, 204, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-blue-royal);
  border: 1px solid rgba(0, 82, 204, 0.08);
}

.social-icon:hover {
  background: var(--color-magenta);
  color: var(--color-white);
  border-color: var(--color-magenta);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.35);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 82, 204, 0.08);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   INTERACTIVE MODAL (LIGHT THEME)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 23, 34, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--color-surface-bg);
  border: 2px solid var(--color-blue-royal);
  border-radius: 28px;
  width: 90%;
  max-width: 580px;
  padding: 3.5rem;
  position: relative;
  transform: scale(0.85);
  transition: var(--transition-smooth);
  box-shadow: 0 30px 60px rgba(0, 82, 204, 0.15);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-text-main);
  transform: scale(1.15);
}

.modal-content h3 {
  font-size: 2rem;
  margin-bottom: 0.65rem;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.modal-content p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-main);
}

.form-control {
  background: var(--color-input-bg);
  border: 1px solid rgba(0, 82, 204, 0.15);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  color: var(--color-text-main);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-magenta);
  background: var(--color-surface-bg);
  box-shadow: 0 0 12px rgba(233, 30, 140, 0.15);
}

.modal-submit-btn {
  background: linear-gradient(90deg, var(--color-magenta) 0%, var(--color-blue-royal) 100%);
  color: var(--color-white);
  border: none;
  padding: 1.1rem;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 1.25rem;
  letter-spacing: 0.05em;
  box-shadow: 0 5px 15px rgba(0, 82, 204, 0.2);
}

.modal-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 82, 204, 0.35);
}

/* ==========================================================================
   SCROLL INTERSECTION EFFECTS (JS ACTIVATED)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   DARK MODE OVERRIDES & VIDEO PLAYING EFFECTS
   ========================================================================== */
body.dark-mode .why-juazeiro {
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.15) 0%, rgba(0, 163, 196, 0.05) 50%, #0A0E1A 100%);
}

body.dark-mode .stats {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.12) 0%, #0A0E1A 100%);
}

body.dark-mode .responsibility {
  background: linear-gradient(135deg, rgba(10, 14, 26, 0.9) 0%, rgba(19, 26, 48, 0.95) 100%),
              url('trio2.png') center/cover no-repeat fixed;
}

body.dark-mode .attractions {
  background: linear-gradient(180deg, var(--color-dark-bg) 0%, #0A0E1A 100%);
}

body.dark-mode .leaflet-container {
  filter: var(--leaflet-tile-filter);
}

body.dark-mode .leaflet-popup-content-wrapper,
body.dark-mode .leaflet-popup-tip {
  background: #131A30 !important;
  color: #F5F7FB !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.dark-mode .leaflet-bar a {
  background-color: #131A30 !important;
  color: #F5F7FB !important;
}

/* Video Section visibility optimization when video is active with sound */
.featured-video .section-header,
.featured-video .video-carousel-container {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.featured-video.playing-active .section-header {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}

.featured-video.playing-active .video-carousel-container {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}

.featured-video.playing-active .featured-video-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.featured-video.playing-active .video-controls-overlay {
  background: rgba(10, 14, 26, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.featured-video.playing-active .video-main-title {
  color: #FFFFFF;
}
