/* Sales Page CSS - ClipMakerIA */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-color: #070709;
  --card-bg: #0d0d12;
  --border-color: rgba(255, 255, 255, 0.08);
  --purple: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.3);
  --green: #b7ff3c;
  --green-glow: rgba(183, 255, 60, 0.2);
  --text-white: #ffffff;
  --text-gray: #a1a1aa;
  --text-dark: #71717a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

h1, h2, h3, h4 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #581c87, #701a75);
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
}

/* Header */
header {
  position: fixed;
  top: 32px;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 13, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 99;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  image-rendering: crisp-edges;
}

header nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 24px;
}

header nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
}

header nav a:hover {
  color: var(--text-white);
}

header .auth-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Buttons */
.btn {
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-white {
  background: #ffffff;
  color: #000000;
}

.btn-white:hover {
  background: #e4e4e7;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 30px var(--purple-glow);
}

.btn-primary:hover {
  background: #b55fe6;
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-green {
  background: var(--green);
  color: #000;
  box-shadow: 0 8px 24px var(--green-glow);
}

.btn-green:hover {
  background: #c3ff5c;
  box-shadow: 0 12px 32px rgba(183, 255, 60, 0.4);
  transform: translateY(-2px);
}

/* Sections */
.shell {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

.pad {
  padding: 120px 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
}

.hero canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(183, 255, 60, 0.05) 0%, transparent 40%);
  z-index: 0;
  pointer-events: none;
}

.hero .copy {
  position: relative;
  width: min(640px, 100%);
  z-index: 2;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #d8b4fe;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  margin-bottom: 16px;
  font-style: italic;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--purple);
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
}

.hero h2 {
  font-size: clamp(22px, 3vw, 36px);
  color: #fff;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero h2 em {
  font-style: normal;
  color: var(--green);
}

.hero p.desc {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-gray);
  margin-bottom: 32px;
  max-width: 580px;
}

.hero .cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero .hero-aside {
  margin-top: 32px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  gap: 16px;
}

.hero-aside span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-aside span i {
  color: var(--purple);
}

/* Badges section below hero */
.sources {
  background: var(--green);
  color: #09090b;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sources .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.sources h3 {
  font-size: 20px;
  max-width: 250px;
  color: #000;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  flex: 1;
  max-width: 800px;
}

.sources-grid .item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.sources-grid .item b {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.sources-grid .item .yt { background: #ff3b30; }
.sources-grid .item .tw { background: #9147ff; }
.sources-grid .item .ki { background: #53fc18; color: #000; font-weight: 900; }
.sources-grid .item .up { background: #3f3f46; }

.sources-grid .item div {
  display: flex;
  flex-direction: column;
}

.sources-grid .item div span {
  font-weight: 800;
  font-size: 14px;
}

.sources-grid .item div small {
  font-size: 11px;
  color: #3f3f46;
}

/* Pain section */
.pain-section {
  background: #0a0a0f;
  border-bottom: 1px solid var(--border-color);
}

.pain-section .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pain-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 24px;
}

.pain-section h2 span {
  color: #ef4444;
}

.pain-section p {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 24px;
}

.pain-cards {
  display: grid;
  gap: 16px;
}

.pain-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pain-card i {
  color: #ef4444;
  font-size: 20px;
  margin-top: 2px;
}

.pain-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #fff;
}

.pain-card p {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
}

/* Comparison Section */
.comparison-section {
  background: var(--bg-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 16px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comp-card {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.01);
}

.comp-card.wrong {
  border-color: rgba(239, 68, 68, 0.2);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.03) 0%, transparent 100%);
}

.comp-card.right {
  border-color: rgba(168, 85, 247, 0.4);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.05) 0%, transparent 100%);
  position: relative;
  box-shadow: 0 20px 50px rgba(168, 85, 247, 0.05);
}

.comp-card.right::before {
  content: 'RECOMENDADO';
  position: absolute;
  top: -12px;
  right: 32px;
  background: var(--purple);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.comp-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comp-card.wrong h3 { color: #ef4444; }
.comp-card.right h3 { color: var(--purple); }

.comp-card ul {
  list-style: none;
  display: grid;
  gap: 20px;
}

.comp-card li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-gray);
}

.comp-card li strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

.comp-card.wrong li i {
  color: #ef4444;
  margin-top: 3px;
}

.comp-card.right li i {
  color: var(--green);
  margin-top: 3px;
}

/* Features */
.features-section {
  background: #0a0a0f;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.02);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 20px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 13.5px;
  line-height: 1.6;
}

/* Product Demo Section */
.proof-section {
  background: var(--bg-color);
}

.proofgrid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.proofgrid h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.proofgrid p.muted {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 32px;
}

.proofgrid ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.proofgrid li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.proofgrid li i {
  color: var(--green);
  font-size: 18px;
}

.console {
  background: #0d0d12;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.console-header {
  height: 48px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-gray);
  background: rgba(255, 255, 255, 0.02);
}

.console-header .status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
}

.console-header .status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.console-body {
  padding: 24px;
  display: grid;
  grid-template-columns: 1.1fr 40px 0.9fr;
  gap: 16px;
  align-items: center;
}

@media (max-width: 768px) {
  .console-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .console-body .divider {
    transform: rotate(90deg);
    margin: 8px auto;
  }
}

.console-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
}

.console-panel label {
  font-size: 9px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.video-box-169 {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #180828, #09090b);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-box-169 i {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.2);
}

.video-box-169 .badge-live {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.console-body .divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.console-body .divider span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.phone-showcase {
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  background: #000;
  border: 4px solid #1e1e24;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.phone-showcase img, .phone-showcase video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}

.phone-showcase .phone-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.phone-showcase .caption {
  align-self: center;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
  max-width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.phone-showcase .score-badge {
  align-self: flex-end;
  background: var(--purple);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
}

.console-footer {
  height: 48px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.01);
}

.console-footer a {
  color: var(--purple);
}

/* Pricing */
.pricing-section {
  background: #0a0a0f;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.pricing-section .pricehead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.pricing-section .toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 4px;
  border-radius: 12px;
}

.pricing-section .toggle button {
  height: 38px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-gray);
  transition: all 0.2s ease;
}

.pricing-section .toggle button.active {
  background: #fff;
  color: #000;
}

.pricegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #0d0d12;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.card.hot {
  border-color: var(--purple);
  background: linear-gradient(180deg, #130a1c 0%, #0d0d12 100%);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.1);
}

.card .badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--green);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.card .value {
  font-size: 40px;
  font-family: 'Archivo Black', sans-serif;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
}

.card .value small {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: var(--text-gray);
  font-weight: 600;
  margin-left: 4px;
}

.card .btn {
  width: 100%;
  margin-bottom: 32px;
}

.card.hot .btn {
  background: var(--purple);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px var(--purple-glow);
}

.card.hot .btn:hover {
  background: #b55fe6;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

.card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-gray);
}

.card li i {
  color: var(--green);
  font-size: 14px;
}

.card li strong {
  color: #fff;
}

.pricing-section .notice {
  text-align: center;
  font-size: 11px;
  color: var(--text-dark);
  margin-top: 32px;
}

/* FAQ */
.faq-section {
  background: var(--bg-color);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.faq-grid h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-list details[open] {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.faq-list summary {
  padding: 24px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: -0.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 20px;
  color: var(--text-gray);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  color: #fff;
}

.faq-list p {
  padding: 0 24px 24px;
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Final CTA */
.final-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.final-section canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.final-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.final-content h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Footer */
footer {
  background: #050507;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 100px;
}

.foot-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.foot-content img {
  height: 36px;
}

.foot-content p {
  font-size: 12px;
  color: var(--text-dark);
}

.foot-content a {
  font-size: 12px;
  color: var(--text-gray);
}

.foot-content a:hover {
  color: #fff;
}

/* Sticky CTA */
.sticky-cta {
  display: none;
}

/* Responsive */
@media (max-width: 991px) {
  header nav {
    display: none;
  }
  
  .hero .copy {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero p.desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero .cta-group {
    justify-content: center;
  }
  .hero .hero-aside {
    justify-content: center;
  }
  .sources-grid {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .sources h3 {
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
  .pain-section .grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .proofgrid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pricegrid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .foot-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 991px) {
  header {
    height: auto !important;
    flex-wrap: wrap !important;
    padding: 12px 16px !important;
  }
  header nav {
    position: static !important;
    transform: none !important;
    display: flex !important;
    width: 100% !important;
    order: 3 !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding: 10px 0 2px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }
  header nav::-webkit-scrollbar {
    display: none !important;
  }
  header nav a {
    font-size: 11px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    padding: 5px 10px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 6px !important;
    color: #a1a1aa !important;
  }
  header nav a:hover, header nav a:focus {
    color: #fff !important;
    background: rgba(168, 85, 247, 0.15) !important;
    border-color: rgba(168, 85, 247, 0.3) !important;
  }
}

@media (max-width: 620px) {
  header {
    top: 32px !important; /* Stack below fixed announcement bar */
  }
  header .logo img {
    width: 40px !important;
    height: 40px !important;
  }
  header .btn-white {
    display: none;
  }
  .sources-grid {
    grid-template-columns: 1fr;
  }
  .sources-grid .item {
    padding-left: 0;
    border-left: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 16px;
  }
  .sources-grid .item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 98;
    box-shadow: 0 10px 30px rgba(183, 255, 60, 0.3);
  }
}

/* Staggered Drop-in & Fade-in Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* Hero Entrance Transitions */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-hero-1 { animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.animate-hero-2 { animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; animation-delay: 0.12s; }
.animate-hero-3 { animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; animation-delay: 0.24s; }
.animate-hero-4 { animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; animation-delay: 0.36s; }
.animate-hero-5 { animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; animation-delay: 0.48s; }
.animate-hero-6 { animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; animation-delay: 0.60s; }

/* Intro Overlay Styles */
body.is-loading {
  overflow: hidden;
  height: 100vh;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  background-color: #050407;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.intro-rotator {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  text-align: center;
  color: #ffffff;
}

.intro-phrase {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  animation: phrase1 7.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-phrase span {
  background: linear-gradient(135deg, #a855f7 0%, #b7ff24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-phrase em {
  font-style: normal;
  background: linear-gradient(90deg, #b7ff24 0%, #53fc18 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Phase animations timing: Total 7.5s (20% per phrase) */
.intro-phrase:nth-child(1) { animation-name: phrase1; }
.intro-phrase:nth-child(2) { animation-name: phrase2; }
.intro-phrase:nth-child(3) { animation-name: phrase3; }
.intro-phrase:nth-child(4) { animation-name: phrase4; }
.intro-phrase:nth-child(5) { animation-name: phrase5; }

@keyframes phrase1 {
  0% { opacity: 0; transform: translateY(15px); }
  4% { opacity: 1; transform: translateY(0); }
  16% { opacity: 1; transform: translateY(0); }
  20% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 0; transform: translateY(-15px); }
}

@keyframes phrase2 {
  0% { opacity: 0; transform: translateY(15px); }
  20% { opacity: 0; transform: translateY(15px); }
  24% { opacity: 1; transform: translateY(0); }
  36% { opacity: 1; transform: translateY(0); }
  40% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 0; transform: translateY(-15px); }
}

@keyframes phrase3 {
  0% { opacity: 0; transform: translateY(15px); }
  40% { opacity: 0; transform: translateY(15px); }
  44% { opacity: 1; transform: translateY(0); }
  56% { opacity: 1; transform: translateY(0); }
  60% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 0; transform: translateY(-15px); }
}

@keyframes phrase4 {
  0% { opacity: 0; transform: translateY(15px); }
  60% { opacity: 0; transform: translateY(15px); }
  64% { opacity: 1; transform: translateY(0); }
  76% { opacity: 1; transform: translateY(0); }
  80% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 0; transform: translateY(-15px); }
}

@keyframes phrase5 {
  0% { opacity: 0; transform: translateY(15px); }
  80% { opacity: 0; transform: translateY(15px); }
  84% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================== PREMIUM DASHBOARD PLANS STYLING ================== */
.bonus-anual.hidden {
  display: none !important;
}

#pricing-toggle {
  width: 196px !important;
  height: 38px !important;
  border: 1px solid #253247 !important;
  border-radius: 999px !important;
  background: #07090e !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04),0 8px 24px rgba(0,0,0,.26);
  position: relative;
}

#pricing-toggle-track {
  position: absolute !important;
  inset: 0 !important;
  background: #27272a !important;
  border: 0 !important;
  border-radius: 999px !important;
  transition: background 0.25s ease;
}

#pricing-toggle-thumb {
  width: 94px !important;
  height: 30px !important;
  top: 3px !important;
  left: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg,#ec4899,#a855f7) !important;
  box-shadow: 0 5px 16px rgba(168,85,247,.35) !important;
  z-index: 1;
  position: absolute;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

#pricing-label-mensal, #pricing-label-anual {
  position: absolute;
  top: 0;
  width: 98px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .02em;
  font-family: inherit;
}

#pricing-label-mensal {
  left: 0;
  color: #f4f4f5;
}

#pricing-label-anual {
  right: 0;
  color: #52525b;
}

#pricing-annual-badge {
  font-size: 9px !important;
  padding: 7px 12px !important;
  border: 1px solid rgba(34,197,94,.24);
  background: rgba(34,197,94,.1) !important;
  color: #86efac !important;
  border-radius: 999px;
  font-weight: 800;
  display: inline-block;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.plan-card {
  background: linear-gradient(180deg,rgba(7,9,15,.98),rgba(4,5,9,.98));
  border: 1px solid #1c293b;
  border-radius: 14px;
  padding: 27px 25px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease,border-color .25s ease,box-shadow .25s ease;
  box-sizing: border-box;
}

.plan-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(168,85,247,.06),transparent 36%);
  pointer-events: none;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,.5);
  box-shadow: 0 22px 50px rgba(0,0,0,.48),0 0 28px rgba(168,85,247,.1);
}

.plan-card-popular {
  background: linear-gradient(180deg,rgba(31,9,23,.98),rgba(7,5,12,.98));
  border: 1px solid rgba(236,72,153,.78);
  box-shadow: 0 0 34px rgba(236,72,153,.14),0 22px 50px rgba(0,0,0,.48);
  z-index: 2;
}

.plan-card-popular:hover {
  transform: translateY(-7px);
  border-color: #f472b6;
  box-shadow: 0 0 48px rgba(236,72,153,.24),0 26px 56px rgba(0,0,0,.58);
}

.plan-btn {
  min-height: 42px;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: .02em;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  text-decoration: none;
  width: 100%;
}

.plan-btn-default {
  background: rgba(168,85,247,.18) !important;
  border: 1.5px solid rgba(168,85,247,.55) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(168,85,247,.1) !important;
}

.plan-btn-default:hover {
  background: rgba(168,85,247,.2);
  box-shadow: 0 8px 20px rgba(168,85,247,.2);
}

.plan-btn-popular {
  background: linear-gradient(135deg,#db2777,#ec4899,#a855f7) !important;
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(236,72,153,.35) !important;
  border: none !important;
}

.plan-btn-popular:hover {
  box-shadow: 0 14px 32px rgba(236,72,153,.46);
  filter: brightness(1.08);
}

#bonus-badge-plus, #bonus-badge-proplus {
  position: absolute;
  top: 18px;
  right: 16px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  background: linear-gradient(135deg,#15803d,#22c55e);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 14px rgba(34,197,94,.35);
  z-index: 5;
}

#bonus-badge-proplus {
  background: linear-gradient(135deg,#0e7490,#38bdf8);
  box-shadow: 0 4px 14px rgba(56,189,248,.35);
}

@media(max-width:959px) {
  .price-cards-row {
    grid-template-columns: 1fr !important;
    max-width: 520px;
    margin: 0 auto;
  }
  .plan-card, .plan-card-popular {
    min-height: 0 !important;
    margin: 0 !important;
  }
  .plan-card-popular {
    order: -1 !important;
  }
}


/* Responsive Pricing Toggle Adjustments */
@media (max-width: 480px) {
  .toggle-container-wrapper {
    flex-direction: column !important;
    gap: 12px !important;
  }
  #pricing-annual-badge {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important; /* keep visible on mobile once cycled */
    margin: 0 auto !important;
  }
}
