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

:root {
  --cyan: #00f5ff;
  --purple: #bf00ff;
  --green: #00ff88;
  --dark: #050508;
  --dark2: #0d0d14;
  --dark3: #12121e;
  --card: #0f0f1a;
  --border: rgba(0, 245, 255, 0.15);
  --text: #c8d0e0;
  --text-dim: #6b7280;
  --white: #ffffff;
  --font-title: 'Orbitron', monospace;
  --font-body: 'Rajdhani', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

#stormCursorCanvas {
  position: fixed;
  inset: 0;
  z-index: 2500;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark2);
}
::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 3px;
}

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--cyan);
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 3rem;
}

.highlight {
  color: var(--cyan);
  text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* =============================================
   SECTION SPACING
   ============================================= */
.section {
  padding: 100px 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan);
  color: var(--dark);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}
.btn-primary:hover {
  background: transparent;
  color: var(--cyan);
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

/* =============================================
   HEADER
   ============================================= */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4vw;
  max-width: 1300px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.5));
}
.logo-text {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-list a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: var(--transition);
}
.nav-list a:hover {
  color: var(--cyan);
}
.nav-list a:hover::after {
  width: 100%;
}
.nav-list a.is-active,
.mobile-link.is-active {
  color: var(--cyan);
}
.nav-list a.is-active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  background: rgba(5, 5, 8, 0.98);
  border-bottom: 1px solid var(--border);
}
.mobile-nav ul {
  list-style: none;
  padding: 1rem 4vw 1.5rem;
}
.mobile-nav li {
  border-bottom: 1px solid var(--border);
}
.mobile-link {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  transition: var(--transition);
}
.mobile-link:hover {
  color: var(--cyan);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.92;
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.01);
  transition: opacity 0.5s ease, transform 8s ease;
}
.hero:hover .hero-bg {
  opacity: 0.95;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.22) 0%,
    rgba(5, 5, 8, 0.18) 44%,
    rgba(5, 5, 8, 0.68) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.76) 0%, rgba(5, 5, 8, 0.25) 30%, transparent 62%),
    radial-gradient(circle at 16% 78%, rgba(0, 245, 255, 0.08) 0%, transparent 26%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(160px, auto) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 1.15rem;
  width: min(1280px, 88vw);
  max-width: none;
  margin: 0 auto;
  padding: 0 0 4.25rem;
  animation: fadeSlideUp 1s ease forwards;
}

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

.hero-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0;
  opacity: 0.9;
  line-height: 1.45;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 0;
  text-shadow: 0 0 22px rgba(0, 245, 255, 0.24);
}

.hero-word {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(0.68rem, 1.1vw, 0.86rem);
  font-weight: 400;
  color: var(--cyan);
  letter-spacing: 2.8px;
  display: block;
  text-shadow: 0 0 14px rgba(0, 245, 255, 0.34);
}

.hero-desc {
  font-size: 0.82rem;
  color: var(--text);
  max-width: 310px;
  margin: 0;
  line-height: 1.4;
}

.hero-btns {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.hero-btns .btn {
  padding: 0.56rem 1rem;
  font-size: 0.76rem;
}

.hero-scroll {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(0, 245, 255, 0.28);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(0, 245, 255, 0.8);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.sobre::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191, 0, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.sobre-img-wrap {
  position: relative;
}
.sobre-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  filter: saturate(1.1) contrast(1.05);
}
.sobre-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(0, 245, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.sobre-text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.sobre-text strong {
  color: var(--cyan);
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* =============================================
   PRODUTOS
   ============================================= */
.produtos {
  background: var(--dark);
  position: relative;
}
.produtos::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(0, 245, 255, 0.4);
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 245, 255, 0.1);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
}
.product-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--cyan);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.product-info {
  padding: 1.25rem;
}
.product-info h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.product-info p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.product-price {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--green);
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 15, 26, 0.74);
  color: var(--text-dim);
  text-align: center;
  font-weight: 700;
}

.product-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: -2.25rem 0 4rem;
  padding: 0.85rem;
  border: 1px solid rgba(0, 245, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(15, 15, 26, 0.7);
}

.product-pagination[hidden] {
  display: none;
}

.product-pagination-status {
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-pagination-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.product-page-btn {
  min-width: 42px;
  min-height: 38px;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(0, 245, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: var(--transition);
}

.product-page-btn:hover:not(:disabled),
.product-page-btn.is-active {
  border-color: var(--cyan);
  background: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.24);
}

.product-page-btn:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

/* Showcase */
.produtos-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.showcase-text h3 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}
.showcase-text p {
  color: var(--text);
  line-height: 1.7;
}

/* =============================================
   GALERIA
   ============================================= */
.gallery-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(191, 0, 255, 0.06), transparent 30%),
    radial-gradient(circle at 18% 28%, rgba(0, 245, 255, 0.06), transparent 28%),
    var(--dark);
  min-height: 100vh;
}

.gallery-intro {
  padding: 145px 0 36px;
  border-bottom: 1px solid rgba(0, 245, 255, 0.08);
}

.gallery-intro-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.gallery-intro .section-desc {
  margin-bottom: 0;
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.gallery-filter {
  border: 1px solid rgba(0, 245, 255, 0.32);
  background: rgba(5, 5, 8, 0.72);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.is-active {
  background: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.25);
}

.gallery-section {
  padding: 42px 0 105px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 235px;
  gap: 1rem;
}

.gallery-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 15, 26, 0.74);
  color: var(--text-dim);
  text-align: center;
  font-weight: 700;
}

.gallery-item {
  position: relative;
  border: 1px solid rgba(0, 245, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  min-height: 0;
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.gallery-item:hover {
  border-color: rgba(0, 245, 255, 0.42);
  transform: translateY(-4px);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-photo {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-item:hover .gallery-photo img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 8, 0.88) 100%);
  pointer-events: none;
}

.gallery-item figcaption span {
  max-width: 100%;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.gallery-item figcaption strong {
  max-width: 100%;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  overflow-wrap: anywhere;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(14px);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox img {
  max-width: min(1040px, 92vw);
  max-height: 78vh;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 245, 255, 0.2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
  object-fit: contain;
}

.gallery-lightbox p {
  position: absolute;
  left: 5vw;
  bottom: 4vw;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 245, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(5, 5, 8, 0.72);
  color: var(--cyan);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--cyan);
  color: var(--dark);
}

body.lightbox-open {
  overflow: hidden;
}

/* =============================================
   EVENTOS
   ============================================= */
.events-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 255, 136, 0.06), transparent 28%),
    radial-gradient(circle at 18% 22%, rgba(0, 245, 255, 0.07), transparent 30%),
    var(--dark);
}

.events-intro {
  position: relative;
  overflow: hidden;
  padding: 145px 0 42px;
  border-bottom: 1px solid rgba(0, 245, 255, 0.08);
}

.events-intro-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.95), rgba(5, 5, 8, 0.72)),
    url('img/capa.jpeg') center/cover;
  opacity: 0.45;
}

.events-intro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.events-intro .section-desc {
  margin-bottom: 0;
}

.event-filters {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.event-filter {
  border: 1px solid rgba(0, 245, 255, 0.32);
  background: rgba(5, 5, 8, 0.72);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.55rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.event-filter:hover,
.event-filter.is-active {
  background: var(--cyan);
  color: var(--dark);
  box-shadow: 0 0 22px rgba(0, 245, 255, 0.25);
}

.events-section {
  padding: 42px 0 105px;
}

.events-grid {
  display: grid;
  gap: 1.25rem;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.08), transparent 34%),
    rgba(15, 15, 26, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transition: var(--transition);
}

.event-card:hover {
  border-color: rgba(0, 245, 255, 0.42);
  transform: translateY(-3px);
}

.event-media {
  position: relative;
  min-height: 240px;
  background: var(--dark2);
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 5, 8, 0.62));
}

.event-status {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(0, 245, 255, 0.24);
  border-radius: 999px;
  background: rgba(5, 5, 8, 0.78);
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.event-status.aberto {
  border-color: rgba(0, 255, 136, 0.35);
  color: var(--green);
}

.event-status.em-planejamento {
  border-color: rgba(245, 158, 11, 0.38);
  color: #ffd796;
}

.event-status.encerrado {
  border-color: rgba(251, 113, 133, 0.42);
  color: #ffc3cd;
}

.event-body {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.15rem, 2.4vw, 1.75rem);
}

.event-date {
  display: grid;
  place-items: center;
  align-self: start;
  min-height: 96px;
  border: 1px solid rgba(0, 245, 255, 0.28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(0, 245, 255, 0.16), rgba(0, 245, 255, 0.06));
  box-shadow: inset 0 0 24px rgba(0, 245, 255, 0.08);
}

.event-date strong {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1;
}

.event-date span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.event-copy {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  min-width: 0;
}

.event-copy h2 {
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.18;
}

.event-copy p {
  color: var(--text-dim);
  max-width: 720px;
  line-height: 1.75;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.event-meta span {
  display: grid;
  align-content: center;
  gap: 0.18rem;
  min-height: 58px;
  min-width: 0;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(0, 245, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.event-meta small {
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.event-admission.entrada-franca {
  border-color: rgba(0, 255, 136, 0.34);
  background: rgba(0, 255, 136, 0.08);
}

.event-admission.entrada-franca small {
  color: var(--green);
}

.event-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 0.1rem;
}

.event-actions .btn {
  justify-self: start;
}

.events-empty {
  display: grid;
  gap: 0.35rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 15, 26, 0.74);
  color: var(--text-dim);
  text-align: center;
}

.events-empty strong {
  color: var(--white);
  font-family: var(--font-title);
}

/* =============================================
   PATROCINADORES
   ============================================= */
.sponsors-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 12%, rgba(191, 0, 255, 0.07), transparent 28%),
    radial-gradient(circle at 16% 22%, rgba(0, 245, 255, 0.08), transparent 30%),
    var(--dark);
}

.sponsors-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 245, 255, 0.08);
}

.sponsors-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 245, 255, 0.11), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(191, 0, 255, 0.08), transparent 32%),
    linear-gradient(135deg, #050508 0%, #070a12 54%, #050508 100%);
  opacity: 1;
}

.sponsors-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.sponsors-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(300px, 430px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  justify-content: space-between;
  padding: 128px 0 72px;
}

.sponsors-hero-copy,
.sponsors-signal-card {
  min-width: 0;
}

.sponsors-hero-copy .section-title {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.4vw, 4.05rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.sponsors-hero-copy .section-desc {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--text);
}

.sponsors-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.sponsors-hero-actions .btn {
  justify-content: center;
  min-width: 138px;
}

.sponsors-signal-card {
  display: grid;
  gap: 0.65rem;
  width: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(15, 15, 26, 0.78);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.7);
}

.sponsors-signal-card p {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sponsors-signal-card strong {
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.sponsors-signal-card span:last-child {
  color: var(--text-dim);
  font-weight: 700;
}

.sponsors-section,
.current-sponsors-section {
  background: var(--dark);
}

.sponsor-plans-section,
.sponsor-contact-section {
  background: var(--dark2);
}

.sponsor-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.current-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.sponsor-benefit,
.sponsor-card,
.sponsor-tier,
.sponsor-contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(15, 15, 26, 0.82);
  transition: var(--transition);
}

.sponsor-benefit,
.sponsor-card {
  min-height: 220px;
  padding: 1.5rem;
}

.sponsor-benefit:hover,
.sponsor-card:hover,
.sponsor-tier:hover,
.sponsor-contact-card:hover {
  border-color: rgba(0, 245, 255, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
}

.sponsor-benefit span {
  color: var(--cyan);
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 900;
}

.sponsor-benefit h3,
.sponsor-card h3,
.sponsor-tier h3,
.sponsor-contact-card h3 {
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.25;
}

.sponsor-benefit h3 {
  margin: 1rem 0 0.75rem;
  font-size: 1rem;
}

.sponsor-benefit p,
.sponsor-card p,
.sponsor-tier li,
.sponsor-contact-card p {
  color: var(--text-dim);
  font-weight: 600;
}

.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.sponsor-tier {
  position: relative;
  min-height: 360px;
  padding: 1.6rem;
  overflow: hidden;
}

.sponsor-tier::before {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 245, 255, 0.45);
}

.sponsor-tier-featured {
  border-color: rgba(0, 245, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(0, 245, 255, 0.12), rgba(15, 15, 26, 0.9)),
    rgba(15, 15, 26, 0.86);
}

.sponsor-tier p {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sponsor-tier h3 {
  margin: 0.65rem 0 1.25rem;
  font-size: 1.35rem;
}

.sponsor-tier ul {
  display: grid;
  gap: 0.8rem;
  list-style: none;
}

.sponsor-tier li {
  position: relative;
  padding-left: 1.15rem;
}

.sponsor-tier li::before {
  content: '';
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.sponsor-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sponsor-logo-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(0, 245, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(0, 245, 255, 0.08);
  color: var(--cyan);
  font-family: var(--font-title);
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

.sponsor-card h3 {
  font-size: 1.15rem;
}

.sponsor-card p {
  flex: 1;
}

.sponsor-card span {
  display: inline-flex;
  align-self: flex-start;
  min-height: 28px;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border: 1px solid rgba(0, 255, 136, 0.35);
  border-radius: 999px;
  background: rgba(0, 255, 136, 0.08);
  color: #abf7c1;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sponsor-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.sponsor-contact-card {
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.sponsor-contact-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.sponsor-contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.sponsors-gallery-section {
  background:
    radial-gradient(circle at 84% 8%, rgba(0, 245, 255, 0.055), transparent 30%),
    var(--dark);
}

.sponsor-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.sponsor-showcase-card {
  position: relative;
  display: grid;
  grid-template-rows: 210px auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 245, 255, 0.08), rgba(15, 15, 26, 0.92)),
    rgba(15, 15, 26, 0.88);
  padding: 1.5rem;
  transition: var(--transition);
}

.sponsor-showcase-card:hover {
  border-color: rgba(0, 245, 255, 0.42);
  transform: translateY(-4px);
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.38),
    0 0 32px rgba(0, 245, 255, 0.09);
}

.sponsor-showcase-card-large {
  grid-row: auto;
  min-height: 0;
  grid-template-rows: 210px auto;
  padding: 0;
}

.sponsor-showcase-bg,
.sponsor-showcase-overlay {
  position: absolute;
}

.sponsor-showcase-media {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: rgba(5, 5, 8, 0.76);
}

.sponsor-showcase-card-large .sponsor-showcase-media {
  min-height: 210px;
}

.sponsor-showcase-bg {
  inset: 0;
  height: auto;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
  opacity: 1;
  transform: none;
}

.sponsor-showcase-overlay {
  inset: 0;
  display: none;
  background: transparent;
}

.sponsor-showcase-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 0.75rem;
  max-width: none;
  padding: 1.25rem;
  background: rgba(5, 5, 8, 0.96);
}

.sponsor-brand-mark,
.sponsor-wall-logo {
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 245, 255, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.18), rgba(191, 0, 255, 0.12)),
    rgba(5, 5, 8, 0.82);
  color: var(--cyan);
  font-family: var(--font-title);
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(0, 245, 255, 0.12);
}

.sponsor-brand-mark {
  width: 82px;
  height: 82px;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.sponsor-brand-mark img,
.sponsor-wall-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.45rem;
}

.sponsor-brand-mark-large {
  width: 118px;
  height: 118px;
  font-size: 1.9rem;
}

.sponsor-tier-label {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.7rem;
  border: 1px solid rgba(0, 245, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 245, 255, 0.08);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.sponsor-showcase-card h3 {
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-weight: 900;
  line-height: 1.1;
  max-width: 760px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
  overflow-wrap: anywhere;
}

.sponsor-showcase-card p {
  max-width: 520px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

.sponsor-showcase-card-large p {
  color: var(--text);
}

.sponsor-card-link {
  display: inline-flex;
  justify-self: start;
  min-height: 34px;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(0, 245, 255, 0.28);
  border-radius: var(--radius);
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  transition: var(--transition);
}

.sponsor-card-link:hover {
  background: var(--cyan);
  color: var(--dark);
}

.sponsor-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.sponsor-wall-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 156px;
  padding: 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(15, 15, 26, 0.78);
  transition: var(--transition);
}

.sponsor-wall-card:hover {
  border-color: rgba(0, 245, 255, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32);
}

.sponsor-wall-logo {
  width: 72px;
  height: 72px;
  color: var(--white);
  font-size: 0.95rem;
}

.sponsor-wall-card span {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.sponsor-wall-card h3 {
  margin: 0.3rem 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1rem;
}

.sponsor-wall-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.sponsors-page .section-desc {
  margin-bottom: 0;
}

.sponsors-hero {
  min-height: 680px;
}

.sponsors-hero-bg {
  background:
    linear-gradient(110deg, rgba(5, 5, 8, 0.98) 0%, rgba(5, 5, 8, 0.76) 46%, rgba(5, 5, 8, 0.96) 100%),
    linear-gradient(135deg, rgba(0, 245, 255, 0.14), rgba(191, 0, 255, 0.08)),
    url('img/lobo-cyber.jpeg') center right / min(58vw, 760px) auto no-repeat;
}

.sponsors-hero::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--dark));
  pointer-events: none;
  z-index: 1;
}

.sponsors-hero-inner {
  z-index: 2;
  grid-template-columns: minmax(0, 680px) minmax(320px, 470px);
}

.sponsors-hero-copy .section-title {
  max-width: 820px;
}

.sponsors-hero-copy .section-desc {
  max-width: 650px;
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
}

.sponsors-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.sponsors-hero-metrics span {
  display: inline-grid;
  min-width: 150px;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(0, 245, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 5, 8, 0.58);
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.sponsors-hero-metrics strong {
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.sponsors-command-panel {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(0, 245, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(15, 15, 26, 0.6), rgba(5, 5, 8, 0.88)),
    rgba(5, 5, 8, 0.84);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.panel-orbit {
  position: relative;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(0, 245, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.16), transparent 42%),
    rgba(0, 0, 0, 0.22);
  background-size: 34px 34px, 34px 34px, auto, auto;
  overflow: hidden;
}

.panel-orbit::before {
  content: 'OC';
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(0, 245, 255, 0.38);
  border-radius: 50%;
  background: rgba(5, 5, 8, 0.82);
  color: var(--cyan);
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 0 42px rgba(0, 245, 255, 0.24);
  transform: translate(-50%, -50%);
}

.panel-orbit span {
  position: absolute;
  border: 1px solid rgba(0, 245, 255, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.panel-orbit span:nth-child(1) {
  top: 50%;
  left: 50%;
  width: 172px;
  height: 172px;
}

.panel-orbit span:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 240px;
  height: 112px;
  border-color: rgba(191, 0, 255, 0.25);
  transform: translate(-50%, -50%) rotate(-18deg);
}

.panel-orbit span:nth-child(3) {
  top: 26%;
  right: 19%;
  width: 14px;
  height: 14px;
  border: 0;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.7);
}

.sponsors-command-panel .sponsors-signal-card {
  width: 100%;
  padding: 1.25rem;
  border-radius: var(--radius);
}

.sponsor-impact-list {
  display: grid;
  gap: 0.65rem;
}

.sponsor-impact-list span {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 800;
}

.sponsor-impact-list span::before {
  content: '';
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 245, 255, 0.58);
}

.sponsors-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 2.2rem;
}

.sponsors-value-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 255, 136, 0.055), transparent 28%),
    var(--dark);
}

.sponsor-benefit {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.sponsor-benefit::after {
  content: '';
  position: absolute;
  inset: auto 1.5rem 1.5rem auto;
  width: 72px;
  height: 72px;
  border-right: 1px solid rgba(0, 245, 255, 0.14);
  border-bottom: 1px solid rgba(0, 245, 255, 0.14);
}

.sponsor-benefit h3 {
  font-size: 1.08rem;
}

.sponsors-gallery-section {
  background:
    linear-gradient(180deg, rgba(13, 13, 20, 0.55), rgba(5, 5, 8, 0.96)),
    radial-gradient(circle at 86% 12%, rgba(0, 245, 255, 0.07), transparent 30%),
    var(--dark);
}

.sponsor-showcase-grid {
  grid-template-columns: minmax(320px, 1.28fr) repeat(2, minmax(250px, 0.86fr));
  gap: 1.35rem;
}

.sponsor-showcase-card,
.sponsor-showcase-card-large {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 245, 255, 0.08), rgba(15, 15, 26, 0.94)),
    rgba(15, 15, 26, 0.88);
}

.sponsor-showcase-card-large {
  min-height: 320px;
}

.sponsor-showcase-media {
  flex: 0 0 240px;
  min-height: 240px;
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.sponsor-showcase-card-large .sponsor-showcase-media {
  flex-basis: 292px;
  min-height: 292px;
}

.sponsor-showcase-pattern {
  background:
    linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 70% 26%, rgba(191, 0, 255, 0.18), transparent 32%),
    radial-gradient(circle at 22% 76%, rgba(0, 245, 255, 0.16), transparent 32%),
    rgba(5, 5, 8, 0.82);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

.sponsor-showcase-bg {
  background-size: contain;
  background-color: rgba(5, 5, 8, 0.7);
}

.sponsor-showcase-overlay {
  display: block;
  background:
    linear-gradient(180deg, transparent 44%, rgba(5, 5, 8, 0.86)),
    radial-gradient(circle at 78% 20%, rgba(0, 245, 255, 0.12), transparent 28%);
}

.sponsor-showcase-content {
  flex: 1;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.9), rgba(15, 15, 26, 0.98));
}

.sponsor-brand-mark {
  margin-bottom: 0.55rem;
}

.sponsor-tier-label {
  margin-bottom: 0.1rem;
}

.sponsor-showcase-card h3 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  text-shadow: none;
}

.sponsor-showcase-card p {
  color: var(--text-dim);
}

.sponsor-card-link {
  margin-top: 0.2rem;
}

.sponsor-tier {
  min-height: 340px;
}

.sponsor-contact-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 245, 255, 0.08), transparent 28%),
    linear-gradient(180deg, var(--dark2), var(--dark));
}

/* =============================================
   PODCAST PAGE
   ============================================= */
.podcast-page {
  min-height: 100vh;
  background: var(--dark);
}

.podcast-header-section {
  padding: 128px 0 34px;
  background: linear-gradient(180deg, rgba(13, 13, 20, 0.96), var(--dark));
}

.podcast-clean-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
}

.podcast-clean-header .section-title {
  margin-bottom: 0.75rem;
}

.podcast-clean-header .section-desc {
  margin-bottom: 1.35rem;
}

.podcast-videos-section {
  padding: 34px 0 96px;
}

.podcast-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.podcast-video-card {
  overflow: hidden;
  border: 1px solid rgba(0, 245, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 15, 26, 0.9);
  transition: transform var(--transition), border-color var(--transition);
}

.podcast-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 255, 0.36);
}

.podcast-video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--dark2);
  overflow: hidden;
}

.podcast-video-thumb img,
.podcast-video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-play-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 245, 255, 0.9);
  box-shadow: 0 0 26px rgba(0, 245, 255, 0.32);
}

.podcast-play-icon::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 16px;
  border-left: 15px solid var(--dark);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.podcast-video-content {
  padding: 1rem;
}

.podcast-video-type {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.podcast-video-card h2 {
  margin-bottom: 0.45rem;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.08rem;
  line-height: 1.25;
}

.podcast-video-card p {
  margin-bottom: 0.85rem;
  color: var(--text-dim);
  font-size: 1rem;
}

.podcast-video-link {
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.podcast-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px solid rgba(0, 245, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 15, 26, 0.9);
  color: var(--text-dim);
}

.sponsor-contact-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(0, 245, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(191, 0, 255, 0.06)),
    rgba(15, 15, 26, 0.88);
}

.sponsor-contact-card::after {
  content: '';
  position: absolute;
  top: -64px;
  right: -72px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(0, 245, 255, 0.16);
  border-radius: 50%;
}

.sponsor-contact-kicker {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =============================================
   CONTATO
   ============================================= */
.contato {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.contato::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.contato-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.55rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  min-width: 0;
  transition: var(--transition);
}
.contato-card:hover {
  border-color: rgba(0, 245, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.contato-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
  transition: var(--transition);
}
.contato-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contato-card:hover .contato-icon {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.contato-card h3 {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.contato-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.45;
  flex: 1;
  margin: 0;
}

.contato-card .btn {
  width: 100%;
  min-height: 46px;
  justify-content: center;
  padding: 0.72rem 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 1.4px;
  white-space: normal;
}

/* =============================================
   MEMBER REGISTRATION
   ============================================= */
.member-register-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  background:
    linear-gradient(135deg, rgba(5, 5, 8, 0.94), rgba(13, 13, 20, 0.92)),
    url('img/capa.jpeg') center/cover;
}

.member-register-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 3rem;
  align-items: start;
}

.member-register-copy h1 {
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.member-register-copy p {
  max-width: 560px;
  color: var(--text);
  font-size: 1.15rem;
}

.member-register-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.member-register-list span,
.member-register-form,
.member-register-note {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15, 15, 26, 0.86);
}

.member-register-list span {
  padding: 0.85rem 1rem;
  color: var(--cyan);
  font-weight: 800;
}

.member-register-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.35);
}

.member-field {
  display: grid;
  gap: 0.45rem;
}

.member-field span {
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.member-field input {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(0, 245, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 5, 8, 0.72);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  outline: none;
  padding: 0 1rem;
  transition: var(--transition);
}

.member-field input:focus {
  border-color: rgba(0, 245, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.16);
}

.member-submit {
  width: 100%;
}

.member-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.member-register-note {
  padding: 1rem;
  color: var(--green);
  font-weight: 800;
}

.member-register-note[data-type="error"] {
  color: #ff6b8a;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.4));
}
.footer-name {
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 700;
}
.footer-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* =============================================
   GRID SCAN EFFECT (decorative)
   ============================================= */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.014) 1px, transparent 1px);
  background-size: 74px 74px;
  pointer-events: none;
  z-index: 1;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .gallery-intro-inner,
  .events-intro-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .gallery-filters,
  .event-filters {
    justify-content: flex-start;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 230px;
  }
  .event-card {
    grid-template-columns: 1fr;
  }
  .event-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sponsors-hero-inner,
  .sponsor-contact-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-showcase-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-showcase-card-large {
    min-height: 430px;
  }
  .sponsor-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sponsors-signal-card {
    max-width: 520px;
  }
  .sponsor-benefits-grid,
  .current-sponsors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sponsor-tiers {
    grid-template-columns: 1fr;
  }
  .event-media {
    min-height: 260px;
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sobre-img {
    max-width: 420px;
    margin: 0 auto;
  }
  .contato-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .produtos-showcase {
    grid-template-columns: 1fr;
  }
  .showcase-img {
    max-height: 280px;
  }
  .stats-row {
    gap: 1.5rem;
  }
}

@media (max-width: 1200px) and (min-width: 901px) {
  .contato-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .nav-list {
    gap: 1.4rem;
  }
  .nav-list a {
    font-size: 0.82rem;
    letter-spacing: 1.4px;
  }
  .hero-content {
    grid-template-columns: 1fr auto;
    gap: 0.65rem 1rem;
    padding-bottom: 4.4rem;
  }
  .hero-title,
  .hero-desc {
    grid-column: 1;
  }
  .hero-btns {
    grid-column: 2;
    grid-row: 1 / span 3;
    flex-direction: column;
  }
  .sponsors-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-content: stretch;
  }
  .sponsors-signal-card {
    width: min(100%, 560px);
  }
}

@media (max-width: 820px) {
  .nav-list {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

@media (max-width: 700px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }
  .nav-list {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-content {
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    width: min(350px, 90vw);
    max-width: none;
    padding: 0 0 4.8rem;
  }
  .hero-bg {
    background-size: 170vw auto;
    background-position: center 38%;
    opacity: 0.78;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 5, 8, 0.58) 0%,
      rgba(5, 5, 8, 0.2) 42%,
      rgba(5, 5, 8, 0.9) 100%
    );
  }
  .hero-overlay::after {
    background:
      linear-gradient(180deg, transparent 0%, rgba(5, 5, 8, 0.78) 72%, rgba(5, 5, 8, 0.96) 100%),
      radial-gradient(circle at 12% 74%, rgba(0, 245, 255, 0.1) 0%, transparent 32%);
  }
  .hero-btns {
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
    margin-top: 0.55rem;
  }
  .hero-btns .btn {
    text-align: center;
    justify-content: center;
  }
  .hero-scroll {
    bottom: 0.75rem;
  }
  .gallery-intro {
    padding: 118px 0 28px;
  }
  .events-intro {
    padding: 118px 0 28px;
  }
  .sponsors-hero {
    min-height: auto;
  }
  .sponsors-hero-inner {
    gap: 1.5rem;
    padding: 112px 0 50px;
  }
  .sponsors-hero-copy .section-title {
    font-size: clamp(2.15rem, 12vw, 3.35rem);
  }
  .sponsors-hero-copy .section-desc {
    max-width: none;
  }
  .sponsors-hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.6rem;
  }
  .sponsors-hero-actions .btn {
    width: 100%;
  }
  .sponsor-benefits-grid,
  .current-sponsors-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-wall {
    grid-template-columns: 1fr;
  }
  .sponsor-wall-card {
    grid-template-columns: 62px 1fr;
  }
  .sponsor-wall-logo {
    width: 62px;
    height: 62px;
  }
  .sponsor-showcase-card,
  .sponsor-showcase-card-large {
    min-height: 310px;
  }
  .sponsor-brand-mark-large {
    width: 96px;
    height: 96px;
    font-size: 1.55rem;
  }
  .sponsor-contact-actions {
    flex-direction: column;
  }
  .sponsor-contact-actions .btn {
    justify-content: center;
    width: 100%;
  }
  .events-section {
    padding: 32px 0 78px;
  }
  .event-body {
    grid-template-columns: 1fr;
  }
  .event-date {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 0.55rem;
    width: fit-content;
    min-height: 58px;
    padding: 0 0.85rem;
  }
  .event-date strong {
    font-size: 1.45rem;
  }
  .event-meta {
    grid-template-columns: 1fr;
  }
  .event-meta span {
    width: 100%;
  }
  .product-pagination {
    align-items: stretch;
    flex-direction: column;
  }
  .product-pagination-actions {
    justify-content: flex-start;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 255px;
  }
  .gallery-item-large,
  .gallery-item-tall {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-item figcaption {
    padding: 0.9rem;
  }
  .gallery-item figcaption strong {
    font-size: 0.78rem;
  }
  .gallery-lightbox {
    padding: 4vw;
  }
  .gallery-lightbox p {
    left: 4vw;
    right: 4vw;
    bottom: 2rem;
  }
  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .section {
    padding: 70px 0;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .event-actions .btn {
    justify-content: center;
    width: 100%;
  }
  .product-page-btn {
    flex: 1 1 auto;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }
}

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

@media (max-width: 700px) {
  .member-register-page {
    padding: 110px 0 64px;
  }
}

@media (max-width: 900px) {
  .sponsors-section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }
  .sponsors-section-head .section-desc {
    max-width: none;
  }
  .sponsor-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .sponsors-hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 5, 8, 0.96) 0%, rgba(5, 5, 8, 0.74) 48%, rgba(5, 5, 8, 0.98) 100%),
      url('img/lobo-cyber.jpeg') center 38% / 92vw auto no-repeat,
      var(--dark);
  }
  .sponsors-hero-copy .section-title,
  .sponsors-section-head .section-title {
    overflow-wrap: anywhere;
  }
  .sponsors-section-head .section-title {
    font-size: clamp(1.85rem, 8.5vw, 2.25rem);
  }
  .sponsors-section-head .highlight {
    display: block;
  }
  .sponsors-hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .sponsors-hero-metrics span {
    min-width: 0;
  }
  .sponsors-command-panel {
    padding: 0.85rem;
  }
  .panel-orbit {
    min-height: 178px;
  }
  .sponsor-showcase-media,
  .sponsor-showcase-card-large .sponsor-showcase-media {
    flex-basis: 220px;
    min-height: 220px;
  }
  .sponsor-showcase-card,
  .sponsor-showcase-card-large {
    min-height: auto;
  }
  .sponsor-tiers {
    gap: 1rem;
  }
}

@media (max-width: 420px) {
  .sponsors-hero-metrics {
    grid-template-columns: 1fr;
  }
  .sponsor-impact-list span {
    align-items: flex-start;
  }
}

.sponsors-page .sponsors-hero {
  min-height: 430px;
}

.sponsors-page .sponsors-hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.98), rgba(5, 5, 8, 0.78)),
    url('img/lobo-cyber.jpeg') right center / min(42vw, 540px) auto no-repeat,
    var(--dark);
}

.sponsors-page .sponsors-hero-inner {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
  padding: 128px 0 64px;
}

.sponsors-page .sponsors-hero-copy .section-title {
  max-width: 760px;
  font-size: clamp(2.3rem, 5.2vw, 4.35rem);
}

.sponsors-page .sponsors-hero-copy .section-desc {
  max-width: 520px;
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
}

.sponsors-page .sponsors-gallery-section {
  padding-top: 84px;
}

.sponsors-page .sponsor-showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
}

.sponsors-page .sponsor-showcase-card {
  min-height: 520px;
}

.sponsors-page .sponsor-showcase-card-large {
  grid-column: span 2;
  min-height: 600px;
}

.sponsors-page .sponsor-showcase-media {
  flex-basis: 300px;
  min-height: 300px;
}

.sponsors-page .sponsor-showcase-card-large .sponsor-showcase-media {
  flex-basis: 340px;
  min-height: 340px;
}

.sponsors-page .sponsor-showcase-content {
  padding: 1.55rem;
}

.sponsors-page .sponsor-brand-mark {
  width: 96px;
  height: 96px;
}

.sponsors-page .sponsor-brand-mark-large {
  width: 126px;
  height: 126px;
}

.sponsors-page .sponsor-showcase-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.sponsors-page .sponsor-showcase-card p {
  font-size: 1.02rem;
}

@media (max-width: 1000px) {
  .podcast-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sponsors-page .sponsor-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .podcast-page,
  .podcast-page .container {
    max-width: 100%;
    overflow-x: hidden;
  }
  .podcast-page .container {
    width: calc(100% - 32px);
  }
  .podcast-header-section {
    padding: 112px 0 28px;
  }
  .podcast-clean-header .section-title {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    overflow-wrap: anywhere;
  }
  .podcast-clean-header .btn {
    width: 100%;
    justify-content: center;
  }
  .podcast-video-grid {
    grid-template-columns: 1fr;
  }
  .sponsors-page,
  .sponsors-page .container {
    max-width: 100%;
    overflow-x: hidden;
  }
  .sponsors-page .container {
    width: calc(100% - 32px);
  }
  .sponsors-page .sponsors-hero {
    min-height: auto;
  }
  .sponsors-page .sponsors-hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 5, 8, 0.96), rgba(5, 5, 8, 0.86)),
      url('img/lobo-cyber.jpeg') center bottom / 92vw auto no-repeat,
      var(--dark);
  }
  .sponsors-page .sponsors-hero-inner {
    padding: 112px 0 42px;
  }
  .sponsors-page .sponsors-hero-copy .section-title {
    font-size: clamp(2rem, 9vw, 2.75rem);
    overflow-wrap: anywhere;
  }
  .sponsors-page .section-desc,
  .sponsors-page .sponsor-showcase-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .sponsors-page .sponsor-showcase-grid {
    grid-template-columns: 1fr;
  }
  .sponsors-page .sponsor-showcase-card-large {
    grid-column: auto;
  }
  .sponsors-page .sponsor-showcase-card,
  .sponsors-page .sponsor-showcase-card-large {
    min-height: auto;
  }
  .sponsors-page .sponsor-showcase-media,
  .sponsors-page .sponsor-showcase-card-large .sponsor-showcase-media {
    flex-basis: 245px;
    min-height: 245px;
  }
  .sponsors-page .sponsor-brand-mark,
  .sponsors-page .sponsor-brand-mark-large {
    width: 92px;
    height: 92px;
  }
}

/* =============================================
   SCAN LINE ANIMATION (subtle)
   ============================================= */
@keyframes scanline {
  from { transform: translateY(-100%); }
  to { transform: translateY(100vh); }
}

/* =============================================
   APPEAR ANIMATION
   ============================================= */
.appear {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.appear.visible {
  opacity: 1;
  transform: translateY(0);
}
.appear:nth-child(2) { transition-delay: 0.1s; }
.appear:nth-child(3) { transition-delay: 0.2s; }
.appear:nth-child(4) { transition-delay: 0.3s; }
.appear:nth-child(5) { transition-delay: 0.4s; }
.appear:nth-child(6) { transition-delay: 0.5s; }
.appear:nth-child(7) { transition-delay: 0.6s; }
.appear:nth-child(8) { transition-delay: 0.7s; }
.appear:nth-child(9) { transition-delay: 0.8s; }
.appear:nth-child(10) { transition-delay: 0.9s; }
.appear:nth-child(11) { transition-delay: 1.0s; }
.appear:nth-child(12) { transition-delay: 1.1s; }
