:root {
  --color-brand-primary: #0f1c2e;
  --color-brand-secondary: #1a3a5c;
  --color-brand-accent: #00c6ff;
  --color-brand-accent-hover: #00a8e8;
  --color-brand-gold: #f0a500;
  --color-bg-dark: #080e17;
  --color-bg-darker: #05090f;
  --color-bg-card: #0d1b2a;
  --color-bg-surface: #13243a;
  --color-text-primary: #ffffff;
  --color-text-secondary: #a8b8cc;
  --color-text-muted: #8b9cb3; /* Improved contrast */
  --color-error-live: #ff4d4f;
  --font-primary: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", sans-serif;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1280px;
  --header-h: 90px;
  --shadow-glow-accent: 0 0 40px rgba(0, 198, 255, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background: var(--color-bg-dark);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.15;
}

a {
  color: var(--color-brand-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-brand-accent-hover);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8, 14, 23, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo .dot {
  color: var(--color-brand-accent);
}

.header-nav {
  display: none; /* Mobile first */
  flex: 1;
  justify-content: flex-end;
  margin-right: 1.5rem;
}

.header-nav-list {
  display: flex;
  flex-direction: column; /* Mobile first */
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

@media (min-width: 1025px) {
  .header-nav {
    display: flex;
  }
  .header-nav-list {
    flex-direction: row;
  }
}

.nav-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header-cta {
  display: none; /* Mobile first */
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

@media (min-width: 1025px) {
  .header-cta {
    display: inline-flex;
  }
}

.header-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-base), transform 0.1s;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  box-shadow: 0 4px 18px rgba(0, 198, 255, 0.28);
}

.btn-primary:hover {
  color: #fff;
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 229, 240, 0.55);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #060a10 0%, #0d1b2a 45%, #152a45 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(4, 10, 18, 0.9) 0%, rgba(4, 12, 20, 0.72) 38%, rgba(4, 14, 24, 0.48) 62%, rgba(3, 8, 16, 0.25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) 1.5rem 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #00e5f0;
  background: rgba(0, 229, 240, 0.1);
  border: 1px solid rgba(0, 229, 240, 0.35);
}

.hero-title {
  font-size: 2.2rem; /* Mobile first */
  font-weight: 800;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}
@media (min-width: 769px) {
  .hero-title { font-size: clamp(2.05rem, 4vw, 3.45rem); }
}

.hero-title__block { display: block; }
.hero-title__accent { color: #00e5f0; }

.hero-lead {
  font-size: clamp(0.95rem, 1.55vw, 1.125rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0.5rem;
  max-width: 31rem;
}

.hero-domain {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #00d4e8;
  margin-bottom: 1.35rem;
  text-decoration: none;
}

.hero-domain:hover {
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  flex-direction: column; /* Mobile first */
  gap: 0.75rem 1rem;
  margin-bottom: 1.1rem;
  width: 100%;
}
.hero-actions .btn { width: 100%; }

@media (min-width: 769px) {
  .hero-actions { flex-direction: row; width: auto; }
  .hero-actions .btn { width: auto; }
}

.hero-actions__pill {
  margin-left: 0.15rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(0, 229, 240, 0.18);
  border: 1px solid rgba(0, 229, 240, 0.4);
  color: #9ff8ff;
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
}

.hero-micro li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-micro li::before {
  content: "✓";
  color: #00c6ff;
  font-weight: 800;
}

/* Stats */
.stats-bar {
  background: var(--color-bg-darker);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Sections */
.section-block {
  padding: 6rem 0;
}

.section-dark { background: var(--color-bg-dark); }
.section-darker { background: var(--color-bg-darker); }
.section-surface-band { background: var(--color-bg-surface); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-divider {
  width: 40px;
  height: 4px;
  background: var(--color-brand-accent);
  border-radius: 2px;
  margin: 2rem auto 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 198, 255, 0.2);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  background: rgba(0, 198, 255, 0.1);
  color: var(--color-brand-accent);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Prose */
.prose {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: center;
}

.prose p {
  margin-bottom: 1.5rem;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-item {
  position: relative;
  text-align: center;
  padding: 2rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--color-brand-accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-glow-accent);
}

.step-title {
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
}

.step-desc {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Devices */
.devices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}

.device-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.device-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(0, 198, 255, 0.3);
}

.device-icon {
  color: var(--color-brand-accent);
  margin-bottom: 1rem;
}

.device-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.devices-footnote {
  text-align: center;
  margin-top: 3rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Testimonials */
.gc-proof-overview {
  display: flex;
  flex-direction: column; /* Mobile first */
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  background: var(--color-bg-card);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1025px) {
  .gc-proof-overview {
    flex-direction: row;
    gap: 4rem;
  }
}

.gc-proof-overview__left {
  text-align: center;
}

.gc-proof-overview__score {
  font-size: 4rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  color: var(--color-brand-gold);
}

.gc-proof-overview__stars {
  color: var(--color-brand-gold);
  margin: 0.5rem 0;
}

.gc-proof-overview__note {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.gc-proof-overview__right {
  flex: 1;
  max-width: 300px;
}

.gc-proof-dist {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.gc-proof-dist__label {
  display: flex;
  justify-content: space-between;
  width: 50px;
}

.gc-proof-dist__bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.gc-proof-dist__bar span {
  display: block;
  height: 100%;
  background: var(--color-brand-gold);
  border-radius: 3px;
}

.gc-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.gc-proof-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gc-proof-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-brand-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.gc-proof-card__meta strong {
  display: block;
  font-size: 1rem;
}

.gc-proof-card__meta span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.gc-proof-card__stars {
  color: var(--color-brand-gold);
  margin-bottom: 1rem;
}

.gc-proof-card__text {
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.gc-proof-card__device {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-brand-accent);
  background: rgba(0, 198, 255, 0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

/* Footer */
.site-footer {
  background: var(--color-bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 2rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 1rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
@media (min-width: 1025px) {
  .menu-toggle { display: none; }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* --- IPTV Page Styles --- */
.page-shell { padding-top: var(--header-h); }
.page-hero--premium { text-align: center; padding: 4rem 1.5rem 3rem; background: linear-gradient(160deg, #060a10 0%, #0d1b2a 100%); border-bottom: 1px solid rgba(255,255,255,0.05); }
.page-hero-eyebrow { font-size: 0.85rem; color: var(--color-brand-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; display: inline-block; margin-bottom: 1rem; }
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1.5rem; max-width: 1000px; margin-left: auto; margin-right: auto; line-height: 1.2; }
.page-hero-subtitle { font-size: 1.1rem; color: var(--color-text-secondary); max-width: 900px; margin: 0 auto; line-height: 1.6; }

.inner-panel { background: transparent; border: none; padding: 0; margin-bottom: 3rem; width: 100%; }
.page-prose { max-width: 800px; margin: 0 auto; }
.page-prose h2 { font-size: 1.75rem; color: #fff; margin: 2.5rem 0 1rem; }
.page-prose h2:first-child { margin-top: 0; }
.page-prose h3 { font-size: 1.35rem; color: #fff; margin: 2rem 0 1rem; }
.page-prose p { color: var(--color-text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.page-prose ul { margin: 0 0 1.5rem 2rem; color: var(--color-text-secondary); line-height: 1.8; }
.page-prose li { margin-bottom: 0.5rem; }
.page-prose a { color: var(--color-brand-accent); text-decoration: underline; }

.faq-category-title { font-size: 1.75rem; color: #fff; margin-bottom: 2rem; text-align: center; }
.faq-stack details { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem 0; }
.faq-stack details:last-child { border-bottom: none; }
.faq-stack summary { font-size: 1.1rem; font-weight: 600; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-stack summary::-webkit-details-marker { display: none; }
.faq-stack summary::after { content: "+"; color: var(--color-brand-accent); font-size: 1.5rem; font-weight: 400; transition: transform 0.3s ease; }
.faq-stack details[open] summary::after { transform: rotate(45deg); }
.faq-stack p { color: var(--color-text-secondary); font-size: 1rem; line-height: 1.6; margin-top: 1rem; }

.cta-strip { background: linear-gradient(90deg, #0f1c2e, #1a3a5c); padding: 4rem 1.5rem; text-align: center; }
.cta-strip-lead { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 2rem; }
.cta-strip .btn { margin: 0 0.5rem; }

/* --- Teste IPTV Page Styles --- */
.gc-test-why6 { padding: 5rem 0; }
.gc-test-why6__lead { font-size: 1.15rem; color: var(--color-text-secondary); text-align: center; max-width: 800px; margin: 0 auto 3rem; line-height: 1.6; }
.gc-test-why6__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.gc-test-why6__card { background: var(--color-bg-card); padding: 2.5rem 2rem; border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,0.05); text-align: center; }
.gc-test-why6__icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 50%; background: rgba(0, 198, 255, 0.1); color: var(--color-brand-accent); margin-bottom: 1.5rem; }
.gc-test-why6__card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 1rem; }
.gc-test-why6__card p { color: var(--color-text-secondary); font-size: 0.95rem; line-height: 1.6; }
.gc-test-why6__highlight { text-align: center; font-size: 0.95rem; color: var(--color-brand-gold); max-width: 700px; margin: 0 auto; font-weight: 600; padding: 1rem; border: 1px dashed rgba(240, 165, 0, 0.3); border-radius: var(--radius-lg); }

.gc-test-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin: 3rem 0; }
.gc-test-step { position: relative; padding: 2rem; background: rgba(255,255,255,0.02); border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,0.05); text-align: center; }
.gc-test-step__num { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; background: var(--color-brand-accent); color: #fff; font-weight: 800; font-size: 1.2rem; border-radius: 50%; margin-bottom: 1rem; box-shadow: var(--shadow-glow-accent); }
.gc-test-step h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.75rem; }
.gc-test-step p { color: var(--color-text-secondary); font-size: 0.95rem; line-height: 1.5; }
.gc-test-steps__cta-wrap { text-align: center; margin: 2rem 0; }

.mini-quote-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 768px) { .mini-quote-grid { grid-template-columns: 1fr 1fr; } }
.mini-quote { margin: 0; padding: 1.5rem; background: var(--color-bg-card); border-left: 4px solid var(--color-brand-accent); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; font-style: italic; color: var(--color-text-secondary); font-size: 0.95rem; line-height: 1.6; }
.mini-quote strong { display: block; font-style: normal; color: #fff; margin-bottom: 0.5rem; font-size: 1.05rem; }

.gc-test-checklist { background: var(--color-bg-card); border-radius: var(--radius-xl); border: 1px solid rgba(0, 198, 255, 0.2); padding: 2rem; margin: 2rem 0; }
.gc-test-checklist__lead { color: var(--color-text-secondary); margin-bottom: 1.5rem; font-size: 0.95rem; }
.gc-test-checklist__item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: background 0.2s; }
.gc-test-checklist__item:hover { background: rgba(255,255,255,0.02); }
.gc-test-checklist__item:last-of-type { border-bottom: none; }
.gc-test-checklist__checkbox { margin-top: 0.3rem; width: 1.2rem; height: 1.2rem; accent-color: var(--color-brand-accent); cursor: pointer; }
.gc-test-checklist__item span { color: #fff; font-size: 1rem; line-height: 1.5; flex: 1; }
.gc-test-checklist__done { display: none; margin-top: 2rem; padding: 1.5rem; background: rgba(0, 198, 255, 0.1); border: 1px solid rgba(0, 198, 255, 0.3); border-radius: var(--radius-lg); text-align: center; color: #fff; font-weight: 600; animation: fadeIn 0.5s ease; }
.gc-test-checklist__done a { display: inline-block; margin-top: 1rem; color: var(--color-brand-gold); text-decoration: underline; font-weight: 700; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- Planos Page Styles --- */
.page-shell--planos .page-hero-title { max-width: 700px; margin-left: auto; margin-right: auto; }
.plans-section { padding: 4rem 0; background: var(--color-bg-dark); }
.plans-intro { text-align: center; color: var(--color-text-secondary); max-width: 800px; margin: 0 auto 3rem; font-size: 1.05rem; line-height: 1.6; }
.plans-intro strong { color: #fff; }
.plans-billing { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3rem; position: relative; }
.plans-billing__label { font-size: 1rem; font-weight: 600; color: var(--color-text-secondary); cursor: pointer; transition: color 0.2s; }
.plans-billing__label--active { color: #fff; }
.plans-billing__switch { position: relative; width: 60px; height: 32px; background: var(--color-bg-card); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; cursor: pointer; padding: 0; }
.plans-billing__switch::after { content: ''; position: absolute; top: 3px; left: 4px; width: 24px; height: 24px; background: var(--color-brand-accent); border-radius: 50%; transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.plans-billing__switch[aria-pressed="true"]::after { transform: translateX(26px); }
.plans-billing__hint { position: absolute; top: 100%; margin-top: 0.5rem; font-size: 0.8rem; color: var(--color-text-muted); }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; align-items: start; }
.plan-card { position: relative; background: var(--color-bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius-2xl); padding: 2.5rem 2rem; display: flex; flex-direction: column; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; }
.plan-card:hover { border-color: rgba(0, 198, 255, 0.2); box-shadow: 0 10px 40px rgba(0,0,0,0.5); transform: translateY(-5px); }
.plan-featured { border-color: rgba(0, 198, 255, 0.3); background: linear-gradient(180deg, rgba(13,27,42,1) 0%, rgba(20,40,65,1) 100%); transform: scale(1.02); z-index: 10; box-shadow: 0 15px 50px rgba(0,0,0,0.6); }
.plan-featured:hover { transform: scale(1.02) translateY(-5px); border-color: rgba(0, 198, 255, 0.6); }
.plan-premium { border-top: 4px solid var(--color-brand-gold); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, #00c6ff, #0072ff); color: #fff; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.4rem 1rem; border-radius: 999px; box-shadow: var(--shadow-glow-accent); white-space: nowrap; }

.plan-header { margin-bottom: 2rem; text-align: center; }
.plan-icon { display: inline-flex; justify-content: center; align-items: center; width: 56px; height: 56px; background: rgba(0, 198, 255, 0.1); color: var(--color-brand-accent); border-radius: 50%; margin-bottom: 1rem; }
.plan-premium .plan-icon { background: rgba(240, 165, 0, 0.1); color: var(--color-brand-gold); }
.plan-name { font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.plan-tagline { font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.5; min-height: 3rem; }

.plan-features { list-style: none; margin: 0 0 2rem; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 0.8rem; }
.plan-feature { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--color-text-secondary); line-height: 1.4; }
.plan-feature-check { color: var(--color-brand-accent); flex-shrink: 0; margin-top: 0.1rem; }
.feature-highlight { color: #fff; font-weight: 600; }
.plan-cta { display: block; text-align: center; width: 100%; padding: 1rem; border-radius: var(--radius-full); font-weight: 700; background: rgba(255,255,255,0.05); color: #fff; transition: background 0.2s; border: 1px solid rgba(255,255,255,0.1); }
.plan-cta:hover { background: rgba(0, 198, 255, 0.1); border-color: rgba(0, 198, 255, 0.3); color: #fff; }
.plan-featured .plan-cta { background: linear-gradient(90deg, #00c6ff, #0072ff); border: none; box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3); }
.plan-featured .plan-cta:hover { filter: brightness(1.1); }
.plan-premium .plan-cta { background: transparent; border: 1px solid var(--color-brand-gold); color: var(--color-brand-gold); }
.plan-premium .plan-cta:hover { background: var(--color-brand-gold); color: #000; }

.compare-section { padding: 5rem 0; background: var(--color-bg-darker); }
.compare-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 2rem; }
.compare-table { width: 100%; min-width: 600px; border-collapse: collapse; text-align: center; }
.compare-table th { padding: 1.5rem 1rem; font-size: 1.1rem; color: #fff; border-bottom: 2px solid rgba(255,255,255,0.1); }
.compare-table th:first-child { text-align: left; width: 40%; }
.col-featured { background: rgba(0, 198, 255, 0.05); }
.compare-table th.col-featured { border-top: 2px solid var(--color-brand-accent); border-radius: 8px 8px 0 0; color: var(--color-brand-accent); }
.compare-table td { padding: 1.25rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--color-text-secondary); font-size: 0.95rem; }
.compare-table td:first-child { text-align: left; color: #fff; font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.col-featured { background: rgba(0, 198, 255, 0.05); }
.compare-check { color: var(--color-brand-accent); display: inline-flex; }
.compare-x { color: var(--color-text-muted); }

.faq-plans-section { padding: 5rem 0; background: var(--color-bg-dark); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--color-bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius-lg); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: transparent; border: none; color: #fff; font-size: 1.05rem; font-weight: 600; text-align: left; cursor: pointer; }
.faq-icon { color: var(--color-brand-accent); transition: transform 0.3s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.5rem; color: var(--color-text-secondary); line-height: 1.6; }
.faq-answer.is-open { display: block; }

.plans-cta-section { text-align: center; padding: 5rem 1.5rem; background: linear-gradient(160deg, #0f1c2e 0%, #1a3a5c 100%); }
.plans-cta-text { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 1rem; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.2; }
.plans-cta-sub { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2.5rem; }
.plans-cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* --- Quem Somos Styles --- */
.about-inline-stats { margin-top: 1rem; padding: 1rem; background: rgba(255,255,255,0.05); border-radius: var(--radius-md); display: inline-flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.95rem; }
.about-inline-stats strong { color: #fff; }

/* --- Contato Styles --- */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; margin: 3rem 0; }
@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 2rem; }
.contact-card h2 { margin-top: 0; margin-bottom: 1.5rem; font-size: 1.5rem; }
.contact-card p { margin-bottom: 1rem; color: var(--color-text-secondary); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { font-size: 0.9rem; font-weight: 600; color: #fff; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.2); color: #fff; font-family: inherit; font-size: 1rem; transition: border-color 0.2s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-brand-accent); }

/* --- Blog Styles --- */
.gc-blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0; }
.gc-blog-card { background: var(--color-bg-card); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(255,255,255,0.05); }
.gc-blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border-color: rgba(0,198,255,0.3); }
.gc-blog-card__link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.gc-blog-card__image { width: 100%; height: 200px; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,0.05); }
.gc-blog-card__content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.gc-blog-card__title { font-size: 1.25rem; font-weight: 700; color: #fff; margin: 0 0 0.75rem 0; line-height: 1.3; }
.gc-blog-card__excerpt { font-size: 0.95rem; color: var(--color-text-secondary); margin-bottom: 1.5rem; line-height: 1.6; flex-grow: 1; }
.gc-blog-card__cta { color: var(--color-brand-accent); font-weight: 600; font-size: 0.9rem; margin-top: auto; display: inline-flex; align-items: center; gap: 0.5rem; }
.gc-blog-card__cta::after { content: "→"; transition: transform 0.2s ease; }
.gc-blog-card:hover .gc-blog-card__cta::after { transform: translateX(4px); }
.gc-blog-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 4rem; flex-wrap: wrap; }
.gc-blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-md); background: rgba(255,255,255,0.05); color: #fff; text-decoration: none; font-weight: 600; transition: all 0.2s ease; }
.gc-blog-pagination .page-numbers:hover:not(.dots) { background: rgba(0,198,255,0.2); color: var(--color-brand-accent); }
.gc-blog-pagination .page-numbers.current { background: var(--color-brand-accent); color: #fff; }
.gc-blog-pagination .next { width: auto; padding: 0 1rem; }