/* ============================================================
   CAMG — index.css  (Hero redesign com slideshow)
   Importa layout.css antes deste ficheiro.
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300&display=swap');
@import url('layout.css');

:root {
  --primary:    #000000;
  --secondary:  #f0e800;
  --light:      #ffffff;
  --dark:       #111111;
  --gray:       #f5f5f5;

  /* Slideshow */
  --slide-duration: 5000ms;   /* duração de cada slide (ms) */
  --slide-transition: 900ms;  /* velocidade da transição   */
}

/* ── HERO WRAPPER ───────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100dvh - var(--nav-h, 76px));
  margin-top: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── SLIDESHOW ──────────────────────────────────────────── */
.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--slide-transition) ease-in-out;
  will-change: opacity;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Sem estas fotos, o fundo fica escuro — adiciona as imagens reais */
  filter: brightness(0.38) saturate(0.9);
}

/* Fallback: se não houver imagem, cor de fundo sólida */
.slide:nth-child(1) { background: #0a0a0a; }
.slide:nth-child(2) { background: #0d0d12; }
.slide:nth-child(3) { background: #0a100d; }
.slide:nth-child(4) { background: #100a0a; }

/* ── OVERLAY GRADIENTE ──────────────────────────────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.10) 30%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

/* ── CONTEÚDO PRINCIPAL ─────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 110px;
}

/* Linha eyebrow */
.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240, 232, 0, 0.5);
  margin-bottom: 12px;
}

/* Título principal */
.hero h1 {
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--light);
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 900;
}

.hero h1 span {
  color: var(--secondary);
}

/* Subtítulo */
.hero-sub {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 14px 0 32px;
}

/* Botões */
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-primary:hover {
  background: #e6d700;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--light);
  padding: 13px 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ── STATS — BASE DA HERO ───────────────────────────────── */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.hero-stat {
  padding: 24px 60px;
  text-align: center;
}

.hero-stat + .hero-stat {
  border-left: 1px solid rgba(255,255,255,0.06);
}

.hero-stat strong {
  display: block;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0e800;
  line-height: 1;
}

.hero-stat span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   SECTIONS — Conteúdo abaixo da hero
════════════════════════════════════════════════════════════ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ── Section Header (comum a todas) ─────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(240, 232, 0, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
}

.section-title span {
  color: var(--secondary);
}

.section-line {
  width: 60px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */

.home-about {
  position: relative;
  background: #0d0d0d;
  color: var(--light);
  padding: 120px 24px;
  overflow: hidden;
}

.track-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(240, 232, 0, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(240, 232, 0, 0.04) 0%, transparent 60%),
    repeating-linear-gradient(
      180deg,
      transparent 0px, transparent 56px,
      rgba(255, 255, 255, 0.02) 56px,
      rgba(255, 255, 255, 0.02) 60px
    );
}

.home-about .section-title {
  color: var(--light);
}

.home-about .section-title span {
  color: var(--secondary);
}

.home-about .section-badge {
  border: 1px solid rgba(240, 232, 0, 0.2);
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.home-about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}

.about-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

.af-icon {
  font-size: 1.1rem;
}

.home-about-text .btn-primary {
  display: inline-block;
}

/* About Stats */
.home-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary);
  border-radius: 16px 16px 0 0;
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 232, 0, 0.3);
}

.stat-inner {
  position: relative;
  z-index: 1;
}

.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   NEWS — EDITORIAL CARD
═══════════════════════════════════════════════════════════ */

.home-news {
  position: relative;
  background: #070707;
  padding: 120px 24px 100px;
  overflow: hidden;
}

.home-news-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(240, 232, 0, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(240, 232, 0, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 120px,
      rgba(255, 255, 255, 0.008) 120px,
      rgba(255, 255, 255, 0.008) 121px
    );
}

.home-news .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.home-news .section-title {
  color: var(--light);
}

.home-news .section-title span {
  color: var(--secondary);
}

.home-news .section-badge {
  border: 1px solid rgba(240, 232, 0, 0.2);
}

/* ── GRID ──────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1248px;
  margin: -10px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── CARD ──────────────────────────────────────────────── */
.news-card-destaque {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--light);
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}

/* Background image */
.ncd-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ncd-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card-destaque:hover .ncd-bg img {
  transform: scale(1.08);
}

/* Gradient overlay */
.ncd-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    transparent 15%,
    rgba(0, 0, 0, 0.25) 35%,
    rgba(0, 0, 0, 0.65) 60%,
    rgba(0, 0, 0, 0.88) 80%,
    rgba(0, 0, 0, 0.95) 100%
  );
  transition: opacity 0.5s ease;
}

.news-card-destaque:hover .ncd-gradient {
  opacity: 0.85;
}

/* Gold top border accent */
.ncd-border {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  z-index: 3;
  background: var(--secondary);
  border-radius: 0 0 3px 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card-destaque:hover .ncd-border {
  transform: scaleX(1);
}

/* Body content */
.ncd-body {
  position: relative;
  z-index: 2;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card-destaque:hover .ncd-body {
  transform: translateY(-8px);
}

/* Category tag */
.ncd-category {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 5px 14px;
  border-radius: 4px;
  border: 1px solid rgba(240, 232, 0, 0.15);
  margin-bottom: 16px;
}

/* Title */
.ncd-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--light);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

/* Description */
.ncd-body p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 20px;
  max-width: 95%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Link */
.ncd-link {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ncd-link svg {
  transition: transform 0.3s ease;
}

.news-card-destaque:hover .ncd-link {
  opacity: 1;
  transform: translateY(0);
}

.news-card-destaque:hover .ncd-link svg {
  transform: translateX(4px);
}

/* ── CTA ───────────────────────────────────────────────── */
.home-news-cta {
  text-align: center;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}

.news-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: all 0.35s ease;
}

.news-cta-btn svg {
  transition: transform 0.3s ease;
}

.news-cta-btn:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.news-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════
   EVENTS
═══════════════════════════════════════════════════════════ */

.home-events {
  position: relative;
  background: #0d0d0d;
  padding: 120px 24px;
  overflow: hidden;
}

.track-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(240, 232, 0, 0.05) 0%, transparent 60%),
    repeating-linear-gradient(
      180deg,
      transparent 0px, transparent 56px,
      rgba(255, 255, 255, 0.015) 56px,
      rgba(255, 255, 255, 0.015) 60px
    );
}

.home-events .section-title {
  color: var(--light);
}

.home-events .section-title span {
  color: var(--secondary);
}

.home-events .section-badge {
  border: 1px solid rgba(240, 232, 0, 0.2);
}

.home-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  z-index: 2;
}

.event-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px 32px 40px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.event-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary);
  border-radius: 20px 20px 0 0;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 232, 0, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.event-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(240, 232, 0, 0.1);
  border: 2px solid rgba(240, 232, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.event-card:hover .event-icon {
  background: rgba(240, 232, 0, 0.2);
  border-color: rgba(240, 232, 0, 0.3);
}

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

.event-emoji {
  font-size: 2rem;
}

.event-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}

.event-more {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(240, 232, 0, 0.3);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.event-card:hover .event-more {
  color: var(--light);
  border-color: var(--light);
}

/* ═══════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════ */

.home-cta {
  position: relative;
  background: var(--primary);
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(240, 232, 0, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(240, 232, 0, 0.04) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid rgba(240, 232, 0, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.home-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 20px;
  line-height: 1.1;
}

.home-cta h2 span {
  color: var(--secondary);
}

.home-cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
}

.home-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-cta-btns .btn-primary {
  font-size: 14px;
  padding: 16px 48px;
}

.home-cta-btns .btn-outline {
  font-size: 14px;
  padding: 16px 48px;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.35);
}

.home-cta-btns .btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ═══════════════════════════════════════════════════════════
   VOLTA AOS 7 VIDRALA — Seasonal Banner
═══════════════════════════════════════════════════════════ */

:root {
  --volta-green: #2d9c4e;
  --volta-green-light: #4ade80;
  --volta-green-dark: #166534;
}

.volta-banner {
  position: relative;
  background: #0a0a0a;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.volta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.volta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.9);
}

.volta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.2) 100%),
    linear-gradient(180deg, transparent 0%, rgba(22,101,52,0.15) 100%);
}

.volta-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 25% 50%, rgba(45,156,78,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 50%, rgba(45,156,78,0.06) 0%, transparent 50%),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 80px,
      rgba(255, 255, 255, 0.015) 80px,
      rgba(255, 255, 255, 0.015) 81px
    );
}

.volta-banner .container {
  position: relative;
  z-index: 3;
  padding: 100px 24px;
}

.volta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.volta-content {
  max-width: 560px;
  flex-shrink: 0;
}

.volta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--volta-green-light);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.volta-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light);
  line-height: 1.1;
  margin-bottom: 18px;
}

.volta-content h2 span {
  color: var(--volta-green-light);
}

.volta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.volta-btn {
  display: inline-block;
  background: var(--volta-green);
  color: var(--light);
  padding: 15px 44px;
  border: none;
  border-radius: 50px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.25s ease;
}

.volta-btn:hover {
  background: var(--volta-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 156, 78, 0.3);
}

/* ── Logos ──────────────────────────────────────────── */
.volta-logos {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex-shrink: 0;
}

.volta-logos-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.volta-logos-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.volta-logos-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.volta-logo {
  width: 100px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.volta-logo:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 222, 128, 0.2);
}

.volta-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0.95);
}

/* Responsive */
@media (max-width: 1024px) {
  .volta-inner {
    flex-direction: column;
    text-align: center;
  }

  .volta-content {
    max-width: 100%;
  }

  .volta-content p {
    max-width: 100%;
  }

  .volta-logos {
    flex-direction: row;
    gap: 32px;
  }

  .volta-logos-group {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .volta-banner {
    min-height: auto;
  }

  .volta-banner .container {
    padding: 70px 20px;
  }

  .volta-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.3) 100%);
  }

  .volta-btn {
    display: block;
    text-align: center;
  }

  .volta-logos {
    flex-direction: column;
    gap: 24px;
  }

  .volta-logos-row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .volta-logo {
    width: 80px;
    height: 64px;
    padding: 8px;
  }

  .volta-logos-row {
    gap: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-about-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .home-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .home-about,
  .home-news,
  .home-events,
  .home-cta {
    padding: 80px 20px;
  }

  .about-features {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: -10px auto 0;
  }

  .news-card-destaque {
    height: 420px;
  }

  .ncd-body h3 {
    font-size: 1.15rem;
  }

  .ncd-body {
    padding: 28px 24px 24px;
  }

  .home-events-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .home-cta-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }

  .home-cta-btns .btn-primary,
  .home-cta-btns .btn-outline {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .home-about-stats {
    grid-template-columns: 1fr;
  }

  .home-about,
  .home-news,
  .home-events,
  .home-cta {
    padding: 60px 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .home-cta h2 {
    font-size: 2rem;
  }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-stat {
    padding: 20px 36px;
  }

  .hero-stat strong {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 60px 20px 110px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    padding: 16px 24px;
    flex: 1 1 100px;
    border-left: none;
  }

  .hero-stat + .hero-stat {
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  .hero-stat strong {
    font-size: 1.4rem;
  }

  /* section:not(.hero) {
    padding: 60px 20px;
  } */
}