/* Hub Editorial — identidade roxo + coral (logo) */

:root {
  --bg-deep: #1a0b22;
  --bg-raised: #24142e;
  --surface: #2d1b36;
  --surface-2: #35243f;
  --border: color-mix(in srgb, #ffffff 12%, transparent);
  --text: #f4f0f8;
  --text-muted: #b9a8c6;
  --coral: #e84e36;
  --coral-hover: #ff6a4d;
  --coral-soft: color-mix(in srgb, var(--coral) 22%, transparent);
  --white: #ffffff;
  --shadow-sm: 0 1px 2px color-mix(in srgb, #000000 35%, transparent);
  --shadow-md: 0 12px 40px color-mix(in srgb, #000000 45%, transparent);
  --shadow-lg: 0 28px 70px color-mix(in srgb, #000000 55%, transparent);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.muted {
  color: var(--text-muted);
}

.small {
  font-size: 0.875rem;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, 100% - 2.5rem);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg-deep) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
}

.logo-footer .logo-img {
  height: 52px;
}

.nav {
  display: none;
  gap: 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
}

.mobile-nav {
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

@media (min-width: 960px) {
  .nav,
  .header-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s,
    border-color 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-lg {
  padding: 0.78rem 1.4rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), #c73d2a);
  color: var(--white);
  border-color: color-mix(in srgb, var(--coral) 55%, #000);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--coral) 42%, transparent);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-hover), var(--coral));
  box-shadow: 0 12px 34px color-mix(in srgb, var(--coral) 50%, transparent);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: color-mix(in srgb, var(--coral) 55%, transparent);
  background: color-mix(in srgb, var(--coral) 10%, transparent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(2.75rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  background:
    radial-gradient(100% 80% at 90% 0%, color-mix(in srgb, var(--coral) 18%, transparent), transparent 52%),
    radial-gradient(70% 50% at 0% 30%, color-mix(in srgb, var(--surface) 90%, transparent), transparent 50%),
    linear-gradient(180deg, var(--bg-raised) 0%, var(--bg-deep) 55%);
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: stretch;
  }
  
  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: color-mix(in srgb, var(--coral) 35%, white);
  border: 1px solid var(--coral-soft);
  border-radius: 999px;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 1.25rem;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  background: rgba(232, 78, 54, 0.08);
  border: 1px solid rgba(232, 78, 54, 0.25);
  border-radius: 999px;
  box-shadow: 0 0 15px rgba(232, 78, 54, 0.05);
  backdrop-filter: blur(4px);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--text-muted);
}

.text-accent {
  color: var(--coral);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--coral) 55%, transparent);
  text-underline-offset: 5px;
}

.lead {
  margin: 0 0 1.6rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 40rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-stats li {
  padding: 1.1rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(25, 18, 30, 0.45);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-stats li:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 89, 0.35);
  box-shadow: 0 12px 24px rgba(255, 122, 89, 0.08), 0 8px 16px rgba(0, 0, 0, 0.3);
}

.hero-stats strong {
  display: block;
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.hero-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 960px) {
  .hero-visual {
    height: 100%;
    justify-content: space-between;
    gap: 0.85rem;
  }
}

/* Stack the two glass cards to fill the hero visual */
.hero-visual .glass-card {
  position: relative;
  margin-left: 0;
  max-width: 100%;
}

/* Partners card takes majority of space */
.partners-card {
  flex: 1.2;
}

@media (min-width: 960px) {
  .partners-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.8rem 2rem;
  }
}

/* Flow card is compact and perfectly aligned with left stats cards */
.flow-card-compact {
  flex: 0.8;
}

@media (min-width: 960px) {
  .flow-card-compact {
    flex: none;
    height: auto;
    min-height: 122px; /* Adjusted to align with hero-stats cards */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.85rem 1.2rem;
  }
  
  .flow-card-compact .glass-row {
    margin-bottom: 0.25rem;
  }
  
  .flow-card-compact .glass-title {
    display: none; /* Hide long title on desktop for ultra-compact layout */
  }
  
  .cycle-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
    margin: 0;
  }
  
  .cycle-mini li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
  }
  
  .cycle-mini span {
    min-width: 1.55rem;
    height: 1.55rem;
    font-size: 0.72rem;
  }
}

/* Logo grid inside partners card */
.partners-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  margin-bottom: auto;
}

.partners-logo-grid img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 8px 16px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.partners-logo-grid img.logo-large {
  height: 52px;
  padding: 6px 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.05);
}

.partners-logo-grid img:hover {
  transform: translateY(-3px) scale(1.05);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2) translate(-15px, 20px);
    opacity: 0.6;
  }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  opacity: 0.45;
}

.orb-a {
  width: 220px;
  height: 220px;
  right: 6%;
  top: -12%;
  background: var(--coral);
  animation: pulseGlow 9s ease-in-out infinite;
}

.orb-b {
  width: 180px;
  height: 180px;
  left: -5%;
  bottom: -5%;
  background: #6b4d86;
  animation: pulseGlow 14s ease-in-out infinite alternate;
}

.glass-card {
  position: relative;
  margin-left: auto;
  max-width: 400px;
  padding: 1.5rem 1.6rem;
  border-radius: 20px;
  background: rgba(25, 18, 30, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(255, 122, 89, 0.15),
    0 20px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 122, 89, 0.35);
}

.glass-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}

.pill {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pill-live {
  background: rgba(34, 197, 94, 0.15);
  color: #a7f3d0;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.glass-title {
  margin: 0 0 1.15rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.cycle-mini {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.cycle-mini li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.cycle-mini li:hover {
  transform: translateX(6px);
  color: var(--text);
}

.cycle-mini span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  height: 1.85rem;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), #ff8a6b);
  box-shadow: 0 4px 10px rgba(255, 122, 89, 0.25);
}

.glass-foot {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Sections */
.section {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* Diferenciais */
.bento {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-raised) 100%);
}

/* Section eyebrow (reusable) */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.25rem;
}

/* Diferenciais Grid: 3 cols top, 2 centered bottom */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.diff-grid .diff-card:nth-child(1),
.diff-grid .diff-card:nth-child(2),
.diff-grid .diff-card:nth-child(3) {
  grid-column: span 2;
}

.diff-grid .diff-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.diff-grid .diff-card:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (max-width: 800px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .diff-grid .diff-card:nth-child(n) {
    grid-column: auto;
  }
}

/* Card base */
.diff-card {
  position: relative;
  padding: 1.8rem 1.6rem 1.6rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(38,22,48,0.95), rgba(18,10,24,0.98)) padding-box,
    linear-gradient(135deg, var(--coral), #ffaa6e, var(--coral)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 10px 36px rgba(255,122,89,0.18), 0 0 0 1px rgba(255,122,89,0.25);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

/* Subtle glowing radial light centered at the top of each card */
.diff-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% -20%, rgba(255, 170, 110, 0.22), transparent 65%);
  opacity: 0.55;
  transition: opacity 0.4s ease, background 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255,122,89,0.35), 0 0 0 1px rgba(255,122,89,0.45);
}

.diff-card:hover::after {
  opacity: 1;
  background: radial-gradient(circle at 50% -20%, rgba(255, 170, 110, 0.42), transparent 70%);
}

/* Icon with rich circular glass container and dynamic micro-animations */
.diff-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232, 78, 54, 0.12), rgba(255, 170, 110, 0.18));
  border: 1px solid rgba(232, 78, 54, 0.28);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: transform 0.4s var(--ease-out), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.diff-card:hover .diff-icon {
  transform: translateY(-2px) scale(1.1);
  background: linear-gradient(135deg, rgba(232, 78, 54, 0.25), rgba(255, 170, 110, 0.35));
  border-color: rgba(232, 78, 54, 0.6);
  box-shadow: 0 8px 24px rgba(232, 78, 54, 0.4);
}

/* Custom premium badge inside cards */
.card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(232, 78, 54, 0.15);
  color: #ffaa6e;
  border: 1px solid rgba(232, 78, 54, 0.45);
  box-shadow: 0 0 12px rgba(232, 78, 54, 0.2);
  display: inline-flex;
  align-items: center;
  z-index: 3;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.diff-card:hover .card-badge {
  background: rgba(232, 78, 54, 0.25);
  border-color: rgba(232, 78, 54, 0.7);
  transform: scale(1.05);
}

.diff-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.diff-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}


/* Casos */
.cases {
  background: var(--bg-deep);
}

.case-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-card {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.case-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--coral);
}

.case-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.case-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Parceiros / marquee */
.channels {
  background: linear-gradient(180deg, #120818 0%, var(--bg-deep) 100%);
}

.channels .section-head h2 {
  color: var(--text);
}

.channels-note {
  margin: 2rem auto 0;
  max-width: 52rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--surface);
}

.marquee-logo {
  height: 40px;
  max-width: 130px;
  object-fit: contain;
  filter: none; /* Colorido */
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  padding: 0.2rem 0.5rem;
  margin: auto 0;
}

.marquee-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Master Logos Grid Styling */
.master-channels {
  margin-bottom: 3.5rem;
  text-align: center;
}

.master-title, .niche-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.master-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}

.master-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  min-height: 56px;
}

.master-logo-item:hover {
  transform: scale(1.08);
}

.master-logo-item img {
  height: 56px;
  max-width: 180px;
  object-fit: contain;
}

.logo-invert {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.niche-channels {
  text-align: center;
  margin-top: 2rem;
}

.niche-title {
  margin-bottom: 1.5rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Linha editorial */
.editorial-line {
  background: var(--bg-raised);
}

.tiers-summary {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .tiers-summary {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tiers-summary article {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.tiers-summary h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
}

.tiers-summary p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Planos */
.plans {
  background: var(--bg-deep);
}

.card-elevated {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.plan-switch {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.plan-tab {
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(65, 45, 78, 0.55), rgba(40, 24, 52, 0.75));
  color: rgba(255, 255, 255, 0.82);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plan-tab:hover {
  color: var(--white);
  border-color: rgba(232, 78, 54, 0.65);
  background: rgba(232, 78, 54, 0.1);
  box-shadow: 0 0 16px rgba(232, 78, 54, 0.2);
  transform: translateY(-1px);
}

.plan-tab.is-active {
  background: linear-gradient(135deg, var(--coral), #ff6a4d);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(232, 78, 54, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.plan-panel[hidden] {
  display: none;
}

.plan-panel.is-active {
  display: block;
}

.plan-deck {
  display: grid;
  gap: 1.15rem;
}

.plan-deck-pacotes {
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .plan-deck-pacotes {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.plan-deck-b2b {
  margin-top: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .plan-deck-b2b {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .plan-deck-b2b {
    grid-template-columns: repeat(4, 1fr);
  }
}

.credit-box {
  padding: 1.35rem 1.35rem;
  margin-bottom: 0.25rem;
}

.credit-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.credit-box > p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.credit-list {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.9rem;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(45, 27, 54, 0.8), rgba(26, 11, 34, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s, background 0.3s;
}

.plan-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(145deg, rgba(58, 36, 70, 0.95), rgba(30, 14, 40, 0.98));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(232, 78, 54, 0.15);
  border-color: rgba(232, 78, 54, 0.5);
}

.plan-card-featured {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, var(--coral), #8b5cf6, var(--surface-2)) border-box;
  border: 2px solid transparent;
}

.ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
}

.plan-card header {
  margin-bottom: 0.85rem;
}

.plan-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.plan-tagline {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-price {
  margin: 0.75rem 0 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--coral);
}

.plan-price span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.plan-features {
  margin: 0 0 1.1rem;
  padding: 0 0 0 1.05rem;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.plan-features li {
  margin-bottom: 0.4rem;
}

.plan-card footer {
  margin-top: auto;
}

.disclaimer {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 52rem;
  margin-inline: auto;
  line-height: 1.5;
}

/* Comparativo */
.compare {
  background: var(--bg-raised);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  background: color-mix(in srgb, var(--bg-deep) 65%, transparent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-price td {
  font-weight: 800;
  color: var(--coral);
  background: color-mix(in srgb, var(--coral) 8%, transparent);
}

/* Timeline */
.timeline-section {
  background: var(--bg-deep);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }
}

.timeline li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(45, 27, 54, 0.8), rgba(26, 11, 34, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}

.timeline li:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 78, 54, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(232, 78, 54, 0.12);
}

.t-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--coral);
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 10px rgba(232, 78, 54, 0.25);
  min-height: 24px;
}

.timeline h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.timeline p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ */
.faq {
  background: var(--bg-raised);
}

.accordion details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.accordion summary {
  padding: 1rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  float: right;
  font-weight: 800;
  color: var(--coral);
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  margin: 0;
  padding: 0 1.1rem 1.05rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* CTA */
.cta-footer {
  padding-bottom: 3.5rem;
}

.cta-inner {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.65rem, 3.5vw, 2.25rem);
}

@media (min-width: 860px) {
  .cta-inner {
    grid-template-columns: 1fr 0.95fr;
    align-items: start;
  }
}

.cta-inner h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
}

.cta-inner > div p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.cta-domain a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--coral);
}

.cta-domain a:hover {
  text-decoration: none;
  color: var(--coral-hover);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-inputs-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

@media (min-width: 580px) {
  .form-inputs-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lead-form input,
.lead-form select {
  padding: 0.72rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--bg-deep);
  color: var(--text);
  width: 100%;
}

.lead-form input::placeholder {
  color: color-mix(in srgb, var(--text-muted) 75%, transparent);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 2px solid color-mix(in srgb, var(--coral) 55%, transparent);
  outline-offset: 2px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.form-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.5rem;
}

.form-pill {
  position: relative;
  cursor: pointer;
  display: block;
}

.form-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-pill span {
  display: block;
  text-align: center;
  padding: 0.55rem 0.8rem;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
}

/* Checked state */
.form-pill input[type="radio"]:checked + span {
  background: linear-gradient(135deg, rgba(232, 78, 54, 0.15), rgba(107, 77, 134, 0.15));
  border-color: var(--coral);
  color: var(--text);
  box-shadow: 0 0 10px rgba(232, 78, 54, 0.15);
}

.form-pill:hover span {
  border-color: rgba(232, 78, 54, 0.5);
  color: var(--text);
}

.form-note {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2.75rem 0 1.75rem;
  background: #120818;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-title {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--text-muted) 85%, transparent);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.35rem;
}

.site-footer a {
  color: var(--text);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--coral);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--text-muted) 90%, transparent);
}

.footer-bottom p {
  margin: 0;
}

/* Section: Playlists (Unificada com mockups realistas de alta fidelidade) */
.playlists-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--coral) 6%, transparent), transparent 50%), var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 6rem 0;
  overflow: hidden;
}

.playlists-grid-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.playlists-content {
  display: flex;
  flex-direction: column;
}

.playlists-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 1rem;
}

.playlists-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 1.5rem 0;
}

@media (min-width: 768px) {
  .playlists-content h2 {
    font-size: 3rem;
  }
}

.playlists-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 2rem 0;
}

.playlists-stats-strip {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.playlist-stat-card {
  display: flex;
  flex-direction: column;
}

.playlist-stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.playlist-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.playlists-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.playlists-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.playlists-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--coral-soft);
  border: 1px solid var(--coral);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.playlists-feature-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.playlists-feature-text strong {
  color: var(--text);
}

/* Playlist Selector Grid Styling */
.playlist-selector-container {
  margin-bottom: 2.2rem;
  border-top: 1px dashed var(--border);
  padding-top: 1.5rem;
}

.playlist-selector-container .selector-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem 0;
  letter-spacing: 0.02em;
}

.playlist-selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (max-width: 600px) {
  .playlist-selector-grid {
    grid-template-columns: 1fr;
  }
}

.playlist-selector-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-family: var(--font);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s var(--ease-out);
  position: relative;
  font-size: 0.85rem;
  outline: none;
}

.playlist-selector-tab:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
}

.playlist-selector-tab.is-active {
  background: rgba(232, 78, 54, 0.08);
  border-color: var(--coral);
  color: var(--white);
  box-shadow: 0 0 16px rgba(232, 78, 54, 0.12);
}

/* Indicators */
.playlist-tab-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  margin-right: 0.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.playlist-selector-tab.is-active .playlist-tab-indicator {
  background: var(--coral);
  box-shadow: 0 0 8px var(--coral);
}

.playlist-tab-name {
  flex-grow: 1;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 0.5rem;
}

.playlist-tab-followers {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.playlist-selector-tab.is-active .playlist-tab-followers {
  color: #ffaa6e;
  border-color: rgba(232, 78, 54, 0.25);
  background: rgba(232, 78, 54, 0.15);
}

.playlists-action {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.playlists-action .btn {
  padding: 1rem 1.75rem;
}

/* Playlists Visual Column (Layered Device Mockups) */
.playlists-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  min-height: 560px;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.phone-group {
  position: relative;
  width: 320px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .phone-group-left,
  .phone-group-right {
    display: none !important;
  }
}

.playlists-glow-sphere {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  opacity: 0.25;
  filter: blur(40px);
  z-index: 0;
  border-radius: 50%;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 0.2; }
  100% { transform: scale(1.2); opacity: 0.35; }
}

/* High-fidelity CSS Smartphone Mockup */
.spotify-phone {
  position: absolute;
  width: 250px;
  height: 490px;
  background: #000;
  border: 7px solid #282828;
  border-radius: 36px;
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(0,0,0,0.8);
  overflow: hidden;
  z-index: 1;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

.phone-speaker {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  z-index: 15;
}

.phone-dynamic-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: #000;
  border-radius: 9px;
  z-index: 15;
}

.phone-screen-container {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #121212;
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: system-ui, sans-serif;
  color: #fff;
  padding: 30px 10px 10px 10px;
}

/* Spotify Mockup Header */
.spotify-app-header {
  display: flex;
  align-items: center;
  height: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 4px;
}

.back-btn {
  font-size: 1.25rem;
  margin-right: 8px;
  color: var(--text-muted);
}

.header-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

/* Spotify Mockup Body */
.spotify-app-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scrollbar-width: none;
}

.spotify-app-body::-webkit-scrollbar {
  display: none;
}

.spotify-cover {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.cover-mpb {
  background: linear-gradient(135deg, #e84e36 0%, #35104d 100%);
}

.cover-poprock {
  background: linear-gradient(135deg, #2b6cb0 0%, #1a202c 100%);
}

.cover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 70%);
}

.cover-main-text {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
}

.cover-sub-text {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

.spotify-playlist-info h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 4px 0 2px 0;
  text-align: center;
}

.spotify-curator {
  font-size: 0.6rem;
  color: #1db954;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0;
}

.spotify-desc {
  font-size: 0.62rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin: 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotify-followers-row {
  text-align: center;
}

.followers-count {
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

.spotify-control-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  margin-top: 4px;
}

.shuffle-action {
  background: none;
  border: none;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
}

.play-action {
  width: 32px;
  height: 32px;
  background: #1db954;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.spotify-tracklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.spotify-track {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.02);
}

.spotify-track.active {
  background: rgba(29, 185, 84, 0.08);
}

.track-index {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  width: 12px;
  text-align: center;
}

.spotify-track.active .track-index {
  color: #1db954;
}

.track-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.track-name {
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}

.spotify-track.active .track-name {
  color: #1db954;
}

.track-artist {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
}

.track-duration {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.3);
}

/* Spotify Bottom Nav */
.spotify-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: #121212;
  font-size: 0.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.spotify-bottom-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.spotify-bottom-nav span:first-child {
  color: #fff;
}

/* Phone Layout Layering and Animation */
.phone-back {
  transform: translateX(-40px) translateY(10px) rotate(-6deg) scale(0.92);
  z-index: 1;
  opacity: 0.75;
  border-color: #1a1a1a;
  animation: floatBack 6s infinite alternate ease-in-out;
}

.phone-front {
  transform: translateX(45px) translateY(-10px) rotate(6deg) scale(1);
  z-index: 2;
  animation: floatFront 6s infinite alternate ease-in-out;
}

.phone-back:hover {
  transform: translateX(-40px) translateY(10px) rotate(-2deg) scale(0.96) !important;
  opacity: 0.95;
  z-index: 3;
}

.phone-front:hover {
  transform: translateX(45px) translateY(-10px) rotate(2deg) scale(1.03) !important;
  z-index: 4;
  border-color: var(--coral);
}

@keyframes floatBack {
  0% { transform: translateX(-40px) translateY(15px) rotate(-6deg) scale(0.92); }
  100% { transform: translateX(-40px) translateY(-10px) rotate(-4deg) scale(0.92); }
}

@keyframes floatFront {
  0% { transform: translateX(45px) translateY(-15px) rotate(6deg) scale(1); }
  100% { transform: translateX(45px) translateY(10px) rotate(4deg) scale(1); }
}

/* Responsive adjustments for Visuals */
@media (max-width: 767px) {
  .playlists-visual {
    height: auto;
    min-height: 420px;
  }
  
  .phone-group {
    width: 260px;
    height: 420px;
  }
  
  .spotify-phone {
    width: 200px;
    height: 390px;
    border-width: 5px;
    border-radius: 28px;
  }
  
  .phone-screen-container {
    border-radius: 23px;
    padding-top: 25px;
  }
  
  .phone-back {
    transform: translateX(-25px) translateY(10px) rotate(-5deg) scale(0.9);
  }
  
  .phone-front {
    transform: translateX(30px) translateY(-10px) rotate(5deg) scale(1);
  }
  
  @keyframes floatBack {
    0% { transform: translateX(-25px) translateY(12px) rotate(-5deg) scale(0.9); }
    100% { transform: translateX(-25px) translateY(-8px) rotate(-3deg) scale(0.9); }
  }

  @keyframes floatFront {
    0% { transform: translateX(30px) translateY(-12px) rotate(5deg) scale(1); }
    100% { transform: translateX(30px) translateY(8px) rotate(3deg) scale(1); }
  }
  
  .spotify-cover {
    width: 70px;
    height: 70px;
  }
  
  .spotify-desc {
    display: none;
  }
  
  .spotify-app-body {
    gap: 4px;
  }
  
  .spotify-tracklist {
    gap: 4px;
  }
}

/* Screenshot Screen styling */
.screenshot-screen {
  padding: 0 !important;
  background: #000;
  display: block !important;
  position: relative;
}

.phone-screenshot-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  transition: opacity 0.3s ease;
}

/* ===== CLIPPINGS CAROUSEL SECTION ===== */
.clippings-section {
  background: #ffffff;
  border-top: 1px solid #e8ecf0;
  border-bottom: 1px solid #e8ecf0;
  padding: 4rem 0;
}

.clippings-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.clippings-label {
  max-width: 600px;
}


.clippings-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.6rem;
}

.clippings-label h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.clippings-label p {
  color: #64748b;
  font-size: 0.95rem;
  margin: 0;
  max-width: 480px;
}

.clippings-nav {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.clip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 700;
}

.clip-btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  transform: scale(1.07);
}

.clip-btn:active {
  transform: scale(0.95);
}

/* Track */
.clippings-track-wrap {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
}

.clippings-track {
  width: 100%;
  position: relative;
}

.clip-slide {
  display: none;
}

.clip-slide.active {
  display: block;
  animation: clipFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Gallery: 2 cards per slide */
.clip-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  /* height is driven by the cards below */
}

.clip-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.09), 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.clip-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.14);
  transform: translateY(-3px);
}

/* Fixed-height image area — image shown 100% proportional inside */
.clip-card-img-wrap {
  position: relative;
  width: 100%;
  height: 340px;          /* fixed height so both cards in a pair align */
  background: #f1f5f9;    /* letterbox/pillarbox fill colour */
  overflow: hidden;
  flex-shrink: 0;
}

.clip-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;    /* no cropping — full screenshot visible */
  object-position: center top;
}

.clip-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid #f1f5f9;
  flex-shrink: 0;
}

.clip-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #120818;
  margin: 0;
  line-height: 1.3;
}

.clip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .clip-pair {
    grid-template-columns: 1fr;
  }
  .clip-card-img-wrap {
    height: 240px;
  }
}


.clip-caption {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-radius: 0 0 16px 16px;
}

.clip-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral);
  background: rgba(232, 78, 54, 0.06);
  border: 1px solid rgba(232, 78, 54, 0.25);
  padding: 0.28rem 0.7rem;
  border-radius: 99px;
}

.clip-case {
  font-size: 0.82rem;
  color: #334155;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.clip-case::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e6f6e6;
  color: #34a853;
  font-size: 0.65rem;
  font-weight: 900;
}

/* Dots */
.clip-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.clip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.clip-dot.active {
  background: var(--coral);
  width: 24px;
  border-radius: 4px;
}

/* ===== END CLIPPINGS CAROUSEL ===== */

/* Plan Deck Combos */
.plan-deck-combos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .plan-deck-combos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .marquee-track {
    animation: none;
  }
}


/* ==========================================
   CHECKOUT PAYMENT SYSTEM MODAL STYLES
   ========================================== */

.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 6, 16, 0.85);
  backdrop-filter: blur(12px) saturate(1.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.checkout-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.checkout-box {
  background: linear-gradient(145deg, rgba(38, 22, 48, 0.96), rgba(18, 10, 24, 0.98)) padding-box,
              linear-gradient(135deg, rgba(255, 122, 89, 0.35), rgba(255, 170, 110, 0.15)) border-box;
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 2.2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), 0 0 100px rgba(255, 122, 89, 0.12);
  position: relative;
  transform: scale(0.92) translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.checkout-overlay.is-active .checkout-box {
  transform: scale(1) translateY(0);
}

.checkout-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.checkout-close:hover {
  background: rgba(232, 78, 54, 0.2);
  color: #ff8e75;
  transform: rotate(90deg);
}

.checkout-header {
  margin-bottom: 1.6rem;
}

.checkout-header h2 {
  font-size: 1.65rem;
  margin: 0.5rem 0 0.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.checkout-summary {
  background: rgba(25, 18, 30, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  margin-bottom: 1.6rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-row.total {
  border-top: 1px dashed var(--border);
  padding-top: 0.55rem;
  margin-top: 0.55rem;
  font-size: 1.1rem;
  color: var(--text);
}

.checkout-tabs {
  display: flex;
  background: rgba(25, 18, 30, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.25rem;
  margin-bottom: 1.6rem;
  gap: 0.25rem;
}

.checkout-tab {
  flex: 1;
  border: none;
  background: none;
  color: var(--text-muted);
  padding: 0.75rem 0.6rem;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.checkout-tab.is-active {
  background: rgba(232, 78, 54, 0.15);
  color: #ffaa6e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.checkout-panel {
  display: none;
}

.checkout-panel.is-active {
  display: block;
  animation: fadeInCheckout 0.3s ease;
}

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

/* Pix Panel Styles */
.pix-qr-container {
  display: flex;
  justify-content: center;
  margin: 1.4rem 0;
}

.pix-qr {
  width: 160px;
  height: 160px;
  background: var(--text);
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.pix-key-container {
  margin-bottom: 1.6rem;
}

.pix-key-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.pix-key-row input {
  flex: 1;
  background: rgba(25, 18, 30, 0.6);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Credit Card visualizer */
.credit-card-wrapper {
  perspective: 1000px;
  margin: 1rem auto 1.8rem;
  width: 100%;
  max-width: 320px;
  height: 180px;
}

.credit-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  border-radius: var(--radius-lg);
}

.credit-card.flipped {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, #3a1542, #180924);
  border: 1px solid rgba(255,255,255,0.08);
}

.card-front::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 80% 20%, rgba(232, 78, 54, 0.22), transparent 70%);
  pointer-events: none;
}

.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #180924, #100618);
  padding: 1.4rem 0;
  justify-content: flex-start;
}

.card-magnetic-strip {
  height: 38px;
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  margin-top: 0.5rem;
}

.card-signature {
  margin: 1.8rem 1.4rem 0;
  background: rgba(255, 255, 255, 0.95);
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.8rem;
  position: relative;
}

.card-signature .label {
  position: absolute;
  bottom: calc(100% + 4px);
  right: 0;
  font-size: 0.55rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.card-signature .val {
  color: #111;
  font-family: monospace;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.card-chip {
  width: 42px;
  height: 30px;
  background: linear-gradient(135deg, #ffc885, #d2792e);
  border-radius: 6px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.4);
}

.card-number-display {
  font-size: 1.25rem;
  font-family: monospace;
  letter-spacing: 0.1em;
  color: var(--text);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  margin: 1.1rem 0 0.5rem;
}

.card-row {
  display: flex;
  justify-content: space-between;
}

.card-front .label {
  display: block;
  font-size: 0.55rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.card-front .val {
  display: block;
  font-size: 0.78rem;
  font-family: monospace;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  text-transform: uppercase;
}

/* Card checkout form */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.checkout-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.checkout-form label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.checkout-form input {
  background: rgba(25, 18, 30, 0.65);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.checkout-form input:focus {
  border-color: var(--coral);
  outline: none;
  background: rgba(38, 22, 48, 0.85);
  box-shadow: 0 0 12px rgba(232, 78, 54, 0.15);
}

.checkout-form .form-row {
  display: flex;
  gap: 1rem;
}

.checkout-form .form-row .form-group {
  flex: 1;
}

/* Success step */
.success-icon-container {
  display: flex;
  justify-content: center;
  margin: 1.2rem 0 1.6rem;
}

.success-checkmark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #4bb543;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4bb543;
  animation: fillSuccess .4s ease-in-out .4s forwards, scaleSuccess .3s ease-in-out .9s forwards;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #4bb543;
  fill: none;
  animation: strokeSuccess .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: #fff;
  animation: strokeSuccess .3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeSuccess {
  100% { stroke-dashoffset: 0; }
}

@keyframes fillSuccess {
  100% { box-shadow: inset 0px 0px 0px 40px #4bb543; }
}

@keyframes scaleSuccess {
  0%, 100% { transform: none; }
  50% { transform: scale3d(1.1, 1.1, 1); }
}

.success-details {
  background: rgba(75, 181, 67, 0.06);
  border: 1px solid rgba(75, 181, 67, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  margin: 1.6rem 0;
  text-align: left;
}

.success-details h4 {
  color: #55c84d;
  font-weight: 800;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.success-details ol {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.success-details li strong {
  color: var(--text);
}


/* ==========================================
   AMBIENT BACKGROUND ORBS & SCROLL REVEAL STYLES
   ========================================== */

/* Ambient background float animations */
@keyframes floatOrbA {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -45px) scale(1.08); }
  66% { transform: translate(-25px, 25px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatOrbB {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-45px, 35px) scale(1.12); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes floatOrbC {
  0% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(45px, 30px) scale(1.05); }
  80% { transform: translate(-35px, -25px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

.orb-a {
  animation: floatOrbA 24s ease-in-out infinite !important;
}

.orb-b {
  animation: floatOrbB 30s ease-in-out infinite alternate !important;
}

.orb-c {
  animation: floatOrbC 28s ease-in-out infinite !important;
}

.orb-d {
  animation: floatOrbA 36s ease-in-out infinite alternate !important;
}

.orb-e {
  animation: floatOrbB 26s ease-in-out infinite !important;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }
