/* ═══════════════════════════════════════════════
   UNIVERSO CASUO — style.css
   Paleta: preto profundo · roxo premium · branco
═══════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Roxo Premium */
  --purple:         #8B2FC9;
  --purple-light:   #B06EE0;
  --purple-mid:     #A04DD4;
  --purple-dark:    #5C1A8F;
  --purple-deeper:  #3B0D65;
  --purple-glow:    rgba(139, 47, 201, 0.35);
  --purple-glow-lg: rgba(139, 47, 201, 0.18);

  /* Pretos com toque violeta */
  --black:          #060409;
  --dark:           #0C0813;
  --dark-2:         #130B1E;
  --dark-3:         #1B1028;
  --dark-4:         #241532;

  /* Neutros */
  --gray:           #F2F0F5;
  --gray-mid:       #9A90AA;
  --white:          #FFFFFF;
  --white-80:       rgba(255,255,255,0.80);
  --white-50:       rgba(255,255,255,0.50);
  --white-20:       rgba(255,255,255,0.20);
  --white-08:       rgba(255,255,255,0.08);

  /* Especial */
  --whatsapp:       #25D366;
  --magenta-accent: #C026D3;

  /* Gradientes */
  --grad-purple:    linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  --grad-stage:     linear-gradient(180deg, var(--black) 0%, var(--dark) 40%, #1A0A2E 100%);
  --grad-card:      linear-gradient(180deg, transparent 50%, rgba(12,8,19,0.95) 100%);

  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Montserrat', sans-serif;

  --container:      1200px;
  --radius:         6px;
  --radius-lg:      12px;
  --transition:     0.3s ease;
  --transition-slow:0.6s ease;

  --header-h:       80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
svg { fill: currentColor; display: inline-block; vertical-align: middle; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── SECTION BASE ─── */
.section         { padding: 90px 0; }
.section--dark   { background: var(--dark); }
.section--darker { background: var(--black); }
.section--stage  { background: var(--grad-stage); }
.section--light  { background: var(--gray); color: var(--dark); }

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.8rem;
  position: relative;
  padding: 0 1.2rem;
}
.section__label::before,
.section__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px; height: 1px;
  background: var(--purple);
  opacity: 0.7;
}
.section__label::before { right: 100%; margin-right: -1rem; }
.section__label::after  { left: 100%;  margin-left:  -1rem; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.section--light .section__title { color: var(--dark); }

.section__desc {
  font-size: 0.95rem;
  color: var(--gray-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── LINHA DECORATIVA ─── */
.deco-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.deco-line::before,
.deco-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--purple), transparent);
}

/* ─── BOTÕES ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

/* Efeito shimmer nos botões primários */
.btn--purple::after,
.btn--gold::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn--purple:hover::after,
.btn--gold:hover::after { left: 150%; }

.btn--purple {
  background: var(--grad-purple);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px var(--purple-glow);
}
.btn--purple:hover {
  box-shadow: 0 6px 30px var(--purple-glow), 0 0 0 1px var(--purple-light);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  box-shadow: 0 0 20px var(--purple-glow);
}

.btn--outline-purple {
  background: transparent;
  color: var(--purple-light);
  border-color: var(--purple);
}
.btn--outline-purple:hover {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 4px 24px var(--purple-glow);
}

.btn--ghost {
  background: var(--white-08);
  color: var(--white);
  border-color: var(--white-20);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: var(--white-20);
  border-color: var(--white-50);
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  font-size: 0.95rem;
  padding: 1rem 2.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}
.btn--whatsapp svg { width: 22px; height: 22px; }

.btn--whatsapp-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  background: var(--whatsapp);
  color: var(--white);
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: filter var(--transition);
}
.btn--whatsapp-sm:hover { filter: brightness(1.1); }
.btn--whatsapp-sm svg { width: 17px; height: 17px; }

/* Alias para compatibilidade com HTML gerado */
.btn--gold         { background: var(--grad-purple); color: var(--white); box-shadow: 0 4px 20px var(--purple-glow); }
.btn--gold::after  { content: ''; position: absolute; top:0; left:-100%; width:60%; height:100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.15),transparent); transition: left .5s ease; pointer-events:none; }
.btn--gold:hover   { box-shadow: 0 6px 30px var(--purple-glow), 0 0 0 1px var(--purple-light); transform: translateY(-1px); }
.btn--gold:hover::after { left: 150%; }

.btn--gold-sm { background: var(--grad-purple); color: var(--white); padding: 0.6rem 1.4rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius); display: inline-flex; align-items: center; transition: all var(--transition); box-shadow: 0 2px 12px var(--purple-glow); }
.btn--gold-sm:hover { box-shadow: 0 4px 20px var(--purple-glow); transform: translateY(-1px); }

.btn--outline-light { background: transparent; color: var(--white); border: 2px solid var(--purple); border-radius: var(--radius); }
.btn--outline-light:hover { background: var(--purple); box-shadow: 0 4px 20px var(--purple-glow); }


/* ════════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════ */
.top-bar {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(139,47,201,0.2);
  font-size: 0.76rem;
  padding: 0.55rem 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar__left { display: flex; gap: 1.8rem; }

.top-bar__left a,
.top-bar__right a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-mid);
  transition: color var(--transition);
}
.top-bar__left a:hover,
.top-bar__right a:hover { color: var(--purple-light); }

.top-bar__left svg { width: 13px; height: 13px; flex-shrink: 0; }

.top-bar__right { display: flex; gap: 1rem; align-items: center; }
.top-bar__right a { font-size: 0; }
.top-bar__right svg { width: 15px; height: 15px; }


/* ════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6,4,9,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,47,201,0.15);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  border-bottom-color: rgba(139,47,201,0.4);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 0 rgba(139,47,201,0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.header__logo img { height: 50px; width: auto; }

/* NAV */
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white-80);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link svg {
  width: 10px; height: 10px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}
.nav__item--dropdown:hover .nav__link svg { transform: rotate(180deg); }
.nav__link:hover { color: var(--purple-light); background: rgba(139,47,201,0.08); }

.nav__link--cta {
  background: var(--grad-purple);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  box-shadow: 0 2px 12px var(--purple-glow);
}
.nav__link--cta:hover {
  box-shadow: 0 4px 20px var(--purple-glow);
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
}

/* DROPDOWN */
.nav__item--dropdown { position: relative; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 230px;
  background: var(--dark-3);
  border: 1px solid rgba(139,47,201,0.25);
  border-radius: var(--radius-lg);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(139,47,201,0.1);
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 20px;
  width: 10px; height: 10px;
  background: var(--dark-3);
  border-left: 1px solid rgba(139,47,201,0.25);
  border-top: 1px solid rgba(139,47,201,0.25);
  transform: rotate(45deg);
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown li a {
  display: block;
  padding: 0.65rem 1.3rem;
  font-size: 0.8rem;
  color: var(--gray-mid);
  transition: color var(--transition), background var(--transition), padding var(--transition);
}
.nav__dropdown li a:hover {
  color: var(--purple-light);
  background: rgba(139,47,201,0.1);
  padding-left: 1.7rem;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════════════
   HERO — SPLIT (texto esquerdo / imagem direita)
════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 12% 55%, rgba(91,26,143,0.40) 0%, transparent 58%),
    radial-gradient(ellipse at 88% 20%, rgba(139,47,201,0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero__split-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
}

.hero__split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__split-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__split-img img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  box-shadow:
    0 0 0 1px rgba(139,47,201,0.35),
    0 30px 90px rgba(0,0,0,0.65),
    0 0 70px rgba(91,26,143,0.28);
}

.hero__split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  background: linear-gradient(to right, rgba(6,4,9,0.30) 0%, transparent 45%);
  pointer-events: none;
}

.hero__pretitle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.2rem;
}
.hero__pretitle::before {
  content: '';
  width: 36px; height: 1px;
  background: linear-gradient(to right, transparent, var(--purple-light));
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-light) 0%, #D49EF0 50%, var(--magenta-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 0.98rem;
  color: var(--white-80);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 480px;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ════════════════════════════════════════════════
   NÚMEROS — FAIXA
════════════════════════════════════════════════ */
.numeros {
  background: var(--dark-2);
  border-top: 1px solid rgba(139,47,201,0.2);
  border-bottom: 1px solid rgba(139,47,201,0.2);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.numeros::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(139,47,201,0.06) 50%, transparent 100%);
  pointer-events: none;
}

.numeros__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.numeros__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 2.2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.numeros__item:last-child { border-right: none; }
.numeros__item:hover strong { color: var(--purple-light); }
.numeros__item:hover::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, var(--purple), transparent);
}

.numeros__item strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  transition: color var(--transition);
}
.numeros__item span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}


/* ════════════════════════════════════════════════
   CORPORATIVO — CARDS
════════════════════════════════════════════════ */
.corporativo { background: var(--black); }

.corporativo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.corp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
}
.corp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(139,47,201,0.3);
  border-color: rgba(139,47,201,0.3);
}

.corp-card__img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--dark-3) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-card__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.corp-card:hover .corp-card__bg { transform: scale(1.07); }

.corp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,4,9,0.4) 0%, rgba(6,4,9,0.75) 100%);
  z-index: 1;
}
/* glow roxo no hover */
.corp-card:hover .corp-card__overlay {
  background: linear-gradient(180deg, rgba(91,26,143,0.3) 0%, rgba(6,4,9,0.80) 100%);
}

.corp-card__logo {
  position: relative;
  z-index: 2;
  max-height: 90px;
  max-width: 72%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform var(--transition);
}
.corp-card:hover .corp-card__logo { transform: scale(1.05); }

.corp-card__body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.corp-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.corp-card__body p {
  font-size: 0.87rem;
  color: var(--gray-mid);
  line-height: 1.7;
  flex: 1;
}

/* card central em destaque */
.corp-card--featured {
  border-color: rgba(139,47,201,0.25);
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark-2) 100%);
}
.corp-card--featured .corp-card__img-wrap { height: 290px; }
.corp-card--featured:hover {
  box-shadow: 0 24px 60px rgba(139,47,201,0.25), 0 0 0 1px rgba(139,47,201,0.5);
}


/* ════════════════════════════════════════════════
   MARCOS CASUO — SOBRE STRIP
════════════════════════════════════════════════ */
.sobre-strip { background: var(--dark); }

.sobre-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-strip__img {
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 4/5;
  background: var(--dark-3);
  position: relative;
}
.sobre-strip__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}
/* moldura roxa decorativa */
.sobre-strip__img::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--purple), transparent 50%, var(--purple-dark));
  z-index: 0;
}
.sobre-strip__img::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 55%; height: 55%;
  border: 2px solid rgba(139,47,201,0.35);
  border-radius: var(--radius-lg);
  z-index: 0;
}

/* glow no fundo da imagem */
.sobre-strip__img-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 100px;
  background: var(--purple-glow-lg);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
}

.sobre-strip__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sobre-strip__text .section__title { margin-bottom: 0.2rem; }

.sobre-strip__text p {
  font-size: 0.93rem;
  color: var(--gray-mid);
  line-height: 1.85;
}
.sobre-strip__text em { color: var(--purple-light); font-style: italic; }

.sobre-strip__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.25rem 0;
}
.sobre-strip__tags span {
  background: rgba(139,47,201,0.12);
  color: var(--purple-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(139,47,201,0.3);
}


/* ════════════════════════════════════════════════
   AGENDA
════════════════════════════════════════════════ */
.agenda { background: var(--dark-2); }

.agenda__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 2.8rem;
}

.agenda-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.8rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.04);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.agenda-item:hover {
  border-left-color: var(--purple);
  background: var(--dark-4);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.agenda-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(139,47,201,0.1);
  border: 1px solid rgba(139,47,201,0.2);
  border-radius: var(--radius);
  padding: 0.8rem 0.5rem;
  text-align: center;
  min-width: 70px;
}
.agenda-item__date strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-light);
  line-height: 1;
}
.agenda-item__date span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-top: 0.25rem;
}

.agenda-item__type {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.35rem;
}

.agenda-item__info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.agenda-item__info p {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--gray-mid);
}
.agenda-item__info p svg { width: 12px; height: 12px; fill: var(--gray-mid); flex-shrink: 0; }

.agenda-item__badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(139,47,201,0.1);
  color: var(--purple-light);
  border: 1px solid rgba(139,47,201,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.agenda__footer { text-align: center; }


/* ════════════════════════════════════════════════
   VÍDEOS
════════════════════════════════════════════════ */
.videos { background: var(--black); }

.videos__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.videos__side { display: flex; flex-direction: column; gap: 1.5rem; }

.video-item__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
}
/* YouTube facade */
.yt-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.yt-facade img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: opacity 0.3s;
  display: block;
}
.yt-facade:hover img { opacity: 1; }
.yt-play {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 68px; height: 48px;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.55));
  transition: transform 0.2s;
}
.yt-facade:hover .yt-play { transform: scale(1.12); }
.yt-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-item__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.videos__footer { text-align: center; }


/* ════════════════════════════════════════════════
   CLIENTES — MARQUEE
════════════════════════════════════════════════ */
.clientes { background: var(--dark); }

.clientes__strip {
  overflow: hidden;
  position: relative;
  margin-bottom: 2.5rem;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.clientes__track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.clientes__track:hover { animation-play-state: paused; }

.clientes__track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  padding: 0.8rem 0;
  transition: color var(--transition);
  cursor: default;
}
.clientes__track span:hover { color: var(--purple-light); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clientes__footer { text-align: center; }


/* ════════════════════════════════════════════════
   CTA BANNER — ESPETACULAR
════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 110px 0;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-2);
  overflow: hidden;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(6,4,9,0.92) 0%, rgba(59,13,101,0.7) 50%, rgba(6,4,9,0.88) 100%);
}

/* partícula decorativa */
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,47,201,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,38,211,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-banner__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.cta-banner__text p {
  font-size: 0.98rem;
  color: var(--white-80);
}


/* ════════════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════════════ */
.newsletter { background: var(--dark-3); }

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.newsletter__text p {
  font-size: 0.9rem;
  color: var(--gray-mid);
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.newsletter__form input {
  padding: 0.9rem 1.3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(139,47,201,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter__form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,47,201,0.15);
}


/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--gray-mid);
  padding-top: 70px;
  border-top: 1px solid rgba(139,47,201,0.15);
  position: relative;
}
/* linha brilhante no topo */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(to right, transparent, var(--purple), transparent);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer__logo { height: 50px; width: auto; margin-bottom: 1.2rem; }

.footer__col--brand p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.footer__socials { display: flex; gap: 0.7rem; }
.footer__socials a {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--gray-mid);
  transition: all var(--transition);
}
.footer__socials a:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
  box-shadow: 0 0 16px var(--purple-glow);
}
.footer__socials svg { width: 14px; height: 14px; }

.footer__col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.3rem;
}

.footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer__col ul li a:hover {
  color: var(--purple-light);
  padding-left: 0.4rem;
}

.footer__col--contact p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.45rem;
}
.footer__col--contact a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer__col--contact a:hover { color: var(--purple-light); }

.footer__bottom { padding: 1.4rem 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.2); }
.footer__bottom a { color: var(--purple-light); }
.footer__bottom a:hover { color: var(--purple-mid); }


/* ════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* Pulse ring */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}


/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */

/* Tablet grande */
@media (max-width: 1100px) {
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

/* Tablet */
@media (max-width: 900px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--dark-2);
    border-top: 1px solid rgba(139,47,201,0.2);
    padding: 1.5rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }

  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav__link { width: 100%; padding: 0.9rem 0.5rem; font-size: 0.88rem; }

  .nav__dropdown {
    position: static;
    opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    border: none; border-left: 2px solid rgba(139,47,201,0.3);
    background: transparent;
    padding: 0 0 0.5rem 1rem;
    margin-bottom: 0.5rem;
    display: none;
    border-radius: 0;
  }
  .nav__dropdown::before { display: none; }
  .nav__item--dropdown.open .nav__dropdown { display: block; }

  .hero__split-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3rem; padding-bottom: 3rem; }
  .hero__split-img { order: -1; }
  .hero__split-img img { max-height: 50vh; }

  .numeros__grid { grid-template-columns: repeat(2, 1fr); }
  .numeros__item:nth-child(2) { border-right: none; }

  .corporativo__grid { grid-template-columns: 1fr 1fr; }
  .corp-card--featured { grid-column: 1 / -1; }

  .sobre-strip__inner { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-strip__img { aspect-ratio: 16/9; max-height: 380px; }
  .sobre-strip__img::after { display: none; }

  .agenda-item { grid-template-columns: 70px 1fr; }
  .agenda-item__cta { display: none; }

  .videos__grid { grid-template-columns: 1fr; }
  .videos__side { flex-direction: row; }

  .cta-banner__inner { flex-direction: column; text-align: center; }

  .newsletter__inner { grid-template-columns: 1fr; gap: 2rem; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__col--brand { grid-column: 1 / -1; }

  .top-bar__left a:last-child { display: none; }
}

/* Mobile */
@media (max-width: 600px) {
  .section { padding: 60px 0; }

  .top-bar__left { display: none; }

  .hero__title { font-size: 2.4rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .hero__split-img img { max-height: 45vh; }

  .numeros__grid { grid-template-columns: repeat(2, 1fr); }

  .corporativo__grid { grid-template-columns: 1fr; }
  .corp-card--featured { grid-column: auto; }

  .agenda-item { grid-template-columns: 60px 1fr; gap: 1rem; padding: 1.2rem; }
  .agenda-item__date strong { font-size: 1.5rem; }

  .videos__side { flex-direction: column; }

  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; }
}


/* ─── BOTÃO SOUNDCLOUD ─── */
.btn--soundcloud {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.3rem;
  background: #FF5500;
  color: #fff;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.btn--soundcloud:hover {
  background: #e04a00;
  transform: translateY(-1px);
}
