:root {
  --bg: #050505;
  --bg-soft: #0f0f11;
  --panel: rgba(255,255,255,0.04);
  --panel-strong: rgba(255,255,255,0.08);
  --text: #f5f5f5;
  --muted: #b8b8be;
  --line: rgba(255,255,255,0.1);
  --red: #d91522;
  --red-strong: #ff2333;
  --red-soft: rgba(217,21,34,0.16);
  --green: #25d366;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(217,21,34,0.18), transparent 34%),
    linear-gradient(180deg, #0b0b0c 0%, #050505 100%);
}
a { color: inherit; text-decoration: none; }
img, video, iframe { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-compact { padding: 35px 0; }
.section-tight { padding-top: 36px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--red-soft);
  color: #ffd1d5;
  border: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 22px;
  font-weight: 700;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}
.section-header h2,
.section-title {
  margin: 14px 0 12px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
}
.section-header p,
.section-subtitle,
.lead {
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}

/* =====================================================
   CABEÇALHO - LOGO E MENU NOS CANTOS DA TELA
   ===================================================== */

.site-header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 100;

  background: rgba(100, 100, 100, 0.55);

  border-bottom: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


.site-header .container {
  width: 100%;
  max-width: none;

  min-height: 76px;

  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


/* LOGO - CANTO ESQUERDO */

.brand {
  margin-left: 0;
  flex-shrink: 0;
}

.brand img {
  height: 70px;
  width: auto;
  display: block;
}


/* MENU - CANTO DIREITO */

.nav-links {
  margin-left: auto;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 10px;

  flex-wrap: nowrap;
}


.nav-links a {
  color: var(--muted);

  padding: 12px 14px;

  border-radius: 12px;

  white-space: nowrap;

  transition: 0.2s ease;
}


.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}


/* BOTÃO MENU MOBILE */

.nav-toggle {
  display: none;

  margin-left: auto;

  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(0,0,0,0.25);

  color: var(--text);

  border-radius: 12px;

  padding: 10px 14px;

  cursor: pointer;
}

.nav-links a {
  color: var(--muted);
  padding: 12px 14px;
  border-radius: 12px;
  transition: 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.btn,
.btn-outline,
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn {
  background: linear-gradient(135deg, var(--red-strong), var(--red));
  color: white;
  border: 0;
  box-shadow: 0 12px 34px rgba(217,21,34,0.28);
  cursor: pointer;
}
.btn:hover, .btn-outline:hover, .pill-link:hover { transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.02);
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-compact {
  height: 100vh;
  min-height: 100vh;
}
.hero-compact { min-height: calc(100vh - 86px); }
.hero video,
.hero .hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.42) 50%, rgba(0,0,0,0.74) 100%);
}

/* =====================================================
   CONTEÚDO CENTRALIZADO SOBRE O VÍDEO
   ===================================================== */

.hero-content {
  position: absolute;

  inset: 0;

  z-index: 2;

  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 0 40px;
}


.hero-home-grid {
  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;
}


.hero-copy {
  width: 100%;
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}


.hero-copy .eyebrow {
  margin: 0 auto;
}


.hero-copy p {
  max-width: 700px;

  margin: 24px auto 0;

  color: #ffffff;

  line-height: 1.7;

  text-align: center;
}


.hero-actions {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 14px;

  flex-wrap: wrap;

  margin-top: 26px;
}

.hero p { color: #dedee3; line-height: 1.8; max-width: 650px; }
.minimal-copy p { max-width: 560px; }
.hero-actions, .button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-card, .glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}
.hero-side { padding: 28px; }
.hero-side h3 { margin: 0 0 10px; font-size: 24px; }
.hero-side p { margin: 0; color: var(--muted); }

/* =====================================================
   THE VOICE - SELO FLUTUANTE NO VÍDEO
   ===================================================== */


   .thevoice-badge {
  position: absolute;

  top: 120px;
  right: 40px;

  width: 170px;
  height: 190px;

  z-index: 40;

  overflow: visible;
}


/* =====================================================
   LOGO THE VOICE
   ===================================================== */

.thevoice-badge .bola-logo {
  position: absolute;

  top: 0;
  left: 0;

  width: 150px;
  height: 150px;

  border-radius: 50%;
  overflow: hidden;

  z-index: 2;

  box-shadow:
    0 10px 30px rgba(0,0,0,.55);

  transition: transform .25s ease;
}

.thevoice-badge .bola-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.thevoice-badge .bola-lari {
  position: absolute;

  top: 115px;
  right: 0;

  width: 70px;
  height: 70px;

  border-radius: 50%;
  overflow: hidden;

  background: #000;

  border: 3px solid #fff;

  z-index: 5;

  box-shadow:
    0 8px 20px rgba(0,0,0,.55);

  transition: transform .25s ease;
}

.thevoice-badge .bola-lari img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =====================================================
   FOTO DA LARIANI
   ===================================================== */

.thevoice-badge .bola-lari {
    position: absolute;

    top: 120px;
    right: 0;

    width: 70px;
    height: 70px;

    border-radius: 50%;
    overflow: hidden;

    background: #000;

    border: 3px solid #fff;

    box-shadow:
        0 8px 20px rgba(0,0,0,.55);

    z-index: 5;

    transition: transform .25s ease;
}

.thevoice-badge .bola-lari img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =====================================================
   POPUP DA LARIANI
   ESCONDIDO
   ===================================================== */


   .thevoice-badge .tooltip-thevoice {
  position: absolute;

  top: 155px;
  right: 75px;

  width: 280px;

  padding: 18px 20px;

  background: rgba(10,10,10,.95);

  color: #fff;

  border: 1px solid rgba(255,255,255,.12);

  border-radius: 16px;

  box-shadow:
    0 18px 45px rgba(0,0,0,.55);

  font-size: 13px;
  line-height: 1.55;

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px) scale(.96);

  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;

  z-index: 50;

  pointer-events: none;
}

.thevoice-badge:hover .tooltip-thevoice {
  opacity: 1;
  visibility: visible;

  transform: translateY(0) scale(1);
}


/* =====================================================
   TÍTULO DO POPUP
   ===================================================== */

.thevoice-badge .tooltip-thevoice strong {
    display: inline-block;

    margin-bottom: 5px;

    color: #fff;

    font-size: 16px;
}


/* =====================================================
   POPUP APARECE AO PASSAR O MOUSE
   ===================================================== */

.thevoice-badge:hover .tooltip-thevoice {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


/* =====================================================
   SETA DO POPUP
   ===================================================== */

.thevoice-badge .tooltip-thevoice::before {
    content: "";

    position: absolute;

    top: -7px;
    right: 45px;

    width: 14px;
    height: 14px;

    background: rgba(10,10,10,.95);

    border-left:
        1px solid rgba(255,255,255,.12);

    border-top:
        1px solid rgba(255,255,255,.12);

    transform: rotate(45deg);
}


/* =====================================================
   EFEITO HOVER
   ===================================================== */

.thevoice-badge:hover .bola-logo {
    transform: scale(1.04);
}

.thevoice-badge:hover .bola-lari {
    transform: scale(1.06);
}


/* =====================================================
   TABLET
   ===================================================== */




/* =====================================================
   CELULAR
   ===================================================== */



.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat strong { display: block; font-size: 28px; margin-bottom: 8px; }
.stat span { color: var(--muted); font-size: 14px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-body { padding: 24px; }
.card h3, .card h4 { margin: 0 0 10px; }
.card p { color: var(--muted); line-height: 1.7; }
.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffe5e8;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.list-clean { list-style: none; margin: 0; padding: 0; }
.list-clean li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}
.list-clean li:last-child { border-bottom: 0; }
.emphasis-list li { font-size: 16px; }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.logo-item {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
}
.logo-item img {
  max-height: 140px;
  max-width: 90%;
  width: auto;
  object-fit: contain;
}

.quote-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.quote {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.quote p { margin: 0 0 16px; font-size: 18px; line-height: 1.7; }
.quote span { color: #c2333f; font-weight: 700; }

/* =====================================================
   VÍDEOS / DEPOIMENTOS
   ===================================================== */

.video-grid {
  display: grid;

  grid-template-columns:
    repeat(4, minmax(0, 1fr));

  gap: 18px;
}


.video-card {
  overflow: hidden;

  border-radius: 24px;

  background:
    rgba(255,255,255,0.04);

  border:
    1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.25);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}


.video-card:hover {
  transform: translateY(-4px);

  border-color:
    rgba(255,35,51,0.35);

  box-shadow:
    0 22px 55px rgba(0,0,0,0.35);
}


/* VÍDEO YOUTUBE */

.video-card iframe {
  display: block;

  width: 100%;
  aspect-ratio: 9 / 16;

  border: 0;
}


/* NOME */

.video-card .label {
  padding:
    14px 16px 18px;

  color:
    #ffe4e7;

  font-weight: 700;

  line-height: 1.4;
}


.hero-media-card {
  padding: 16px;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-media-card video { width: 100%; border-radius: 20px; }

.member-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 18px; }
.member-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.member-card .card-body { padding: 18px; }
.member-card small { color: #ffb8bf; text-transform: uppercase; letter-spacing: .08em; }

.package-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; align-items: stretch; }
.package-card { padding: 28px; position: relative; }
.package-card.featured { border: 1px solid rgba(255,35,51,0.45); box-shadow: 0 24px 70px rgba(217,21,34,0.22); }
.package-card h3 { font-size: 30px; margin: 8px 0; }
.package-card .tag { color: #ffd1d5; font-weight: 700; }
.package-card .ideal {
  margin-top: 18px;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  padding: 12px 14px;
  border-radius: 16px;
}
.package-card .actions { margin-top: 22px; }

.genre-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.genre-card { position: relative; overflow: hidden; border-radius: 24px; min-height: 360px; }
.genre-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.genre-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 15%, rgba(0,0,0,0.82) 100%); }
.genre-card .card-body { position: absolute; inset: auto 0 0 0; z-index: 1; }

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag-cloud span {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #ffe4e7;
}
.embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.embed-card {
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
}
.embed-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  border: 0;
}

.form-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.input, .textarea, .select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 14px 16px;
}
.textarea { min-height: 130px; resize: vertical; }
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin: 16px 0 22px;
}
.checkbox-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.contact-card {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(217,21,34,0.16), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-card h3 { margin: 10px 0; }
.contact-card p { color: var(--muted); min-height: 72px; }
.contact-card .phone { color: #ffd1d5; font-weight: 700; }

.contact-hero {
  position: relative;
  padding: 110px 0 70px;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217,21,34,0.35), rgba(0,0,0,0.35));
}
.contact-hero .hero-bg-image { filter: grayscale(0.1) brightness(0.35); }
.contact-hero .container { position: relative; z-index: 1; }

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.feature {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.feature strong { display: block; margin-bottom: 10px; font-size: 18px; }
.feature span { color: var(--muted); line-height: 1.6; }

.mosaic,
.about-story { align-items: center; }
.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}
.mosaic .stack { display: grid; gap: 18px; }
.mosaic img,
.about-story .media img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.about-story .media img { box-shadow: var(--shadow); }

.voice-highlight {
  background: linear-gradient(135deg, rgba(217,21,34,0.18), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 28px;
}
.voice-videos { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.playlist-note {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}
.cta-band {
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(217,21,34,0.18), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.cta-band .section-title,
.cta-band .lead { margin-left: auto; margin-right: auto; }
.cta-band .button-row { justify-content: center; }


/* =====================================================
   RODAPÉ
   ===================================================== */

.site-footer {
  width: 100%;
  margin-top: 40px;
  padding: 28px 20px 30px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
}


.site-footer .container {
    width:
        min(
            calc(100% - 120px),
            1240px
        );

    min-height: 42px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.site-footer span {
    display: block;

    line-height: 1.5;
}


/* =====================================================
   CRÉDITO
   ===================================================== */

.site-footer .footer-credit {
    text-align: right;

    color: #9fa0a6;
}


.site-footer .footer-credit a {
    color: #b9bac0;

    text-decoration: none;

    transition:
        color .2s ease;
}


.site-footer .footer-credit a:hover {
    color: #fff;
}


/* =====================================================
   MOBILE
   ===================================================== */




.site-footer .footer-credit {
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer .footer-credit a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .footer-credit a:hover {
  color: #ff1e2d;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
}
.whatsapp-button {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
  }




.whatsapp-menu {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 280px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(10,10,10,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.whatsapp-menu.active { display: flex; }
.whatsapp-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.whatsapp-menu a:hover { border-color: rgba(255,35,51,0.4); }





  /* ===============================
     HERO
     =============================== */

  .hero {
    min-height: 100vh;
    height: 100vh;
    padding: 0;
  }


  /* ===============================
     TEXTO CENTRALIZADO NO VÍDEO
     =============================== */

  .hero-content {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    padding: 0 20px;

    display: flex;

    align-items: center;
    justify-content: center;
  }

  .hero-home-grid {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 90%;

    margin: 0 auto;

    text-align: center;
  }

  .hero-copy .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy p {
    max-width: 600px;

    margin: 20px auto 0;

    text-align: center;

    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    justify-content: center;
    align-items: center;
  }


  /* ===============================
     OUTRAS SEÇÕES
     =============================== */

  .stats,
  .quote-grid,
  .form-grid,
  .checkbox-group,
  .member-grid,
  .logo-grid,
  .package-grid,
  .genre-grid,
  .voice-videos,
  .video-grid-2 {
    grid-template-columns: 1fr;
  }

/* =====================================================
   EXPERIÊNCIAS / EVENTOS
   MOMENTOS — BLOCO ÚNICO COM IMAGEM
   ===================================================== */

.event-stories { padding: 0; background: #050505; }

.event-stories-header {
  width: 100%;
  max-width: var(--max);
  min-height: 590px;

  margin: 0 auto 35px;

  padding: 90px 48px;

  position: relative;
  overflow: hidden;
  display: block;

  background-image: url("../img/momentos.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 24px;

  box-shadow:
    0 0 0 10px #050505,
    0 20px 60px rgba(0,0,0,.75);
}

.event-stories-header::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,.72); z-index: 0;
}
.event-stories-header > * { position: relative; z-index: 1; }
.event-stories-header h2 { margin: 18px 0 30px; max-width: 720px; font-size: clamp(40px,5vw,68px); line-height: 0.98; letter-spacing: -.045em; font-weight: 800;  }
.event-stories-header p { width: 100%; max-width: 760px; margin: 0 0 13px; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.65; letter-spacing: .005em; }
.event-stories-header p:last-child { margin-bottom: 0; }

/* Hierarquia dos textos — conteúdo original preservado */

.event-stories-header p:first-of-type {
  margin-bottom: 20px;
  color: rgba(255,255,255,.94);
  font-size: 17px;
  line-height: 1.6;
}

.event-stories-header p:nth-of-type(2) {
  margin-bottom: 24px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.event-stories-header p:nth-of-type(3),
.event-stories-header p:nth-of-type(4),
.event-stories-header p:nth-of-type(5) {
  color: rgba(255,255,255,.68);
  max-width: 720px;
}

.event-stories-header p:nth-of-type(6) {
  margin-top: 20px;
  color: rgba(255,255,255,.86);
}

.event-stories-header p:nth-of-type(7) {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.event-stories-header p:last-child {
  color: #ff3344;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-top: 4px;
}

.event-stories-header h2,
.event-stories-header p,
.event-stories-header .eyebrow {
  display: block;
  width: 100%;
}
.event-stories-title { margin-top: 35px; margin-bottom: 25px; }
.event-stories-title h3 { margin: 8px 0 0; font-size: 28px; }
.event-video-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.event-video-card { overflow:hidden; border-radius:18px; background:#0c0c0c; border:1px solid rgba(255,255,255,.08); transition:.25s ease; }
.event-video-card:hover { transform:translateY(-4px); border-color:rgba(255,255,255,.16); }
.event-video { aspect-ratio:9/16; background:#000; }
.event-video iframe { width:100%; height:100%; border:0; }
.event-video-content { padding:16px; }
.event-tag { font-size:10px; text-transform:uppercase; letter-spacing:1px; color:#ffb8bf; }
.event-video-content h4 { margin:8px 0 0; font-size:17px; line-height:1.3; }
.event-stories-cta { margin-top:55px; padding:28px 30px; display:flex; align-items:center; justify-content:space-between; gap:20px; border-radius:20px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); }
.event-stories-cta h3 { margin:8px 0 0; font-size:24px; }

/* CATEGORIAS */

.event-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 65px;
}

.event-type {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  transition: .25s ease;
}

.event-type:hover {
  transform: translateY(-4px);
  border-color: rgba(255,35,51,0.35);
}

.event-type span {
  font-size: 11px;
  opacity: .45;
  letter-spacing: 2px;
}

.event-type h3 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.event-type p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}


/* VÍDEOS */

.event-stories-title {
  margin-bottom: 25px;
}

.event-stories-title h3 {
  margin: 8px 0 0;
  font-size: 28px;
}

.event-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.event-video-card {
  overflow: hidden;
  border-radius: 18px;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.08);
  transition: .25s ease;
}

.event-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
}

.event-video {
  aspect-ratio: 9 / 16;
  background: #000;
}

.event-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.event-video-content {
  padding: 16px;
}

.event-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffb8bf;
}

.event-video-content h4 {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.3;
}


/* CTA */

.event-stories-cta {
  margin-top: 55px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.event-stories-cta h3 {
  margin: 8px 0 0;
  font-size: 24px;
}


/* RESPONSIVO */





/* =====================================================
   PADRONIZAÇÃO DOS QUADROS
   THE VOICE + DIFERENCIAIS
   ===================================================== */

.voice-highlight,
.about-story {
    width: 100% !important;
    max-width: 1200px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box;
}
/* =========================================================
   RESPONSIVIDADE — MOBILE
   Tudo que é coluna no Desktop vira carrossel no celular.
   ========================================================= */

/* ---------- BASE DOS CARROSSÉIS ---------- */
.carousel-wrapper {
  position: relative;
  width: 100%;
}

.carousel-arrow {
  display: none !important;
}

.carousel-dots {
  display: none;
}

/* =========================================================
   DESKTOP — 821px ou mais
   ========================================================= */
@media (min-width: 821px) {

  /* Marcas: 5 por linha, 2 linhas, SEM SETAS */
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  /* Depoimentos: 3 colunas */
  .quote-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  /* Depoimentos em vídeo: mantém 4 lado a lado */
  .video-carousel-mobile {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
  }

  /* Momentos: mantém exatamente em 4 colunas */
  .event-video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  /* Integrantes, quando usados no index/sobre */
  .member-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

}

/* =========================================================
   MOBILE — até 820px
   ========================================================= */
@media (max-width: 820px) {

  /* ---------- CABEÇALHO ---------- */
  .site-header .container {
    min-height: 76px;
    padding: 0 20px;
  }

  .brand { margin-left: 0; }

  .brand img {
    height: 58px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(10,10,10,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }

  /* ---------- HERO ---------- */
  .hero {
    min-height: 100vh;
    height: 100vh;
    padding: 0;
  }

  .hero-content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-home-grid {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .hero-copy .eyebrow {
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 1.25;
}

  .hero-copy p {
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.2;
  }

  .hero-actions {
    justify-content: center;
    align-items: center;
  }

  .thevoice-badge {
    top: 85px;
    right: 15px;
    transform: scale(.50);
    transform-origin: top right;
  }

  /* ---------- CARROSSEL GENÉRICO ---------- */
  .carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 4px;
  }

  .carousel-track {
    display: flex !important;
    flex-direction: row;
    gap: 0 !important;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .carousel-track::-webkit-scrollbar {
    display: none;
  }

  .carousel-track > * {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* ---------- SETAS MODERNAS ---------- */
  .carousel-arrow {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    background: rgba(8,8,8,0.68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    transition: transform .2s ease, opacity .2s ease, background .2s ease;
  }

  .carousel-arrow:hover {
    background: linear-gradient(135deg, #ff3344, #d91522);
    transform: translateY(-50%) scale(1.08);
  }

  .carousel-arrow:active {
    transform: translateY(-50%) scale(.94);
  }

  .carousel-prev { left: -6px; }
  .carousel-next { right: -6px; }

  .carousel-arrow:disabled {
    opacity: .22;
    pointer-events: none;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.22);
    transition: width .25s ease, background .25s ease, transform .25s ease;
  }

  .carousel-dot.active {
    width: 22px;
    border-radius: 999px;
    background: #ff2333;
  }

  /* ---------- MARCAS ---------- */
  .logo-carousel .carousel-track {
    display: flex !important;
  }

  .logo-carousel .logo-item {
    min-height: 110px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
  }

  .logo-carousel .logo-item img {
    max-width: 58%;
    max-height: 140px;
    width: auto;
    object-fit: contain;
  }

  /* ---------- DEPOIMENTOS ---------- */
  .quote-carousel .quote {
    min-height: 210px;
  }

  /* ---------- VÍDEOS DE DEPOIMENTOS ---------- */
  .video-carousel .carousel-track {
    display: flex !important;
  }

  .video-carousel .video-card {
    border-radius: 22px;
    overflow: hidden;
    background: #080808;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  }

  .video-carousel .video-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    border: 0;
  }

  /* ---------- MOMENTOS ---------- */
  .event-carousel .carousel-track {
    display: flex !important;
  }

  .event-carousel .event-video-card {
    border-radius: 18px;
  }

  /* ---------- INTEGRANTES ---------- */
  .member-carousel .member-card {
    width: 100%;
  }

  /* ---------- FOOTER ---------- */
  .site-footer {
    padding: 22px 0;
  }

  .site-footer .container {
    width: calc(100% - 40px);
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .site-footer .footer-credit {
    text-align: center;
  }

  /* ---------- WHATSAPP ---------- */
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }
}



/* =====================================================
   FOOTER — REDES SOCIAIS
   ===================================================== */

.site-footer {
  width: 100%;
  padding: 28px 20px 30px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 35px;
  margin-bottom: 4px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform .2s ease, opacity .2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px) scale(1.06);
  opacity: .88;
}

.footer-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer > .container > span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer .footer-credit {
  color: #85858b;
}

.site-footer .footer-credit a {
  color: #cfcfd3;
}

.site-footer .footer-credit a:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .site-footer {
    padding: 24px 14px 26px;
  }

  .footer-social {
    gap: 13px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 820px) 
{
  .section-compact { padding-top:25px; padding-bottom:25px; }

 .event-stories-header {
  width: min(calc(100% - 32px), var(--max));
  max-width: var(--max);
  min-height: 590px;

  margin: 0 auto 35px;

  padding: 90px 48px;

  position: relative;
  overflow: hidden;
  display: block;

  border-radius: 24px;

  box-shadow:
    0 0 0 10px #050505,
    0 20px 60px rgba(0,0,0,.75);
}
}