/* FAST PLAYER — Design system */
:root {
  --fp-bg: #071018;
  --fp-bg-2: #0c1a24;
  --fp-surface: #122231;
  --fp-surface-2: #183041;
  --fp-text: #e8f1f6;
  --fp-muted: #8fa8b8;
  --fp-accent: #00d4aa;
  --fp-accent-2: #00b4d8;
  --fp-warm: #ff6b4a;
  --fp-border: rgba(255, 255, 255, 0.08);
  --fp-radius: 14px;
  --fp-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --fp-font: "Sora", system-ui, sans-serif;
  --fp-display: "Outfit", "Sora", sans-serif;
  --fp-max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--fp-font);
  color: var(--fp-text);
  background: var(--fp-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fp-accent-2); text-decoration: none; }
a:hover { color: var(--fp-accent); }
h1, h2, h3, h4 {
  font-family: var(--fp-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; color: var(--fp-muted); }

.fp-container {
  width: min(100% - 2rem, var(--fp-max));
  margin-inline: auto;
}

/* Top bar */
.fp-topbar {
  background: #040a10;
  border-bottom: 1px solid var(--fp-border);
  font-size: 0.82rem;
  padding: 0.55rem 0;
  color: var(--fp-muted);
}
.fp-topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.fp-topbar strong { color: var(--fp-accent); }

/* Nav */
.fp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 16, 24, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--fp-border);
}
.fp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.fp-nav__brand img {
  height: 42px;
  width: auto;
}
.fp-nav__brand span {
  font-family: var(--fp-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.04em;
}
.fp-nav__brand span em {
  font-style: normal;
  color: var(--fp-accent);
}
.fp-nav__menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-nav__menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  color: var(--fp-text);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 8px;
}
.fp-nav__menu a:hover,
.fp-nav__menu a.is-active {
  background: rgba(0, 212, 170, 0.1);
  color: var(--fp-accent);
}
.fp-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.1rem !important;
  background: linear-gradient(135deg, var(--fp-accent), var(--fp-accent-2)) !important;
  color: #041018 !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
}
.fp-nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--fp-border);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* Buttons */
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fp-btn:hover { transform: translateY(-2px); }
.fp-btn--primary {
  background: linear-gradient(135deg, var(--fp-accent), #00e0c0);
  color: #041018;
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.25);
}
.fp-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.fp-btn--warm {
  background: linear-gradient(135deg, var(--fp-warm), #ff8f6b);
  color: #1a0905;
}

/* Hero */
.fp-hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 180, 216, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(0, 212, 170, 0.12), transparent 50%),
    linear-gradient(180deg, #0a1620 0%, var(--fp-bg) 100%);
}
.fp-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.fp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fp-accent);
  margin-bottom: 1rem;
}
.fp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  color: #fff;
  margin-bottom: 1rem;
}
.fp-hero__subtitle {
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.fp-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.fp-hero__stat strong {
  display: block;
  font-size: 1.35rem;
  color: #fff;
  font-family: var(--fp-display);
}
.fp-hero__stat span { font-size: 0.8rem; color: var(--fp-muted); }
.fp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.fp-hero__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--fp-shadow);
  border: 1px solid var(--fp-border);
  animation: fp-float 6s ease-in-out infinite;
}
.fp-hero__media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@keyframes fp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Sections */
.fp-section {
  padding: 4.5rem 0;
}
.fp-section--alt {
  background: var(--fp-bg-2);
}
.fp-section__head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.fp-section__head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
}
.fp-section__eyebrow {
  color: var(--fp-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Cards / features — interaction-oriented, not decorative card spam */
.fp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fp-feature {
  padding: 1.5rem 0;
  border-top: 2px solid var(--fp-accent);
}
.fp-feature h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0.8rem 0 0.5rem;
}
.fp-feature__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 212, 170, 0.12);
  color: var(--fp-accent);
  font-size: 1.15rem;
}

/* Steps */
.fp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.fp-step {
  position: relative;
  padding-left: 3.5rem;
}
.fp-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--fp-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--fp-accent);
}
.fp-step h3 { color: #fff; font-size: 1.15rem; }

/* Pricing section */
.fp-text-accent { color: var(--fp-accent); }
.fp-section__head--center {
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.fp-pricing {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 212, 170, 0.14), transparent 55%),
    var(--fp-bg);
}
.fp-pricing__glow {
  pointer-events: none;
  position: absolute;
  inset: auto 10% -20% 10%;
  height: 40%;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.12), transparent 70%);
}
.fp-pricing__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 0 auto 2.5rem;
  max-width: 44rem;
}
.fp-pricing__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--fp-muted);
}
.fp-pricing__trust i { color: var(--fp-accent); }
.fp-pricing__foot {
  text-align: center;
  margin: 2rem 0 0;
  font-size: 0.95rem;
}
.fp-pricing__foot a { font-weight: 700; }

.fp-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.fp-plan {
  --plan-pad: 1.65rem;
  background: linear-gradient(165deg, #152636 0%, #0e1a24 100%);
  border: 1px solid var(--fp-border);
  border-radius: 20px;
  padding: calc(var(--plan-pad) + 0.4rem) var(--plan-pad) var(--plan-pad);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.25s, box-shadow 0.35s;
}
.fp-plan::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.35), transparent);
  opacity: 0.6;
}
.fp-plan:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 170, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.fp-plan--featured {
  border-color: rgba(0, 212, 170, 0.55);
  background:
    linear-gradient(165deg, #1a3d48 0%, #102830 45%, #0e1a24 100%);
  box-shadow:
    0 0 0 1px rgba(0, 212, 170, 0.2),
    0 28px 60px rgba(0, 212, 170, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.4);
  transform: scale(1.03);
  z-index: 2;
}
.fp-plan--featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.fp-plan--featured::before {
  height: 4px;
  background: linear-gradient(90deg, var(--fp-accent-2), var(--fp-accent), #7dffd4);
  opacity: 1;
}
.fp-plan__ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, var(--fp-accent), #00e8c0);
  color: #041018;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 212, 170, 0.35);
  animation: fp-pulse-soft 2.8s ease-in-out infinite;
}
.fp-plan__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fp-accent);
  border: 1px solid rgba(0, 212, 170, 0.35);
  background: rgba(0, 212, 170, 0.08);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
@keyframes fp-pulse-soft {
  0%, 100% { box-shadow: 0 6px 16px rgba(0, 212, 170, 0.3); }
  50% { box-shadow: 0 6px 22px rgba(0, 212, 170, 0.55); }
}
.fp-plan__head {
  margin-bottom: 1.1rem;
  padding-right: 6.5rem;
  min-height: 4.2rem;
}
.fp-plan__head h3 {
  color: #fff;
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
}
.fp-plan__tagline {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--fp-muted);
}
.fp-plan__price-block {
  margin-bottom: 0.5rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--fp-border);
}
.fp-plan__was {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--fp-muted);
  text-decoration: line-through;
  opacity: 0.75;
  margin-bottom: 0.15rem;
}
.fp-plan__price {
  font-family: var(--fp-display);
  font-size: clamp(2.1rem, 3vw, 2.55rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}
.fp-plan__price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fp-muted);
  letter-spacing: 0;
}
.fp-plan__equiv {
  margin: 0.45rem 0 0;
  font-size: 0.86rem;
  color: var(--fp-muted);
}
.fp-plan__equiv strong { color: #fff; }
.fp-plan__save {
  display: inline-block;
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: #041018;
  background: rgba(0, 212, 170, 0.9);
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
}
.fp-plan__list {
  list-style: none;
  margin: 1.15rem 0 1.5rem;
  padding: 0;
  flex: 1;
}
.fp-plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.48rem 0;
  color: rgba(232, 241, 246, 0.88);
  font-size: 0.92rem;
  line-height: 1.35;
}
.fp-plan__list li::before { content: none; }
.fp-plan__ico {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 212, 170, 0.12);
  color: var(--fp-accent);
  font-size: 0.78rem;
  margin-top: 0.05rem;
}
.fp-plan--featured .fp-plan__ico {
  background: rgba(0, 212, 170, 0.2);
}
.fp-plan__cta {
  width: 100%;
  margin-top: auto;
}
.fp-plan--featured .fp-plan__cta {
  box-shadow: 0 10px 28px rgba(0, 212, 170, 0.28);
}

/* Devices + content showcase */
.fp-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.fp-cat {
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(24, 48, 65, 0.9), rgba(12, 26, 36, 0.95));
  border: 1px solid var(--fp-border);
  transition: border-color 0.25s, transform 0.25s;
}
.fp-cat:hover {
  border-color: rgba(0, 212, 170, 0.4);
  transform: translateY(-3px);
}
.fp-cat__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 212, 170, 0.12);
  color: var(--fp-accent);
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.fp-cat h3 {
  color: #fff;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}
.fp-cat p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.fp-media {
  margin: 2.5rem 0 0;
}
.fp-media__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #050b10;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.fp-media__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.25);
  border-radius: inherit;
}
.fp-media__frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  display: block;
}
#conteudo .fp-media__frame img {
  object-position: left center;
}
#dispositivos .fp-media__frame img {
  object-position: center 72%;
}
.fp-media__caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  color: var(--fp-muted);
  font-size: 0.9rem;
}
.fp-media__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.28);
  color: var(--fp-accent);
  font-weight: 700;
  font-size: 0.82rem;
}

.fp-devices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.fp-device {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  background: linear-gradient(160deg, #152636, #0e1a24);
  border: 1px solid var(--fp-border);
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.fp-device:hover {
  border-color: var(--fp-accent);
  color: #fff;
  transform: translateY(-3px);
  background: linear-gradient(160deg, #1a3a4a, #122230);
}
.fp-device__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(0, 212, 170, 0.12);
  color: var(--fp-accent);
  font-size: 1.15rem;
}
.fp-device__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}
.fp-device__body strong {
  font-size: 0.95rem;
  font-weight: 700;
}
.fp-device__body span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--fp-muted);
  margin: 0;
}
.fp-device__arrow {
  color: var(--fp-muted);
  font-size: 0.75rem;
  transition: transform 0.2s, color 0.2s;
}
.fp-device:hover .fp-device__arrow {
  color: var(--fp-accent);
  transform: translateX(3px);
}

/* Legacy channel styles (páginas internas) */
.fp-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.fp-channel {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--fp-border);
}
.fp-channel h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

/* Content / article */
.fp-prose {
  max-width: 720px;
}
.fp-prose h2 {
  color: #fff;
  margin-top: 2.2rem;
  font-size: 1.45rem;
}
.fp-prose h3 {
  color: #fff;
  margin-top: 1.6rem;
  font-size: 1.15rem;
}
.fp-prose ul, .fp-prose ol {
  color: var(--fp-muted);
  padding-left: 1.2rem;
}
.fp-prose li { margin-bottom: 0.4rem; }
.fp-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.fp-prose th, .fp-prose td {
  border: 1px solid var(--fp-border);
  padding: 0.7rem 0.9rem;
  text-align: left;
}
.fp-prose th {
  background: var(--fp-surface);
  color: #fff;
}
.fp-callout {
  margin: 1.75rem 0;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--fp-accent);
  background: rgba(0, 212, 170, 0.06);
  border-radius: 0 var(--fp-radius) var(--fp-radius) 0;
}
.fp-callout p { margin: 0; color: var(--fp-text); }

/* FAQ */
.fp-faq details {
  border-bottom: 1px solid var(--fp-border);
  padding: 1rem 0;
}
.fp-faq summary {
  cursor: pointer;
  font-weight: 650;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.fp-faq summary::-webkit-details-marker { display: none; }
.fp-faq summary::after {
  content: "+";
  color: var(--fp-accent);
  font-size: 1.3rem;
  font-weight: 400;
}
.fp-faq details[open] summary::after { content: "−"; }
.fp-faq details p {
  margin: 0.75rem 0 0.25rem;
  max-width: 40rem;
}

/* Breadcrumb */
.fp-breadcrumb {
  padding: 1rem 0 0;
  font-size: 0.85rem;
}
.fp-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--fp-muted);
}
.fp-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  opacity: 0.5;
}
.fp-breadcrumb a { color: var(--fp-muted); }
.fp-breadcrumb a:hover { color: var(--fp-accent); }

/* Blog */
.fp-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.fp-blog-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  background: var(--fp-surface);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  color: inherit;
  min-height: 200px;
  transition: border-color 0.2s, transform 0.2s;
}
.fp-blog-card:hover {
  border-color: var(--fp-accent);
  transform: translateY(-3px);
  color: inherit;
}
.fp-blog-card__meta {
  font-size: 0.78rem;
  color: var(--fp-accent);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.fp-blog-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.fp-blog-card p {
  font-size: 0.9rem;
  flex: 1;
}

/* Cities */
.fp-city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.fp-city-link {
  display: block;
  padding: 1.35rem 1.5rem;
  background: var(--fp-surface);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}
.fp-city-link:hover {
  border-color: var(--fp-accent);
  color: var(--fp-accent);
}
.fp-city-link span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fp-muted);
  margin-top: 0.25rem;
}

/* CTA band */
.fp-cta-band {
  padding: 3.5rem 0;
  background:
    linear-gradient(120deg, rgba(0, 212, 170, 0.15), rgba(0, 180, 216, 0.1)),
    var(--fp-surface);
  border-block: 1px solid var(--fp-border);
  text-align: center;
}
.fp-cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); }
.fp-cta-band p { max-width: 32rem; margin: 0 auto 1.5rem; }

/* Footer */
.fp-footer {
  padding: 3.5rem 0 2rem;
  background: #040a10;
  border-top: 1px solid var(--fp-border);
}
.fp-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.fp-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.fp-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-footer li { margin-bottom: 0.45rem; }
.fp-footer a { color: var(--fp-muted); font-size: 0.9rem; }
.fp-footer a:hover { color: var(--fp-accent); }
.fp-footer__brand {
  font-family: var(--fp-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.fp-footer__brand em {
  font-style: normal;
  color: var(--fp-accent);
}
.fp-footer__copy {
  border-top: 1px solid var(--fp-border);
  padding-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--fp-muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Reviews strip */
.fp-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.fp-review {
  padding: 1.25rem 0;
  border-top: 1px solid var(--fp-border);
}
.fp-review p { color: var(--fp-text); font-size: 0.95rem; }
.fp-review cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--fp-muted);
  font-weight: 600;
}

/* Page header (inner) */
.fp-page-hero {
  padding: 2.5rem 0 2rem;
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, rgba(0, 180, 216, 0.12), transparent 50%),
    var(--fp-bg-2);
  border-bottom: 1px solid var(--fp-border);
}
.fp-page-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 18ch;
}
.fp-page-hero .fp-hero__subtitle { max-width: 36rem; }
.fp-page-hero--guide h1 { max-width: 16ch; }
.fp-page-hero--guide .fp-hero__actions { margin-bottom: 1.25rem; }

/* Guide page template (O que é IPTV + reutilizável) */
.fp-guide__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.fp-guide__pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--fp-border);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(232, 241, 246, 0.9);
}
.fp-guide__pills i { color: var(--fp-accent); }
.fp-guide__split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}
.fp-guide__lead {
  font-size: 1.08rem;
  color: rgba(232, 241, 246, 0.92);
  line-height: 1.65;
}
.fp-guide__summary {
  padding: 1.5rem;
  border-radius: 18px;
  background: linear-gradient(165deg, #1a3d48, #102028);
  border: 1px solid rgba(0, 212, 170, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.fp-guide__summary h3 {
  color: #fff;
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}
.fp-guide__summary > p {
  color: rgba(232, 241, 246, 0.9);
  margin: 0 0 1rem;
}
.fp-guide__summary ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-guide__summary li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.4rem 0;
  color: var(--fp-muted);
  font-size: 0.92rem;
}
.fp-guide__summary li i {
  color: var(--fp-accent);
  margin-top: 0.2rem;
}
.fp-guide__flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
}
.fp-guide__flow--test {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.fp-guide__flow-arrow {
  display: grid;
  place-items: center;
  color: var(--fp-accent);
  opacity: 0.55;
  font-size: 1rem;
  padding-top: 2rem;
}
.fp-guide__flow-item {
  position: relative;
  padding: 1.5rem 1.25rem 1.35rem;
  border-radius: 18px;
  background: linear-gradient(165deg, #152636, #0e1a24);
  border: 1px solid var(--fp-border);
  text-align: center;
}
.fp-guide__flow-num {
  font-family: var(--fp-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--fp-accent);
  margin-bottom: 0.75rem;
}
.fp-guide__flow-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 212, 170, 0.12);
  color: var(--fp-accent);
  font-size: 1.25rem;
}
.fp-guide__flow-item h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 0.45rem;
}
.fp-guide__flow-item p {
  margin: 0;
  font-size: 0.9rem;
}
.fp-speed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.fp-speed__card {
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--fp-surface);
  border: 1px solid var(--fp-border);
}
.fp-speed__card--hot {
  border-color: rgba(0, 212, 170, 0.45);
  background: linear-gradient(165deg, #1a3d48, #122230);
}
.fp-speed__card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  gap: 0.5rem;
}
.fp-speed__card header strong {
  color: #fff;
  font-size: 1.15rem;
  font-family: var(--fp-display);
}
.fp-speed__card header span {
  font-size: 0.8rem;
  color: var(--fp-muted);
}
.fp-speed__vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.fp-speed__vals small {
  display: block;
  font-size: 0.72rem;
  color: var(--fp-muted);
  margin-bottom: 0.2rem;
}
.fp-speed__vals b {
  color: #fff;
  font-size: 0.95rem;
}
.fp-guide__tip {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 14px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.22);
}
.fp-guide__tip i {
  color: var(--fp-accent);
  font-size: 1.15rem;
  margin-top: 0.15rem;
}
.fp-guide__tip p {
  margin: 0;
  color: rgba(232, 241, 246, 0.9);
  font-size: 0.92rem;
}
.fp-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}
.fp-compare__col {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  background: var(--fp-surface);
  border: 1px solid var(--fp-border);
}
.fp-compare__col--win {
  border-color: rgba(0, 212, 170, 0.45);
  background: linear-gradient(165deg, #1a3d48, #102028);
}
.fp-compare__col h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  margin: 0 0 1rem;
  font-size: 1.15rem;
}
.fp-compare__col--win h3 i { color: var(--fp-accent); }
.fp-compare__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-compare__col li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--fp-border);
  color: var(--fp-muted);
  font-size: 0.92rem;
}
.fp-compare__col li:last-child { border-bottom: none; }
.fp-compare__col--win li { color: rgba(232, 241, 246, 0.9); }
.fp-compare__vs {
  align-self: center;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--fp-border);
  font-family: var(--fp-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--fp-muted);
}
.fp-guide__cta-wrap {
  text-align: center;
  margin-top: 2rem;
}
.fp-faq--narrow {
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .fp-guide__split {
    grid-template-columns: 1fr;
  }
  .fp-guide__flow {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .fp-guide__flow-arrow {
    display: none;
  }
  .fp-guide__flow--test {
    grid-template-columns: 1fr;
  }
  .fp-speed {
    grid-template-columns: repeat(2, 1fr);
  }
  .fp-compare {
    grid-template-columns: 1fr;
  }
  .fp-compare__vs {
    margin: 0 auto;
  }
  .fp-page-hero--guide h1 {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .fp-speed {
    grid-template-columns: 1fr;
  }
  .fp-guide__pills span {
    font-size: 0.76rem;
  }
}

/* Float WhatsApp */
.fp-float-zap {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  animation: fp-pulse 2.4s ease infinite;
}
@keyframes fp-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65); }
}

/* Reveal motion */
.fp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.fp-nav__menu-cta { display: none; }

@media (max-width: 991px) {
  .fp-nav__toggle { display: grid; place-items: center; }
  .fp-nav__menu {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #0a1620;
    padding: 1rem;
    border-bottom: 1px solid var(--fp-border);
  }
  .fp-nav__menu.is-open { display: flex; }
  .fp-nav__menu-cta { display: list-item; margin-top: 0.5rem; }
  .fp-nav__menu-cta .fp-nav__cta { display: flex; justify-content: center; }
  .fp-nav__actions { display: none; }
  .fp-hero__grid,
  .fp-features,
  .fp-steps,
  .fp-plans,
  .fp-devices,
  .fp-cats,
  .fp-blog-grid,
  .fp-reviews,
  .fp-channels,
  .fp-footer__grid,
  .fp-city-grid {
    grid-template-columns: 1fr;
  }
  .fp-plan--featured {
    transform: none;
  }
  .fp-plan--featured:hover {
    transform: translateY(-6px);
  }
  .fp-plan__head { padding-right: 0; min-height: 0; }
  .fp-devices { grid-template-columns: repeat(2, 1fr); }
  .fp-cats { grid-template-columns: repeat(2, 1fr); }
  .fp-media__frame { aspect-ratio: 16 / 10; border-radius: 16px; }
  .fp-hero__media { order: -1; }
}

@media (max-width: 600px) {
  .fp-devices { grid-template-columns: 1fr; }
  .fp-cats { grid-template-columns: 1fr; }
  .fp-plans { grid-template-columns: 1fr; }
  .fp-media__frame { aspect-ratio: 4 / 3; }
  .fp-plan__ribbon,
  .fp-plan__tag {
    position: static;
    align-self: flex-start;
    margin-bottom: 0.75rem;
  }
}
