* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #070707;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --muted: #b5b5b5;
  --muted-2: #9ca3af;
  --white: #ffffff;
  --purple: #9ca3af;
  --pink: #f5f5f5;
  --metal-1: #0b0c0f;
  --metal-2: #1b1d22;
  --metal-3: #4b5563;
  --metal-4: #d1d5db;
  --radius-lg: 24px;
  --radius-md: 16px;
  --page-x: clamp(18px, 8vw, 120px);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--white);
  overflow-x: hidden;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 18%, rgba(209,213,219,0.16), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(107,114,128,0.18), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,0.10), transparent 36%),
    linear-gradient(135deg, #020304 0%, #111318 42%, #050607 100%);
  background-size: 150% 150%, 150% 150%, 170% 170%, 100% 100%;
  animation: pageColorShift 18s ease-in-out infinite alternate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.08), transparent 28%, rgba(107,114,128,0.12) 64%, transparent),
    radial-gradient(circle at var(--bg-x, 50%) var(--bg-y, 30%), rgba(229,231,235,0.11), transparent 26%);
  mix-blend-mode: screen;
  opacity: .9;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 80%);
}

@keyframes pageColorShift {
  0% { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; filter: brightness(1); }
  50% { background-position: 80% 30%, 20% 70%, 80% 40%, 0 0; filter: brightness(1.12) contrast(1.06); }
  100% { background-position: 100% 100%, 0% 100%, 20% 0%, 0 0; filter: brightness(.96) contrast(1.12); }
}

img {
  max-width: 100%;
  display: block;
}

a, button, select {
  font-family: inherit;
}

h1, h2, h3, p, a, button, span, strong, div {
  overflow-wrap: anywhere;
}

.background-glow {
  position: fixed;
  inset: -20% -10% auto auto;
  width: min(820px, 95vw);
  height: min(820px, 95vw);
  background: radial-gradient(circle, rgba(229,231,235,0.22) 0%, rgba(75,85,99,0.16) 38%, rgba(0,0,0,0) 72%);
  z-index: -1;
  filter: blur(48px);
  pointer-events: none;
  animation: glowFloat 12s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .8; }
  to { transform: translate3d(-9vw, 10vh, 0) scale(1.12); opacity: 1; }
}

nav {
  width: 100%;
  min-height: 82px;
  padding: 18px var(--page-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(0,0,0,0.58);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 999;
}

.logo {
  flex: 0 1 auto;
  max-width: 45vw;
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 800;
  white-space: nowrap;
  background: linear-gradient(90deg, #737373, #f5f5f5, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 24px);
}

.nav-links a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: color .25s ease, transform .25s ease;
}

.nav-links a:hover {
  color: white;
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  background: linear-gradient(135deg, #3f3f46, #d4d4d8 48%, #737373);
  padding: 12px 22px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(156,163,175,0.28);
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(209,213,219,0.32);
}

.secondary-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}

.lang-switcher {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 78px;
  min-width: 78px;
  min-height: 46px;
  background: rgba(17,17,17,0.95);
  color: white;
  border: 1px solid #2a2a2a;
  padding: 10px 34px 10px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.lang-switcher:hover {
  border-color: #555;
  background-color: #181818;
}

.lang-switcher:focus {
  outline: none;
  border-color: #d8d8d8;
  box-shadow: 0 0 0 3px rgba(75, 75, 75, 0.548);
}

.hamburger {
  display: none;
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: inset 0 0 18px rgba(255,255,255,0.03), 0 10px 28px rgba(0,0,0,0.25);
  transition: .25s ease;
}

.hamburger:hover {
  border-color: rgba(209,213,219,0.45);
  background: rgba(255,255,255,0.08);
}

.hamburger span {
  width: 21px;
  height: 2px;
  background: white;
  border-radius: 10px;
  transition: .3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

section {
  width: 100%;
  padding: clamp(76px, 9vw, 110px) var(--page-x);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(44px);
  filter: blur(8px);
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 56px);
  padding: clamp(72px, 8vw, 110px) var(--page-x);
  overflow: hidden;
}

.hero-text {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  flex: 1 1 460px;
}

.hero-character {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(1.25) !important;
  width: min(160vw, 1800px) !important;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 0.34;
  pointer-events: none;
  filter: grayscale(100%) contrast(1.08) brightness(1.12) drop-shadow(0 0 70px rgba(209,213,219,0.32));
  z-index: 0;
}

.hero-text h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
  font-weight: 800;
  max-width: 12ch;
}

.hero-text span {
  background: linear-gradient(90deg, #a3a3a3, #fafafa, #71717a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 62ch;
  min-height: 3.4em;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  flex: 0 1 380px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 28px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rank-box {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 82px;
}

.rank-box p {
  color: var(--muted);
  line-height: 1.45;
}

.price {
  color: #d4d4d8;
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.section-title {
  text-align: center;
  margin: 0 auto clamp(34px, 5vw, 60px);
  max-width: 850px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 12px;
}

.text_description {
  color: #bebebe;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.text_description_services {
  color: #bebebe;
  font-size: 0.9rem;
  line-height: 1.65;
}

.services-grid,
.stats,
.testimonials,
.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.payment-card,
.service-card,
.stat-box,
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius-lg);
  min-width: 0;
}

.service-card,
.stat-box,
.testimonial-card,
.payment-card {
  min-height: 150px;
}

.service-card h3,
.stat-box h3 {
  margin: 18px 0 12px;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  color: #d4d4d8;
  font-size: clamp(2.2rem, 4vw, 2.6rem);
}

.payment-card {
  text-align: center;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.payment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(209,213,219,0.38);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.payment-image {
  width: 100%;
  height: clamp(96px, 12vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
}

.payment-image img {
  width: min(90px, 42%);
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.4) contrast(1.1);
  opacity: 0.9;
  transition: 0.3s ease;
}

.payment-card:hover .payment-image img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

.payment-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: white;
}

.payment-card p,
.testimonial-card p,
.service-card p,
.stat-box p {
  color: #bdbdbd;
  line-height: 1.7;
  font-size: 0.95rem;
}

.name_trust {
  background: linear-gradient(90deg, #a3a3a3, #fafafa, #71717a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.25rem;
}

.faq {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  color: white;
  padding: 22px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 18px 22px 22px;
  color: #bdbdbd;
  line-height: 1.7;
}

.legal-warning {
  width: 100%;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.12), rgba(255, 60, 0, 0.08));
  border: 1px solid rgba(255, 145, 0, 0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35), inset 0 0 30px rgba(255,140,0,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 40px;
}

.legal-icon {
  font-size: 1.4rem;
  color: #ffb347;
  margin-top: 2px;
  flex-shrink: 0;
}

.legal-content h3 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 800;
  color: #ffe2b8;
  margin-bottom: 14px;
}

.legal-content p {
  color: #f1d2bc;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 18px;
}

.legal-content strong {
  color: white;
}

.legal-content span {
  color: #e2b79b;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 600;
}

.cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(75,85,99,0.12));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30px;
  padding: clamp(46px, 6vw, 70px) clamp(20px, 4vw, 30px);
}

.cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.cta p {
  color: var(--muted);
  line-height: 1.7;
}

footer {
  position: relative;
  margin: 30px var(--page-x) 0;
  padding: clamp(38px, 5vw, 58px) clamp(24px, 4vw, 42px) 34px;
  color: var(--muted-2);
  line-height: 1.7;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(0,0,0,0.40), rgba(255,255,255,0.025));
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(220px, .8fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  text-align: left;
}

.footer-brand h2 {
  display: inline-block;
  margin-bottom: 28px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #525252, #ffffff 48%, #737373);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255,255,255,0.16);
}

.footer-brand p {
  max-width: 520px;
  margin-bottom: 18px;
  color: #a1a1aa;
  font-size: 1rem;
}

.footer-links,
.footer-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-contact a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
  transform: translateY(-1px);
}

.footer-contact-card h3 {
  color: white;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.footer-contact {
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.footer-bottom small {
  display: block;
  margin-top: 6px;
  color: #71717a;
}

.footer-blade {
  position: absolute;
  right: -70px;
  bottom: -150px;
  width: min(360px, 40vw);
  opacity: .18;
  filter: grayscale(100%) contrast(1.2) brightness(1.2);
  transform: rotate(-8deg);
  pointer-events: none;
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 16px;
  }

  .hero-text h1 {
    max-width: 13ch;
  }
}

@media (max-width: 900px) {
  :root {
    --page-x: clamp(16px, 5vw, 42px);
  }

  nav {
    min-height: 78px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .logo {
    max-width: 42vw;
  }

  .hamburger {
    display: flex;
  }

  .nav-contact {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: calc(100% + 14px);
    left: var(--page-x);
    right: var(--page-x);
    width: auto;
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 22px;
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 70px rgba(0,0,0,.55), inset 0 0 24px rgba(255,255,255,.025);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transition: opacity .25s ease, transform .25s ease;
  }

.nav-links::before {
    content: attr(data-title);
    color: rgba(255,255,255,0.45);
    letter-spacing: 6px;
    font-size: .75rem;
    font-weight: 800;
    margin: 2px 0 6px;
}

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a {
    width: 100%;
    padding: 17px 18px;
    border-radius: 17px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    font-weight: 700;
    white-space: normal;
  }

  .nav-links a:hover {
    transform: translateX(4px);
    border-color: rgba(209,213,219,0.38);
    background: rgba(255,255,255,0.075);
  }

  .nav-actions {
    gap: 10px;
  }

  .hero {
    min-height: auto;
    flex-direction: column;
    text-align: center;
    padding-top: clamp(58px, 10vw, 92px);
  }

  .hero-text {
    flex-basis: auto;
  }

  .hero-text h1,
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text h1 {
    max-width: 14ch;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-card {
    flex-basis: auto;
    width: min(100%, 520px);
  }

  .hero-character {
    display: none;
  }

  footer {
    margin-left: 0;
    margin-right: 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links,
  .footer-contact {
    justify-content: center;
    align-items: center;
  }
}


@media (prefers-reduced-motion: reduce) {
  body,
  .background-glow,
  .reveal-on-scroll {
    animation: none;
    transition: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 680px) {
  .logo {
    max-width: 36vw;
    font-size: 1rem;
  }

  .lang-switcher {
    width: 72px;
    min-width: 72px;
    min-height: 44px;
    padding-left: 12px;
  }

  .hamburger {
    width: 44px;
    min-width: 44px;
    height: 44px;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-text p {
    min-height: unset;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .rank-box {
    align-items: flex-start;
  }

  .services-grid,
  .stats,
  .testimonials,
  .payments-grid {
    grid-template-columns: 1fr;
  }

  .legal-warning {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  :root {
    --page-x: 14px;
  }

  nav {
    gap: 8px;
  }

  .logo {
    max-width: 34vw;
    font-size: .92rem;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-switcher {
    width: 66px;
    min-width: 66px;
    font-size: 12px;
    padding-right: 28px;
    background-position: right 9px center;
  }

  .hamburger {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-card,
  .payment-card,
  .service-card,
  .stat-box,
  .testimonial-card,
  .cta,
  .legal-warning,
  .las-btn {
    border-radius: 20px;
  }

  .rank-box {
    flex-direction: column;
    gap: 8px;
    text-align: left;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-answer {
    padding: 16px 18px 18px;
  }
}

/* === Ajustes finales solicitados: estilo oscuro/morado, navbar con bordes, imagen original y footer sólido === */
:root {
  --purple: #8b5cf6;
  --pink: #ec4899;
  --deep-purple: #16001f;
  --dark-purple: #250035;
  --metal-line: rgba(255, 255, 255, 0.16);
}

body {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 15%, rgba(139, 92, 246, 0.22), transparent 32%),
    radial-gradient(circle at 85% 22%, rgba(236, 72, 153, 0.13), transparent 30%),
    radial-gradient(circle at 52% 88%, rgba(64, 18, 96, 0.36), transparent 38%),
    linear-gradient(135deg, #020202 0%, #0a0610 30%, #170021 58%, #030303 100%);
  background-size: 160% 160%, 170% 170%, 180% 180%, 100% 100%;
  animation: darkPurpleShift 16s ease-in-out infinite alternate;
}

@keyframes darkPurpleShift {
  0% { background-position: 0% 0%, 100% 0%, 45% 100%, 0 0; }
  50% { background-position: 80% 28%, 25% 70%, 95% 45%, 0 0; }
  100% { background-position: 100% 100%, 0% 100%, 10% 0%, 0 0; }
}

body::before {
  background:
    radial-gradient(circle at var(--bg-x, 50%) var(--bg-y, 30%), rgba(139, 92, 246, 0.18), transparent 30%),
    linear-gradient(120deg, rgba(255,255,255,0.04), transparent 28%, rgba(236,72,153,0.10) 64%, transparent);
  mix-blend-mode: screen;
}

.background-glow {
  background: radial-gradient(circle, rgba(121,40,202,0.34) 0%, rgba(236,72,153,0.14) 42%, rgba(0,0,0,0) 72%);
  filter: blur(44px);
}

nav {
  margin: 14px auto 0;
  width: min(calc(100% - 28px), 1420px);
  border: 1px solid rgba(255,255,255,0.16);
  border-bottom-color: rgba(139,92,246,0.35);
  border-radius: 18px;
  background: rgba(5, 5, 9, 0.62);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(139,92,246,0.16);
  backdrop-filter: blur(18px) saturate(135%) contrast(112%);
  -webkit-backdrop-filter: blur(18px) saturate(135%) contrast(112%);
}

nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  opacity: .34;
  mix-blend-mode: screen;
}

nav::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px);
  opacity: .09;
  filter: blur(.4px);
}

.logo,
.hero-text span,
.name_trust {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 10px 30px rgba(139,92,246,0.35);
}

.btn:hover {
  box-shadow: 0 14px 34px rgba(139,92,246,0.45);
}

.secondary-btn {
  background: transparent;
}

.hero-character {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -48%);
  width: min(132vw, 1380px);
  height: auto;
  max-width: none;
  opacity: 0.42;
  filter: drop-shadow(0 0 56px rgba(139,92,246,0.42)) drop-shadow(0 0 28px rgba(236,72,153,0.22));
}

h1, h2, h3, p, a, button, span, strong, div,
.text_description,
.text_description_services,
.payment-card p,
.testimonial-card p,
.service-card p,
.stat-box p,
.hero-text p,
.cta p,
.footer-brand p,
.footer-links a,
.footer-contact a,
.footer-contact span,
.footer-bottom,
.footer-bottom small,
.faq-answer {
  color: #ffffff;
}

.payment-card p,
.testimonial-card p,
.service-card p,
.stat-box p,
.hero-text p,
.cta p,
.footer-brand p,
.footer-bottom small,
.faq-answer {
  opacity: .84;
}

.faq-question {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.faq-answer {
  padding-top: 18px;
}

footer {
  width: 100%;
  margin: 60px 0 0;
  padding: clamp(54px, 6vw, 76px) var(--page-x) 34px;
  background: linear-gradient(180deg, rgba(2,2,3,0.98), rgba(9,4,14,0.98));
  border-top: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 -24px 80px rgba(0,0,0,0.42);
}

.footer-content {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-bottom {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand h2 {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-blade {
  opacity: .24;
  filter: drop-shadow(0 0 44px rgba(139,92,246,0.42));
  width: min(420px, 44vw);
}

@media (max-width: 900px) {
  nav {
    width: calc(100% - 24px);
    margin-top: 12px;
    border-radius: 16px;
  }

  .hero-character {
    display: none;
  }
}

/* === Ajuste solicitado: navbar sólida, tonos oscuros y cajas semitransparentes === */
:root {
  --purple: #5b1b8f;
  --pink: #7a2db8;
  --dark-purple: #120019;
  --panel: rgba(8, 8, 12, 0.66);
  --panel-strong: rgba(12, 12, 18, 0.78);
  --border: rgba(255, 255, 255, 0.10);
  --muted: #c9c9d1;
  --muted-2: #9d9da8;
}

body {
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 18%, rgba(74, 20, 112, 0.20), transparent 34%),
    radial-gradient(circle at 84% 22%, rgba(38, 12, 58, 0.24), transparent 32%),
    radial-gradient(circle at 50% 92%, rgba(24, 0, 38, 0.38), transparent 42%),
    linear-gradient(135deg, #020202 0%, #07050b 34%, #100018 68%, #030303 100%);
  background-size: 165% 165%, 175% 175%, 185% 185%, 100% 100%;
  animation: darkPurpleShiftSoft 22s ease-in-out infinite alternate;
}

@keyframes darkPurpleShiftSoft {
  0% { background-position: 0% 0%, 100% 0%, 45% 100%, 0 0; }
  50% { background-position: 70% 24%, 28% 68%, 92% 48%, 0 0; }
  100% { background-position: 100% 100%, 0% 100%, 12% 0%, 0 0; }
}

body::before {
  background:
    radial-gradient(circle at var(--bg-x, 50%) var(--bg-y, 30%), rgba(83, 26, 130, 0.10), transparent 32%),
    linear-gradient(120deg, rgba(255,255,255,0.025), transparent 34%, rgba(63,20,95,0.08) 66%, transparent);
  opacity: .55;
}

.background-glow {
  background: radial-gradient(circle, rgba(71, 24, 112, 0.18) 0%, rgba(22, 0, 34, 0.12) 46%, rgba(0,0,0,0) 74%);
}

nav {
  width: 100%;
  margin: 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #050506;
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

nav::before,
nav::after {
  display: none;
}

.logo,
.footer-brand h2 {
  background: linear-gradient(90deg, #3c0c5e, #6d28a8 52%, #220031);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 22px rgba(91,27,143,0.35);
}

.nav-links a {
  color: #d6d6df;
}

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

.btn,
.nav-contact {
  background: linear-gradient(135deg, #050506, #24242a 58%, #3a3a42);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 28px rgba(0,0,0,0.42);
}

.btn:hover,
.nav-contact:hover {
  box-shadow: 0 14px 34px rgba(0,0,0,0.55);
}

.secondary-btn {
  background: rgba(255,255,255,0.035);
  color: #ffffff;
}

.hero-character {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  width: min(132vw, 1380px);
  max-width: none;
  opacity: 0.48;
  filter: none;
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  mix-blend-mode: normal;
}

.hero-card,
.rank-box,
.payment-card,
.service-card,
.stat-box,
.testimonial-card,
.faq-item,
.cta,
.legal-warning {
  background: linear-gradient(180deg, rgba(8,8,12,0.72), rgba(8,8,12,0.52));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 16px 44px rgba(0,0,0,0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.payment-image {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.07);
}

h1, h2, h3,
.payment-card h3,
.service-card h3,
.stat-box h3,
.faq-question,
.footer-contact-card h3 {
  color: #ffffff;
}

p,
.text_description,
.text_description_services,
.payment-card p,
.testimonial-card p,
.service-card p,
.stat-box p,
.hero-text p,
.cta p,
.footer-brand p,
.footer-bottom,
.footer-bottom small,
.faq-answer,
.rank-box p {
  color: #c7c7d0;
  opacity: 1;
}

.hero-text span,
.name_trust,
.price {
  background: linear-gradient(90deg, #522078, #7c3fb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #7c3fb3;
}

.faq-question {
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

footer {
  width: 100%;
  margin: 60px 0 0;
  padding: clamp(54px, 6vw, 76px) var(--page-x) 34px;
  background: #050506;
  border-top: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 -24px 80px rgba(0,0,0,0.42);
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #c8c8d0;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-blade {
  filter: none;
  opacity: .18;
  border: none;
  box-shadow: none;
}

@media (max-width: 900px) {
  nav {
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: #050506;
  }

  .nav-links {
    background: #050506;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 22px 70px rgba(0,0,0,.65);
  }

  .nav-links a {
    background: rgba(255,255,255,0.045);
    color: #ffffff;
  }

  .hero-character {
    display: none;
  }
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    background: transparent;
}

.hero-character {
    width: 850px;
    max-width: 100%;
    object-fit: contain;

    background: transparent;
    border: none;
    box-shadow: none;

    filter: blur(0.4px);

    /* DIFUMINADO EXTREMO */
    -webkit-mask-image: radial-gradient(circle,
        rgba(0,0,0,1) 38%,
        rgba(0,0,0,0.95) 50%,
        rgba(0,0,0,0.82) 60%,
        rgba(0,0,0,0.58) 70%,
        rgba(0,0,0,0.30) 80%,
        rgba(0,0,0,0.12) 90%,
        transparent 100%);

    mask-image: radial-gradient(circle,
        rgba(0,0,0,1) 38%,
        rgba(0,0,0,0.95) 50%,
        rgba(0,0,0,0.82) 60%,
        rgba(0,0,0,0.58) 70%,
        rgba(0,0,0,0.30) 80%,
        rgba(0,0,0,0.12) 90%,
        transparent 100%);

    opacity: 0.96;
}
/* === CAMBIOS FINALES SOLICITADOS: fondo más oscuro, difuminado, navbar glass negra y colores sólidos === */
:root {
  --solid-purple: #6d28d9;
  --solid-purple-dark: #3b0764;
  --solid-pink: #a21caf;
  --solid-text: #ffffff;
  --soft-text: #d8d5e6;
  --black-glass: rgba(0, 0, 0, 0.78);
}

body {
  color: var(--solid-text);
  background:
    radial-gradient(circle at 18% 16%, rgba(67, 18, 111, 0.16), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(88, 28, 135, 0.12), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(31, 6, 58, 0.18), transparent 44%),
    linear-gradient(135deg, #010102 0%, #040106 38%, #08010f 70%, #020103 100%);
  background-size: 170% 170%, 180% 180%, 190% 190%, 100% 100%;
}

body::before {
  background:
    radial-gradient(circle at var(--bg-x, 50%) var(--bg-y, 30%), rgba(109, 40, 217, 0.07), transparent 34%),
    linear-gradient(120deg, rgba(255,255,255,0.012), transparent 36%, rgba(76,29,149,0.045) 68%, transparent);
  opacity: .45;
}

body::after {
  opacity: .28;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.42), transparent 78%);
}

.background-glow {
  background: radial-gradient(circle, rgba(76, 29, 149, 0.14) 0%, rgba(22, 0, 34, 0.10) 45%, rgba(0,0,0,0) 74%);
  filter: blur(68px);
  opacity: .7;
}

nav {
  background: var(--black-glass);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 42px rgba(0,0,0,0.55);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

nav::before {
  display: block;
  content: "";
  position: absolute;
  inset: auto 0 -30px 0;
  height: 30px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.38), transparent);
  opacity: .9;
}

.logo,
.footer-brand h2 {
  background: none;
  -webkit-text-fill-color: initial;
  color: #ffffff;
  text-shadow: 0 0 22px rgba(109, 40, 217, 0.28);
}

.hero-text h1,
.hero-text h1 span,
.hero-text p,
.section-title h2,
.section-title p {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.hero-text h1 {
  color: #ffffff;
  text-shadow: 0 12px 40px rgba(0,0,0,.68);
}

.hero-text h1 span {
  color: var(--solid-purple);
}

.hero-text p {
  color: var(--soft-text);
  text-shadow: 0 10px 28px rgba(0,0,0,.65);
}

.btn,
.nav-contact {
  background: var(--solid-purple);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 32px rgba(49, 10, 92, 0.48);
}

.btn:hover,
.nav-contact:hover {
  background: #7c3aed;
  box-shadow: 0 16px 38px rgba(76, 29, 149, 0.58);
}

.secondary-btn {
  background: #181020;
  color: #ffffff;
  border-color: rgba(255,255,255,0.14);
}

.secondary-btn:hover {
  background: #24122f;
}

.hero-character {
  opacity: .72;
  filter: blur(.15px) saturate(.95) contrast(1.04) brightness(.82);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center,
    #000 0%,
    #000 42%,
    rgba(0,0,0,.84) 56%,
    rgba(0,0,0,.50) 70%,
    rgba(0,0,0,.20) 84%,
    transparent 100%);
  mask-image: radial-gradient(ellipse at center,
    #000 0%,
    #000 42%,
    rgba(0,0,0,.84) 56%,
    rgba(0,0,0,.50) 70%,
    rgba(0,0,0,.20) 84%,
    transparent 100%);
}

.hero-card,
.rank-box,
.payment-card,
.service-card,
.stat-box,
.testimonial-card,
.faq-item,
.cta,
.legal-warning {
  background: linear-gradient(180deg, rgba(5, 4, 8, 0.78), rgba(6, 3, 10, 0.60));
  border: 1px solid rgba(255,255,255,0.075);
  box-shadow: 0 18px 52px rgba(0,0,0,0.42);
}

.faq-question {
  border-bottom: 1px solid rgba(255,255,255,0.20);
}

footer {
  background: linear-gradient(180deg, rgba(1,1,2,0.98), rgba(5,1,8,0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 -28px 90px rgba(0,0,0,0.58);
}

@media (max-width: 900px) {
  .hero-character {
    display: none;
  }

  .nav-links {
    background: rgba(0,0,0,0.90);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

.las-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 18px;
  border-radius: 999px;

  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);

  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;

  transition: 0.25s ease;
}

.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}



/* === FAQ: aviso legal + tarjeta Discord en el mismo orden visual === */
.faq {
  max-width: 1230px;
}

.faq-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(280px, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 40px;
}

.faq-bottom-grid .legal-warning {
  margin-top: 0;
  height: 100%;
}

.faq-discord-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(5, 4, 8, 0.78), rgba(6, 3, 10, 0.60));
  border: 1px solid rgba(255,255,255,0.075);
  box-shadow: 0 18px 52px rgba(0,0,0,0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.faq-discord-card h3 {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
  margin: 0;
}

.faq-discord-card p {
  color: var(--soft-text);
  line-height: 1.65;
  margin: 0;
}

.discord-support-btn {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 10px;
  background: var(--solid-purple);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 32px rgba(49, 10, 92, 0.48);
  font-weight: 800;
  text-decoration: none;
  transition: .25s ease;
}

.discord-support-btn:hover {
  background: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(76, 29, 149, 0.58);
}

.discord-btn-icon {
  font-size: 1.15rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .faq-bottom-grid {
    grid-template-columns: 1fr;
  }

  .discord-support-btn {
    width: 100%;
  }
}
