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

:root {
  --color-bg:        #0a0a0f;
  --color-bg2:       #10101a;
  --color-bg3:       #14141f;
  --color-surface:   #1a1a2e;
  --color-surface2:  #1f1f35;
  --color-border:    rgba(255,255,255,0.08);
  --color-text:      #e8e8f0;
  --color-text-muted:#9090b0;
  --color-white:     #ffffff;

  /* Accent – electric purple/blue */
  --color-accent:    #7c3aed;
  --color-accent2:   #4f46e5;
  --color-accent-lt: #a78bfa;
  --color-accent-glow: rgba(124, 58, 237, 0.35);

  /* WhatsApp green */
  --color-wa:        #25d366;
  --color-wa-dark:   #1da850;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);

  --font-sans: 'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-lt);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 16px;
}

.section__title span {
  color: var(--color-accent-lt);
}

.section__desc {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  padding: 14px 28px;
  letter-spacing: 0.02em;
}

/* Primary – WhatsApp green */
.btn--primary {
  background: linear-gradient(135deg, #25d366, #1da850);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #1ebe5a, #18963f);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  color: #fff;
}
.btn--primary:active {
  transform: translateY(0);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--color-accent-lt);
  border: 1.5px solid var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Ghost */
.btn--ghost {
  background: rgba(255,255,255,0.07);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.13);
  color: #fff;
}

/* Sizes */
.btn--sm  { font-size: 0.82rem; padding: 10px 20px; }
.btn--xs  { font-size: 0.75rem; padding: 7px 14px; }
.btn--lg  { font-size: 1.05rem; padding: 16px 36px; }
.btn--xl  { font-size: 1.15rem; padding: 18px 44px; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #1da850);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 22px 13px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
  animation: pulse-wa 2.8s infinite;
}
.whatsapp-float i {
  font-size: 1.4rem;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65);
  color: #fff;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 10, 15, 0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
}
.header__logo span {
  color: var(--color-accent-lt);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.header__nav a:hover {
  color: var(--color-white);
}

.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10, 10, 20, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0 20px;
  border-top: 1px solid var(--color-border);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu__link {
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}
.mobile-menu__link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.04);
}
.mobile-menu__link.cta {
  margin: 10px 24px 0;
  background: linear-gradient(135deg, #25d366, #1da850);
  color: #fff;
  border-radius: var(--radius-full);
  text-align: center;
  padding: 14px 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.7);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,15,0.45) 0%,
    rgba(10,10,15,0.65) 40%,
    rgba(10,10,15,0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-lt);
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124,58,237,0.4);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--color-white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.7);
  margin-bottom: 16px;
}
.hero__title span {
  color: var(--color-accent-lt);
  display: block;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}

.hero__cta {
  font-size: 1.1rem;
  padding: 17px 40px;
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.45);
}

.hero__hint {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.hero__hint::before {
  content: '⚡ ';
}

.hero__scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.35);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

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

/* ============================================================
   VIDEOS SECTION — moldura futurista
   ============================================================ */
.section--videos {
  background: var(--color-bg2);
}

/* ============================================================
   VIDEOS GRID
   ============================================================ */
.videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: start;
}

.reel-card {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
}

/* ============================================================
   SMARTPHONE FRAME (moldura estilo celular)
   ============================================================ */
.reel-frame-outer {
  position: relative;
  width: 100%;
  max-width: 220px;
  /* Corpo do smartphone */
  background: linear-gradient(160deg, #1c1c2e 0%, #0f0f1a 100%);
  border-radius: 36px;
  padding: 12px 10px 18px;
  box-shadow:
    0 0 0 1.5px rgba(124,58,237,0.5),
    0 0 0 3px rgba(15,15,26,0.9),
    0 0 40px rgba(124,58,237,0.25),
    0 20px 60px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: box-shadow 0.4s, transform 0.4s;
}
.reel-frame-outer:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 0 0 1.5px rgba(124,58,237,0.85),
    0 0 0 3px rgba(15,15,26,0.9),
    0 0 60px rgba(124,58,237,0.45),
    0 28px 80px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Notch / câmera frontal */
.reel-frame-outer::before {
  content: '';
  display: block;
  width: 52px;
  height: 7px;
  background: #0a0a14;
  border-radius: 10px;
  margin: 0 auto 10px;
  position: relative;
  z-index: 6;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
/* Botão lateral esquerdo */
.reel-frame-outer::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 80px;
  width: 3px;
  height: 28px;
  background: rgba(124,58,237,0.5);
  border-radius: 2px 0 0 2px;
  box-shadow: 0 38px 0 rgba(124,58,237,0.4), 0 70px 0 rgba(124,58,237,0.4);
}

/* Cantos luminosos (mantidos mas ajustados) */
.reel-frame-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 5;
  pointer-events: none;
}
.reel-frame-corner--tl { top: 11px; left: 9px;  border-top: 2px solid rgba(167,139,250,0.6); border-left: 2px solid rgba(167,139,250,0.6);  border-radius: 6px 0 0 0; }
.reel-frame-corner--tr { top: 11px; right: 9px; border-top: 2px solid rgba(167,139,250,0.6); border-right: 2px solid rgba(167,139,250,0.6); border-radius: 0 6px 0 0; }
.reel-frame-corner--bl { bottom: 17px; left: 9px;  border-bottom: 2px solid rgba(167,139,250,0.6); border-left: 2px solid rgba(167,139,250,0.6);  border-radius: 0 0 0 6px; }
.reel-frame-corner--br { bottom: 17px; right: 9px; border-bottom: 2px solid rgba(167,139,250,0.6); border-right: 2px solid rgba(167,139,250,0.6); border-radius: 0 0 6px 0; }

/* Efeito scanline animado sobre a tela */
.reel-frame-scanline {
  position: absolute;
  top: 30px;   /* abaixo do notch */
  left: 10px;
  right: 10px;
  bottom: 18px;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  border-radius: 22px;
}
.reel-frame-scanline::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(180deg, transparent 0%, rgba(124,58,237,0.07) 50%, transparent 100%);
  animation: scanline 4s linear infinite;
  pointer-events: none;
}
@keyframes scanline {
  0%   { top: -60px; }
  100% { top: 100%; }
}

/* Glow pulsante ao redor */
.reel-frame-glow {
  position: absolute;
  inset: -4px;
  border-radius: 40px;
  background: transparent;
  pointer-events: none;
  z-index: 0;
  animation: phonGlow 3s ease-in-out infinite;
}
@keyframes phonGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(124,58,237,0.2); }
  50%       { box-shadow: 0 0 40px rgba(124,58,237,0.45); }
}

/* ============================================================
   TELA DO SMARTPHONE (frame interno do vídeo)
   ============================================================ */
.reel-card__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  z-index: 2;
  /* Sombra interna para simular bezel da tela */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  /* Altura fixa 9:16 */
  aspect-ratio: 9 / 16;
}

.reel-card__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* contain: mostra vídeo completo sem cortar */
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #000;
}

/* Overlay info sobre o vídeo */
/* Badge topo do reel */
.reel-card__hud-top {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  pointer-events: none;
}

.reel-card__hud {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  background: rgba(200,0,0,0.75);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
  backdrop-filter: blur(4px);
}

.reel-hud-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s infinite;
}

/* ---- Prompt inicial (clique para ouvir) ---- */
.reel-audio-prompt {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,5,12,0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: opacity 0.35s, visibility 0.35s;
  border-radius: 22px;
}
.reel-audio-prompt.hidden,
.reel-ended-prompt.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Prompt "fim do vídeo" — próximo ou replay */
.reel-ended-prompt {
  position: absolute;
  inset: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,5,12,0.78);
  backdrop-filter: blur(6px);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  border-radius: 22px;
}
.reel-ended-prompt.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.reel-audio-icon--next {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent2)) !important;
  box-shadow: 0 0 28px rgba(124,58,237,0.55) !important;
}
.reel-audio-icon--replay {
  background: linear-gradient(135deg, #fb923c, #f97316) !important;
  box-shadow: 0 0 28px rgba(251,146,60,0.55) !important;
}
.reel-audio-prompt__inner {
  text-align: center;
}
.reel-audio-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-wa), var(--color-wa-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 28px rgba(37,211,102,0.5);
  animation: audioPulse 2s ease-in-out infinite;
}
@keyframes audioPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 28px rgba(37,211,102,0.5); }
  50%       { transform: scale(1.08); box-shadow: 0 0 44px rgba(37,211,102,0.75); }
}
.reel-audio-prompt__inner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.reel-audio-prompt__inner strong {
  color: var(--color-wa);
}

/* ---- Controles de áudio customizados (todos os reels) ---- */
.reel-audio-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.reel-card:hover .reel-audio-controls,
.reel-audio-controls.visible {
  opacity: 1;
}

.reel-btn-mute,
.reel-btn-play {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.reel-btn-mute:hover,
.reel-btn-play:hover {
  background: rgba(37,211,102,0.4);
  transform: scale(1.1);
}

/* Waveform animada */
.reel-waveform {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 28px;
}
.reel-waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--color-wa);
  height: 6px;
  animation: waveAnim 0.8s ease-in-out infinite;
  opacity: 0.5;
}
.reel-waveform.playing span { opacity: 1; }
.reel-waveform span:nth-child(1)  { animation-delay: 0.0s; }
.reel-waveform span:nth-child(2)  { animation-delay: 0.1s; }
.reel-waveform span:nth-child(3)  { animation-delay: 0.2s; }
.reel-waveform span:nth-child(4)  { animation-delay: 0.3s; }
.reel-waveform span:nth-child(5)  { animation-delay: 0.4s; }
.reel-waveform span:nth-child(6)  { animation-delay: 0.35s; }
.reel-waveform span:nth-child(7)  { animation-delay: 0.25s; }
.reel-waveform span:nth-child(8)  { animation-delay: 0.15s; }
.reel-waveform span:nth-child(9)  { animation-delay: 0.05s; }
.reel-waveform span:nth-child(10) { animation-delay: 0.45s; }

@keyframes waveAnim {
  0%, 100% { height: 5px; }
  50%       { height: 22px; }
}
.reel-waveform span:nth-child(odd) {
  animation-duration: 0.7s;
}
.reel-waveform span:nth-child(even) {
  animation-duration: 0.9s;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section--about {
  background: var(--color-bg);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) brightness(0.85);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.about__img-badge {
  position: absolute;
  bottom: 20px;
  right: -12px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent2));
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.8rem;
  box-shadow: 0 8px 24px rgba(124,58,237,0.5);
  line-height: 1.3;
}
.about__img-badge i { display: block; font-size: 1.2rem; margin-bottom: 4px; }
.about__img-badge strong { display: block; font-size: 1.4rem; font-weight: 800; }
.about__img-badge span { font-size: 0.72rem; opacity: 0.85; }

.about__text > p {
  color: var(--color-text-muted);
  font-size: 1.02rem;
  margin-bottom: 28px;
  line-height: 1.8;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.about__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--color-text);
}
.about__features li i {
  color: var(--color-accent-lt);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   FORMATS SECTION
   ============================================================ */
.section--formats {
  background: var(--color-bg2);
}

.formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.format-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.format-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(124,58,237,0.3);
}

.format-card--featured {
  background: linear-gradient(160deg, #1e1540 0%, #1a1a32 100%);
  border-color: rgba(124,58,237,0.5);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.3), var(--shadow-card);
  transform: scale(1.03);
}
.format-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.5), var(--shadow-glow), var(--shadow-card);
}

.format-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent2));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.format-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.format-card__icon i {
  color: var(--color-accent-lt);
  font-size: 1.3rem;
}

.format-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}

.format-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.format-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.format-card__details li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.format-card__details li i {
  color: var(--color-accent-lt);
  width: 14px;
}

/* ============================================================
   AGENDA FUTURISTA
   ============================================================ */
.section--agenda {
  background: var(--color-bg3);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.badge--booked {
  background: rgba(255,255,255,0.07);
  color: var(--color-text-muted);
}
.badge--available {
  background: rgba(37, 211, 102, 0.15);
  color: var(--color-wa);
  border: 1px solid rgba(37,211,102,0.35);
}
.badge--available i {
  animation: blink 1.5s infinite;
}

/* ---- Barra de progresso do mês ---- */
.agenda-progress {
  max-width: 600px;
  margin: 0 auto 36px;
}
.agenda-progress__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.agenda-progress__pct {
  color: #fb923c;
}
.agenda-progress__bar {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.agenda-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), #fb923c);
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(251,146,60,0.5);
  animation: progressFill 1.5s ease forwards;
  width: 0;
}
@keyframes progressFill {
  from { width: 0; }
}

/* ---- Grade de células ---- */
.agenda-cells {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.agenda-cell {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.agenda-cell__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: all 0.25s;
  text-align: center;
  min-height: 90px;
}

.agenda-cell__day {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}
.agenda-cell__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.agenda-cell__status {
  font-size: 0.75rem;
  margin-top: 2px;
}

/* Disponível */
.agenda-cell--available .agenda-cell__inner {
  border-color: rgba(37,211,102,0.35);
  background: rgba(37,211,102,0.05);
}
.agenda-cell--available .agenda-cell__status {
  color: var(--color-wa);
  animation: blink 1.5s infinite;
}
.agenda-cell--available:hover .agenda-cell__inner {
  border-color: rgba(37,211,102,0.7);
  box-shadow: 0 0 20px rgba(37,211,102,0.2);
  transform: translateY(-3px);
}

/* Reservado */
.agenda-cell--booked .agenda-cell__inner {
  opacity: 0.45;
  cursor: default;
}
.agenda-cell--booked .agenda-cell__status {
  color: var(--color-text-muted);
}

/* Oculto — célula misteriosa */
.agenda-cell--hidden .agenda-cell__inner--locked {
  border-color: rgba(124,58,237,0.3);
  background: rgba(124,58,237,0.06);
  position: relative;
  overflow: hidden;
}
.agenda-cell--hidden .agenda-cell__inner--locked::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, transparent 100%);
}
.agenda-cell--hidden .agenda-cell__status {
  color: var(--color-accent-lt);
  animation: glowPulse 2s infinite;
}
.agenda-cell--hidden:hover .agenda-cell__inner--locked {
  border-color: rgba(124,58,237,0.7);
  box-shadow: 0 0 24px rgba(124,58,237,0.3);
  transform: translateY(-3px);
}

/* Painel de reveal */
.agenda-cell__reveal {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 800;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text-muted);
  text-align: center;
  flex-direction: column;
  animation: revealPop 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.agenda-cell__reveal--available {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.45);
  color: var(--color-wa);
}
.agenda-cell.revealed .agenda-cell__reveal {
  display: flex;
}
.agenda-cell.revealed .agenda-cell__inner--locked {
  visibility: hidden;
}
@keyframes revealPop {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* Hint de interação */
.agenda-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.agenda-hint strong {
  color: var(--color-accent-lt);
}

/* Painel de reserva (aparece ao clicar em disponível) */
.agenda-reserve-panel {
  display: none;
  margin: 0 auto 24px;
  max-width: 480px;
  animation: slideUp 0.4s ease;
}
.agenda-reserve-panel.active {
  display: block;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.agenda-reserve-panel__inner {
  position: relative;
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(37,211,102,0.04));
  border: 1px solid rgba(37,211,102,0.4);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 0 30px rgba(37,211,102,0.15);
}

.agenda-reserve-panel__date {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-wa);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.agenda-reserve-panel__inner > p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.agenda-reserve-panel__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  transition: color var(--transition);
}
.agenda-reserve-panel__close:hover {
  color: var(--color-white);
}

.agenda__warning {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fb923c;
  background: rgba(251,146,60,0.08);
  border: 1px solid rgba(251,146,60,0.2);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  margin-top: 8px;
}
.agenda__warning i {
  margin-right: 6px;
}

/* ============================================================
   SIMULATOR
   ============================================================ */
.section--simulator {
  background: var(--color-bg2);
}

.simulator__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.simulator__card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.simulator__card .section__title {
  font-size: 1.8rem;
  margin-top: 8px;
}

.simulator__card > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.simulator__form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--color-bg2);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239090b0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}
.form-group input::placeholder {
  color: rgba(144,144,176,0.5);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}

.simulator__note {
  text-align: center;
  font-size: 0.77rem;
  color: var(--color-text-muted);
  margin-top: 14px;
}
.simulator__note i {
  color: var(--color-accent-lt);
  margin-right: 4px;
}

/* testimonials removidos */

/* ============================================================
   FINAL CTA
   ============================================================ */
.section--final-cta {
  background: var(--color-bg3);
  text-align: center;
  padding: 120px 0;
}

.final-cta__inner {
  position: relative;
}

.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
}
.final-cta__title span {
  color: var(--color-accent-lt);
}

.final-cta__desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__social {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.final-cta__social a {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  transition: color var(--transition), transform var(--transition);
}
.final-cta__social a:hover {
  color: var(--color-white);
  transform: scale(1.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.footer__inner p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ============================================================
   ANIMATIONS & REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 960px) {
  .videos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .reel-frame-outer {
    max-width: 100%;
  }

  .header__nav {
    display: none;
  }
  .header__menu-toggle {
    display: block;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about__img {
    aspect-ratio: 16/9;
    max-height: 360px;
    object-position: center top;
  }
  .about__img-badge {
    right: 16px;
  }

  .formats__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .format-card--featured {
    transform: scale(1);
  }
  .format-card--featured:hover {
    transform: translateY(-6px);
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px 12px 15px;
    font-size: 0.82rem;
  }
  .whatsapp-float i {
    font-size: 1.25rem;
  }
  .whatsapp-float__label {
    display: none;
  }
  .whatsapp-float {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }

  .hero__content {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .videos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .reel-card {
    width: 100%;
  }
  .reel-frame-outer {
    max-width: 100%;
    border-radius: 28px;
    padding: 10px 8px 14px;
  }
  .reel-card__frame {
    border-radius: 18px;
  }
  .agenda-cells {
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
  }
  .agenda-cell__inner {
    padding: 12px 4px;
    min-height: 78px;
  }
  .agenda-cell__day {
    font-size: 1.5rem;
  }

  .simulator__card {
    padding: 36px 24px;
  }

  .agenda__grid {
    grid-template-columns: 1fr;
  }

  .final-cta__glow {
    width: 280px;
    height: 280px;
  }

  .footer__inner {
    flex-direction: column;
  }
}

/* ============================================================
   SCROLLBAR CUSTOM
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(124,58,237,0.4);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}
