/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES (Dark Mode Biker/Trucker Aesthetic)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Color Palette - Extraída do Logótipo Oficial (Verde, Vermelho, Ouro Metálico e Bronze) */
  --bg-main: #060709;          /* Preto carvão profundo */
  --bg-surface: #0f1115;       /* Fundo de cartões/superfícies */
  --bg-surface-glass: rgba(15, 17, 21, 0.75);
  --border-glass: rgba(212, 175, 55, 0.15); /* Bordas douradas suaves */
  
  --primary: #d4af37;          /* Ouro metálico clássico do logótipo */
  --primary-hover: #b89528;
  --secondary: #bfa15f;        /* Bronze/dourado envelhecido */
  --accent-gold: #f3e5ab;      /* Ouro claro brilhante */
  
  --portuguese-green: #125c42; /* Verde oficial envelhecido do escudo */
  --portuguese-red: #9c101c;   /* Vermelho oficial profundo do escudo */
  --accent-blue: #0077b6;      /* Azul das Quinas portuguesas no escudo */
  
  --text-primary: #f5f6f8;     /* Branco suave */
  --text-secondary: #c5c7d0;   /* Cinza claro/metálico */
  --text-muted: #727682;       /* Cinza escuro para detalhes secundários */
  
  /* Layout & Spacing */
  --container-max-width: 1200px;
  --header-height: 80px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  
  /* Fonts */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.05);
  --shadow-primary: 0 0 15px rgba(212, 175, 55, 0.3);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

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

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

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

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #252836;
  border-radius: 5px;
  border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

/* Decorative Amber Line Under h2 */
h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

p {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--primary);
}

/* ==========================================================================
   LAYOUT & CONTAINER
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Section background variants */
.section-dark {
  background-color: var(--bg-main);
}

.section-alt {
  background-color: #0f1118;
}

/* ==========================================================================
   GLASSMORPHISM & CARD UTILITIES
   ========================================================================== */
.glass-card {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg-main);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn-accent:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(6, 7, 9, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: 70px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.logo span {
  color: var(--primary);
}

/* Real Logo Image Styling */
.logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-primary);
  transition: var(--transition-normal);
}

.logo-img:hover {
  transform: rotate(360deg);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--bg-main);
  box-shadow: var(--shadow-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

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

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

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 3px;
  transition: var(--transition-normal);
}

/* Hamburger animation */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--primary);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--primary);
}

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(15, 17, 21, 0.4) 0%, rgba(6, 7, 9, 1) 90%);
}

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

.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(40%) contrast(110%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6,7,9,0.3) 0%, rgba(6,7,9,0.85) 80%, rgba(6,7,9,1) 100%);
  z-index: -1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--border-glass) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.15;
  pointer-events: none;
}

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

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-title {
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-title span {
  display: block;
  font-size: 0.5em;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.hero-motto {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--text-primary);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 3rem;
  max-width: 650px;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ==========================================================================
   VALUES SECTION
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

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

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.value-card:hover .value-icon {
  background: var(--primary);
  color: var(--bg-main);
  transform: rotateY(360deg);
  box-shadow: var(--shadow-primary);
}

.value-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   ABOUT / QUEM SOMOS SECTION
   ========================================================================== */
.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.about-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.meta-item {
  border-left: 3px solid var(--primary);
  padding-left: 15px;
}

.meta-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition-normal);
  filter: grayscale(30%) contrast(110%);
}

.about-image:hover img {
  transform: scale(1.05);
  filter: grayscale(0%) contrast(100%);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6,7,9,0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.about-badge {
  background: var(--primary);
  color: var(--bg-main);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* ==========================================================================
   HIERARCHY SECTION
   ========================================================================== */
.hierarchy-image-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 10px;
}

.hierarchy-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  background-color: var(--bg-surface);
  transition: var(--transition-normal);
  aspect-ratio: 13 / 19;
}

.hierarchy-img-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.2);
}

.hierarchy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-normal);
  filter: brightness(90%) contrast(105%);
}

.hierarchy-img-wrapper:hover .hierarchy-img {
  filter: brightness(100%) contrast(100%);
  transform: scale(1.02);
}

.hierarchy-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 7, 9, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: var(--transition-normal);
}

.hierarchy-img-wrapper:hover .hierarchy-img-overlay {
  opacity: 1;
}

.hierarchy-img-overlay i {
  font-size: 2.5rem;
  color: var(--primary);
  text-shadow: var(--shadow-primary);
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.hierarchy-img-overlay span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: var(--transition-normal);
  transition-delay: 0.05s;
}

.hierarchy-img-wrapper:hover .hierarchy-img-overlay i,
.hierarchy-img-wrapper:hover .hierarchy-img-overlay span {
  transform: translateY(0);
}

/* ==========================================================================
   GALERIA SECTION
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
  background: var(--bg-surface-glass);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-main);
  box-shadow: var(--shadow-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
  filter: brightness(80%) contrast(110%);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 7, 9, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: translateY(20px);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-primary);
}

.gallery-item-title {
  margin-top: 15px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
  transform: translateY(20px);
  transition: var(--transition-normal);
  transition-delay: 0.05s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item-icon,
.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 7, 9, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}

.lightbox-content img, .lightbox-content video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 2rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-display);
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ==========================================================================
   EVENTOS / CALENDÁRIO SECTION
   ========================================================================== */
.events-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .events-wrapper {
    grid-template-columns: 1fr;
  }
}

.calendar-widget {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-md);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 15px;
}

.calendar-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: var(--text-primary);
}

.calendar-nav-btn {
  background: rgba(255,255,255,0.05);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-secondary);
}

.calendar-nav-btn:hover {
  background: var(--primary);
  color: var(--bg-main);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.calendar-day:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary);
}

.calendar-day.empty {
  cursor: default;
}

.calendar-day.empty:hover {
  background: none;
}

.calendar-day.active {
  background: var(--primary);
  color: var(--bg-main);
  font-weight: 700;
  box-shadow: var(--shadow-primary);
}

.calendar-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 5px;
  height: 5px;
  background: var(--secondary);
  border-radius: 50%;
}

.calendar-day.active.has-event::after {
  background: var(--bg-main);
}

/* Event List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card {
  display: flex;
  gap: 25px;
  background: var(--bg-surface-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.event-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.event-date-box {
  width: 90px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg-main);
  padding: 15px;
  text-align: center;
  flex-shrink: 0;
}

.event-day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.event-month {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.event-details {
  padding: 20px 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-meta i {
  color: var(--primary);
}

.event-description {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER & CONTACTS
   ========================================================================== */
.footer {
  background: #040507;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

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

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

.footer-col h4 {
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  position: relative;
}

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

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--primary);
  color: var(--bg-main);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
  transform: translateY(-3px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.zello-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffbf00;
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-top: 10px;
  box-shadow: var(--shadow-sm);
}

.zello-badge:hover {
  background: #fff;
  color: #000;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ==========================================================================
   SCROLL REVEAL / INTERSECTION OBSERVER ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

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

/* ==========================================================================
   VÍDEO DE APRESENTAÇÃO SECTION
   ========================================================================== */
.video-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 10px;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  background-color: var(--bg-surface);
  transition: var(--transition-normal);
  aspect-ratio: 16 / 9;
}

.video-wrapper:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.2);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-normal);
  filter: brightness(75%) contrast(100%);
}

.video-wrapper:hover .video-thumbnail {
  filter: brightness(85%) contrast(95%);
  transform: scale(1.01);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bg-main);
  box-shadow: var(--shadow-primary);
  transition: var(--transition-normal);
  z-index: 2;
}

.video-wrapper:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
  background: var(--accent-gold);
}

.video-play-btn i {
  margin-left: 6px;
}

.video-duration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(6, 7, 9, 0.85);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-glass);
}
