/* ====================================================
   GoFan Landing — Variation 1: FESTA BRASILEIRA
   Quente, vibrante, festivo. Vermelho/laranja/amarelo.
   ==================================================== */

.festa-root {
  --accent: #ff5a3c;
  --accent-soft: rgba(255, 90, 60, 0.2);
  --bg: #0a0408;
  --bg-card: #14080d;
  --bg-elev: #1f0d14;
  --text: #fff8ee;
  --text-soft: #d4b8a4;
  --text-muted: #8a7060;
  --warm: #ffb44c;
  --warm-2: #ff8b2d;
  --green: #22e0a0;

  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Background blobs */
.festa-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.festa-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: festaFloat 14s ease-in-out infinite;
}

.festa-blob-1 {
  top: -10%;
  left: -20%;
  width: 80%;
  height: 60%;
  background: radial-gradient(circle, var(--accent), transparent 70%);
}

.festa-blob-2 {
  top: 5%;
  right: -25%;
  width: 70%;
  height: 50%;
  background: radial-gradient(circle, var(--warm), transparent 70%);
  animation-delay: -4s;
}

.festa-blob-3 {
  top: 60%;
  left: 30%;
  width: 60%;
  height: 40%;
  background: radial-gradient(circle, #c14a8a, transparent 70%);
  animation-delay: -8s;
  opacity: 0.3;
}

@keyframes festaFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.98); }
}

.festa-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at top, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 30%, transparent 80%);
}

/* NAV */
.festa-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(10, 4, 8, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.festa-logo {
  display: flex;
  align-items: baseline;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.festa-logo-go { color: var(--accent); }
.festa-logo-fan { color: #fff; }

.festa-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--warm-2));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255,90,60,0.4);
  transition: transform 0.2s;
}
.festa-nav-cta:hover { transform: translateY(-1px); }

/* HERO */
.festa-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  padding: 60px 56px 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.festa-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.festa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.festa-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,90,60,0.2);
  animation: festaPulse 1.6s ease-in-out infinite;
}
@keyframes festaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,90,60,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(255,90,60,0); }
}

.festa-h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin: 0;
  text-wrap: balance;
}

.festa-h1-accent {
  background: linear-gradient(135deg, var(--accent), var(--warm), #ffd87a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.festa-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
  max-width: 540px;
  text-wrap: pretty;
}

.festa-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.festa-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #ffe8c8);
  color: #1a0a08;
  text-decoration: none;
  font-weight: 700;
  box-shadow:
    0 16px 40px rgba(255,90,60,0.35),
    inset 0 0 0 1px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.festa-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(255,90,60,0.5), inset 0 0 0 1px rgba(0,0,0,0.05);
}

.festa-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.festa-cta-text small {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 700;
  opacity: 0.7;
}
.festa-cta-text strong {
  font-size: 18px;
  font-weight: 800;
}

.festa-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.festa-stars {
  display: flex;
  gap: 2px;
  color: var(--warm);
}
.festa-rating > span:last-child {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
}

.festa-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.festa-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 500;
}
.festa-trust-item svg { color: var(--green); }

/* HERO PHONES */
.festa-hero-phones {
  position: relative;
  height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.festa-phone-back {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  z-index: 1;
  filter: brightness(0.85);
}

.festa-phone-front {
  position: relative;
  z-index: 3;
  animation: festaFloatPhone 6s ease-in-out infinite;
}

.festa-phone-side {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  z-index: 1;
  filter: brightness(0.85);
}

@keyframes festaFloatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Phone frame (used by all variants) */
.phone-shell {
  position: relative;
  display: inline-block;
  animation: festaFloatPhone 7s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, var(--phone-glow), transparent 70%);
  filter: blur(40px);
  opacity: 0.7;
  z-index: -1;
  animation: festaPulseGlow 4s ease-in-out infinite;
}

@keyframes festaPulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.85; }
}

.phone-body {
  width: 280px;
  aspect-ratio: 525 / 903;
  border-radius: 38px;
  background: linear-gradient(145deg, #2a1a1a, #0a0408);
  padding: 8px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 5;
}

.phone-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

/* Floating chips on hero phones */
.festa-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 8, 13, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 4;
  animation: festaChipFloat 5s ease-in-out infinite;
}

.festa-chip-1 {
  top: 12%;
  right: 5%;
  color: #ff5a3c;
  border-color: rgba(255,90,60,0.4);
  animation-delay: -1s;
}
.festa-chip-1 svg { color: #ff5a3c; animation: festaPulse 1.4s ease-in-out infinite; }

.festa-chip-2 {
  bottom: 22%;
  left: 0;
  color: var(--green);
  border-color: rgba(34,224,160,0.3);
  animation-delay: -2.5s;
}
.festa-chip-2 svg { color: var(--green); }

.festa-chip-3 {
  top: 32%;
  left: 4%;
  color: var(--warm);
  border-color: rgba(255,180,76,0.3);
  animation-delay: -4s;
}
.festa-chip-3 svg { color: var(--warm); }

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

/* STATS BAND */
.festa-stats {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 56px;
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,90,60,0.08), rgba(255,180,76,0.04));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 20px;
}
.festa-stat { text-align: center; }
.festa-stat-num {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.festa-stat-lbl {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}
.festa-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* SECTIONS */
.festa-section {
  position: relative;
  z-index: 1;
  padding: 100px 56px;
  max-width: 1280px;
  margin: 0 auto;
}

.festa-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}

.festa-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 800px;
  text-wrap: balance;
}
.festa-h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent), var(--warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.festa-section-sub {
  font-size: 16px;
  color: var(--text-soft);
  margin: 0 0 40px;
  max-width: 560px;
  line-height: 1.5;
}

/* FEATURES */
.festa-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 40px;
}

.festa-feature {
  background: linear-gradient(145deg, var(--bg-elev), var(--bg-card));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.festa-feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent-soft);
}

.festa-feature-lg {
  grid-column: span 1;
  grid-row: span 2;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,90,60,0.18), transparent 50%),
    linear-gradient(145deg, var(--bg-elev), var(--bg-card));
}

.festa-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.festa-feature h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.festa-feature p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
  margin: 0;
}

.festa-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.festa-channel-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--c, var(--accent));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.festa-channel-more {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

/* CHANNELS GRID */
.festa-channels-section {
  background:
    radial-gradient(ellipse at center, rgba(255,90,60,0.06), transparent 70%);
}

.festa-channels-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.festa-channel-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 50%),
    linear-gradient(135deg, var(--card-bg), color-mix(in srgb, var(--card-bg) 50%, #000));
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  animation: festaFadeUp 0.6s ease backwards;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.festa-channel-card:hover {
  transform: translateY(-4px) scale(1.03);
}

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

.festa-channel-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  letter-spacing: -0.02em;
  pointer-events: none;
}

.festa-channel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  color: #fff;
}

.festa-channel-badges { display: flex; gap: 4px; flex-direction: column; align-items: flex-end; }

.festa-channel-live {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 6px;
  border-radius: 6px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.festa-channel-live svg { color: #ff3a44; }

.festa-channel-vip {
  padding: 3px 6px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ffd84a, #ff9d2c);
  color: #1a0a08;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.festa-channel-name {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.festa-channel-play {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

/* MOVIES MARQUEE GALLERY */
.festa-movies-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-left: -56px;
  margin-right: -56px;
  padding: 8px 0 30px;
}
.festa-movies-marquee::before,
.festa-movies-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 4;
  pointer-events: none;
}
.festa-movies-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-1), transparent);
}
.festa-movies-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-1), transparent);
}

.festa-movies-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: festaMoviesScroll 35s linear infinite;
}
.festa-movies-track:hover {
  animation-play-state: paused;
}

@keyframes festaMoviesScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

.festa-movie-card {
  width: 200px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}
.festa-movie-card:hover { transform: translateY(-6px); }

.festa-movie-rank {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--warm));
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255,90,60,0.5);
  z-index: 3;
}

.festa-movie-poster {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 16px;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.2), transparent 50%),
    linear-gradient(180deg, var(--m-bg), color-mix(in srgb, var(--m-bg) 30%, #000));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.festa-movie-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.festa-movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6));
}

.festa-movie-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  line-height: 1;
}

.festa-movie-genre {
  font-size: 11px;
  opacity: 0.8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.festa-movie-info { padding: 14px 4px 0; }
.festa-movie-name { font-size: 14px; font-weight: 700; color: var(--text); }
.festa-movie-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* WALKTHROUGH STEPS */
.festa-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  align-items: start;
}

.festa-step {
  text-align: center;
  position: relative;
}

.festa-step-num {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--warm));
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 24px rgba(255,90,60,0.4);
  position: relative;
  z-index: 2;
}

.festa-step .phone-shell {
  margin-bottom: 24px;
}

.festa-step h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.festa-step p {
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
  max-width: 260px;
  margin: 0 auto;
  line-height: 1.5;
}

/* VIDEO */
.festa-video-section { text-align: center; }
.festa-video-frame {
  margin-top: 40px;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}
.festa-video-frame iframe { width: 100%; height: 100%; border: 0; }

/* TESTIMONIALS */
.festa-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.festa-testimonial {
  background: linear-gradient(145deg, var(--bg-elev), var(--bg-card));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}

.festa-testimonial-quote {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--accent);
  opacity: 0.3;
}

.festa-testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--warm);
  margin-bottom: 12px;
}

.festa-testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 20px;
  text-wrap: pretty;
}

.festa-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.festa-testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 16px;
}

.festa-testimonial-name {
  font-size: 14px;
  font-weight: 700;
}
.festa-testimonial-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ */
.festa-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
  max-width: 720px;
}

.festa-faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.2s;
}
.festa-faq-item.open {
  border-color: var(--accent-soft);
  background: linear-gradient(145deg, var(--bg-elev), var(--bg-card));
}

.festa-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  gap: 16px;
}

.festa-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.festa-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.festa-faq-item.open .festa-faq-a {
  max-height: 200px;
  padding: 0 22px 20px;
}

/* FINAL CTA */
.festa-final-cta {
  position: relative;
  z-index: 1;
  padding: 120px 56px;
  margin: 60px auto 0;
  max-width: 1180px;
  text-align: center;
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,90,60,0.3), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,180,76,0.25), transparent 50%),
    linear-gradient(145deg, #1f0808, #0a0408);
  border: 1px solid rgba(255,90,60,0.2);
  overflow: hidden;
}

.festa-final-glow {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 180deg at 50% 50%,
    transparent 0deg,
    rgba(255,90,60,0.08) 60deg,
    transparent 120deg,
    rgba(255,180,76,0.08) 240deg,
    transparent 360deg
  );
  animation: festaSpin 20s linear infinite;
  pointer-events: none;
}

@keyframes festaSpin {
  to { transform: rotate(360deg); }
}

.festa-final-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.festa-final-h {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
}
.festa-final-h-accent {
  background: linear-gradient(135deg, var(--accent), var(--warm), #ffd87a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.festa-final-sub {
  font-size: 18px;
  color: var(--text-soft);
  margin: 0;
  max-width: 520px;
  line-height: 1.5;
}

.festa-cta-big {
  padding: 20px 36px;
  border-radius: 22px;
  font-size: 20px;
}
.festa-cta-big .festa-cta-text strong {
  font-size: 24px;
}
.festa-cta-big .festa-cta-text small {
  font-size: 11px;
}

.festa-final-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* FOOTER */
.festa-footer {
  padding: 40px 56px 60px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}
.festa-footer .festa-logo {
  justify-content: center;
  margin-bottom: 12px;
}
.festa-footer p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .festa-hero {
    grid-template-columns: 1fr;
    padding: 32px 20px 60px;
    gap: 40px;
  }
  .festa-hero-phones {
    height: 480px;
  }
  .phone-body {
    width: 220px;
  }
  .festa-section { padding: 60px 20px; }
  .festa-features {
    grid-template-columns: 1fr;
  }
  .festa-feature-lg {
    grid-column: span 1;
    grid-row: span 1;
  }
  .festa-channels-grid { grid-template-columns: repeat(3, 1fr); }
  .festa-steps { grid-template-columns: 1fr; }
  .festa-testimonials { grid-template-columns: 1fr; }
  .festa-stats {
    padding: 28px 20px;
    gap: 16px;
  }
  .festa-stat-num { font-size: 32px; }
  .festa-final-cta {
    padding: 60px 24px;
    border-radius: 28px;
    margin: 40px 16px 0;
  }
  .festa-cta-big { padding: 16px 24px; font-size: 16px; }
  .festa-cta-big .festa-cta-text strong { font-size: 20px; }
  .festa-movies-marquee { margin-left: -20px; margin-right: -20px; padding: 8px 0 30px; }
  .festa-movie-card { width: 160px; }
  .festa-nav { padding: 12px 20px; }
}

@media (max-width: 540px) {
  .festa-hero {
    padding: 24px 16px 32px;
    gap: 24px;
  }
  .festa-h1 { font-size: 30px; line-height: 1.05; text-wrap: balance; }
  .festa-sub { font-size: 14px; }
  .festa-cta-row { gap: 14px; }
  .festa-trust { gap: 10px; }
  .festa-trust-item { font-size: 12px; }
  .festa-hero-phones {
    height: 360px;
    overflow: hidden;
  }
  .phone-body { width: 180px; }
  /* Hide side/back phones on small mobile, just show the hero phone */
  .festa-phone-back, .festa-phone-side { display: none; }
  .festa-chip { font-size: 10px; padding: 6px 10px; }
  .festa-chip-1 { right: 4%; top: 6%; }
  .festa-chip-2 { left: 4%; bottom: 8%; }
  .festa-chip-3 { left: 4%; top: 28%; }

  .festa-section { padding: 48px 16px; }
  .festa-h2 { font-size: 28px; }
  .festa-channels-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .festa-channel-name { font-size: 14px; }
  .festa-channel-watermark { font-size: 38px; }
  .festa-stat-divider { display: none; }
  .festa-stats { justify-content: space-between; gap: 12px; }
  .festa-stat { flex: 1 1 40%; }
  .festa-stat-num { font-size: 28px; }
  .festa-stat-lbl { font-size: 10px; }
  .festa-feature { padding: 22px; border-radius: 18px; }
  .festa-feature h3 { font-size: 18px; }
  .festa-final-h { font-size: 38px; }
  .festa-final-sub { font-size: 15px; }
  .festa-cta-big { padding: 14px 20px; }
  .festa-cta-big .festa-cta-text strong { font-size: 18px; }
  .festa-movies-marquee { margin-left: -16px; margin-right: -16px; padding: 8px 0 30px; }
  .festa-movie-card { width: 140px; }
  .festa-faq-q { font-size: 14px; padding: 16px 18px; gap: 10px; }
  .festa-faq-item.open .festa-faq-a { padding: 0 18px 16px; font-size: 13px; }
  .festa-step h4 { font-size: 16px; }
  .festa-step p { font-size: 13px; }
  .festa-testimonial { padding: 22px; }
  .festa-testimonial-text { font-size: 14px; }
  .festa-final-cta { padding: 50px 20px; margin: 30px 12px 0; }
  .festa-final-trust { gap: 12px; }
  .festa-footer { padding: 28px 20px 40px; }
}

@media (max-width: 380px) {
  .festa-h1 { font-size: 26px; }
  .festa-h2 { font-size: 22px; }
  .festa-hero-phones { height: 320px; }
  .phone-body { width: 160px; }
  .festa-cta-primary { padding: 12px 18px; }
  .festa-cta-text strong { font-size: 15px; }
  .festa-cta-text small { font-size: 9px; }
  .festa-final-h { font-size: 30px; }
}
