/* =============================================
   COMPONENTS.CSS - Componentes Reutilizáveis
   ============================================= */

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(3, 11, 24, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.nav-logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #fff;
}

.btn-nav {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-nav:hover {
  background: var(--blue-bright);
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--blue-bright);
  box-shadow: var(--shadow-blue-strong);
  transform: translateY(-2px);
}

.btn-primary.large {
  font-size: 1.1rem;
  padding: 1.1rem 2.75rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: #fff;
}

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 2rem;
  background: rgba(59, 130, 246, 0.06);
  animation: fadeDown 0.6s ease both;
}

.badge::before {
  content: "◆";
  font-size: 0.5rem;
}

/* ---- TICKER ---- */
.ticker-wrap {
  --ticker-speed: 14s;
  position: relative;
  display: flex;
  background: var(--blue);
  overflow: hidden;
  padding: 0.6rem 0;
  white-space: nowrap;
  margin-top: 64px;
  isolation: isolate;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
  z-index: 1;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(
    90deg,
    var(--blue) 0%,
    rgba(59, 130, 246, 0) 100%
  );
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(
    270deg,
    var(--blue) 0%,
    rgba(59, 130, 246, 0) 100%
  );
}

.ticker {
  display: inline-flex;
  gap: 2.25rem;
  min-width: 200%;
  flex-shrink: 0;
  animation: ticker var(--ticker-speed) linear infinite;
  will-change: transform;
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #fff;
  letter-spacing: 0.08em;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

/* ---- SECTION LABELS ---- */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-label::before {
  content: "//";
  opacity: 0.5;
}

.section-label.center {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--blue);
}

.section-title.center {
  text-align: center;
}

.section-desc {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  font-weight: 300;
}

.section-desc.center {
  text-align: center;
  margin: 0 auto 2.5rem;
}

/* ---- CARDS ---- */
.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  transition: var(--transition-slow);
}

.feat-card:hover {
  border-color: rgba(59, 130, 246, 0.35);
  transform: translateY(-4px);
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.feat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.feat-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.feat-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- LOGO CARDS ---- */
.logo-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.logo-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
}

.logo-icon.shopee {
  background: var(--shopee);
  color: #fff;
}

.logo-icon.ml {
  background: var(--ml);
  color: #333;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-icon.tiktok {
  background: #000;
  color: #fff;
  font-size: 1.3rem;
}

.logo-icon.amazon {
  background: var(--amazon);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.logo-fee {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ---- MARKETPLACE CARDS ---- */
.mp-card {
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.mp-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}

.mp-card.shopee {
  background: rgba(238, 77, 45, 0.06);
  border-color: rgba(238, 77, 45, 0.2);
}

.mp-card.shopee::after {
  background: var(--shopee);
}

.mp-card.ml {
  background: rgba(255, 230, 0, 0.04);
  border-color: rgba(255, 230, 0, 0.15);
}

.mp-card.ml::after {
  background: var(--ml);
}

.mp-card.tiktok {
  background: rgba(255, 0, 80, 0.06);
  border-color: rgba(255, 0, 80, 0.2);
}

.mp-card.tiktok::after {
  background: var(--tiktok);
}

.mp-card.amazon {
  background: rgba(255, 153, 0, 0.06);
  border-color: rgba(255, 153, 0, 0.2);
}

.mp-card.amazon::after {
  background: var(--amazon);
}

.mp-card:hover {
  transform: translateY(-4px);
}

.mp-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.mp-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.mp-logo.shopee {
  background: var(--shopee);
  color: #fff;
}

.mp-logo.ml {
  background: var(--ml);
  color: #333;
  font-size: 0.65rem;
  font-weight: 700;
}

.mp-logo.tiktok {
  background: #000;
  color: #fff;
}

.mp-logo.amazon {
  background: var(--amazon);
  color: #1a1a1a;
  font-size: 0.8rem;
  font-weight: 900;
}

.mp-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.mp-badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-top: 0.2rem;
  display: inline-block;
}

.mp-card.shopee .mp-badge {
  background: rgba(238, 77, 45, 0.2);
  color: #ff6b4a;
}

.mp-card.ml .mp-badge {
  background: rgba(255, 230, 0, 0.15);
  color: #ffd700;
}

.mp-card.tiktok .mp-badge {
  background: rgba(255, 0, 80, 0.15);
  color: #ff4d7d;
}

.mp-card.amazon .mp-badge {
  background: rgba(255, 153, 0, 0.15);
  color: #ffaa00;
}

.mp-rules {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mp-rule {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.mp-rule::before {
  content: "→";
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ---- TESTIMONIAL CARDS ---- */
.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: var(--transition-fast);
}

.test-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
}

.stars {
  color: var(--yellow);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.test-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.test-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.test-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
}

.test-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- PRICE CARD ---- */
.price-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: visible;
}

.price-card.featured {
  border-color: var(--blue);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08),
    rgba(6, 182, 212, 0.04)
  );
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
}

.price-header {
  text-align: center;
  padding-top: 0.5rem;
}

.price-sublabel {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.price-val {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: #fff;
}

.price-currency {
  font-size: 2rem;
  vertical-align: super;
  font-weight: 400;
}

.price-cents {
  font-size: 2rem;
  color: var(--blue-bright);
}

.price-monthly {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.price-monthly strong {
  color: #22c55e;
  text-shadow: 0 0 6px rgba(34, 197, 94, 0.35);
}

.price-divider {
  border-top: 1px solid var(--border);
  margin: 1.75rem 0;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.pf {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.pf-check {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.price-cta {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
}

.price-cta.solid {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.35);
  font-size: 1.05rem;
  padding: 1.1rem;
}

.price-cta.solid:hover {
  background: var(--blue-bright);
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.5);
}

.price-secure {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
}

/* ---- GUARANTEE ---- */
.guarantee {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  margin-top: 2rem;
  background: rgba(16, 185, 129, 0.06);
  font-size: 0.85rem;
  color: var(--green);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee.inline {
  display: inline-flex;
  margin-top: 2rem;
}

.guarantee-icon {
  font-size: 1.5rem;
}

/* ---- FAQ ---- */
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  transition: var(--transition-fast);
}

.faq-q:hover {
  color: var(--blue-bright);
}

.faq-q .arrow {
  color: var(--blue);
  font-size: 1.1rem;
  transition: var(--transition-slow);
}

.faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .arrow {
  transform: rotate(45deg);
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-logo span {
  color: var(--blue);
}
