:root {
    --red: #E3350D;
    --yellow: #FFCB05;
    --blue: #3B5BA9;
    --dark: #0d0d1a;
    --darker: #07070f;
    --card-bg: #13132a;
    --glow-yellow: 0 0 20px #FFCB0580, 0 0 60px #FFCB0530;
    --glow-red: 0 0 20px #E3350D80, 0 0 60px #E3350D30;
    --glow-blue: 0 0 20px #3B5BA980, 0 0 60px #3B5BA930;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--darker);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(7,7,15,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,203,5,0.15);
  }

  .nav-logo {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    color: var(#ffffff);
    text-shadow: var(#ffffff);
    letter-spacing: 2px;
  }

  .nav-logo span { color: var(--yellow); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--yellow); }

  .nav-cta {
    background: var(--red);
    color: #fff !important;
    padding: 0.5rem 1.4rem;
    border-radius: 4px;
    font-family: 'Press Start 2P', monospace !important;
    font-size: 0.55rem !important;
    letter-spacing: 1px !important;
    transition: background 0.2s, box-shadow 0.2s !important;
  }

  .nav-cta:hover {
    background: #ff4422 !important;
    box-shadow: var(--glow-red) !important;
    color: #fff !important;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(59,91,169,0.25) 0%, transparent 70%),
      radial-gradient(ellipse 50% 50% at 80% 70%, rgba(227,53,13,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 50% at 20% 30%, rgba(255,203,5,0.08) 0%, transparent 60%);
  }

  /* Animated pokeball grid */
  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(59,91,169,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(59,91,169,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridFloat 20s linear infinite;
  }

  @keyframes gridFloat {
    from { transform: translateY(0); }
    to { transform: translateY(60px); }
  }

  /* Floating pokeballs */
  .pokeball-float {
    position: absolute;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.05);
    animation: floatBall linear infinite;
  }

  .pb1 { width: 80px; height: 80px; top: 15%; left: 8%; animation-duration: 18s; }
  .pb2 { width: 120px; height: 120px; top: 60%; left: 85%; animation-duration: 22s; animation-delay: -5s; }
  .pb3 { width: 50px; height: 50px; top: 80%; left: 15%; animation-duration: 15s; animation-delay: -8s; }
  .pb4 { width: 200px; height: 200px; top: 5%; left: 70%; animation-duration: 30s; animation-delay: -12s; opacity: 0.4; }

  @keyframes floatBall {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50%  { transform: translateY(-30px) rotate(180deg); opacity: 0.05; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.15; }
  }

  .hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
  }

  .hero-badge {
    display: inline-block;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    color: var(--yellow);
    background: rgba(255,203,5,0.1);
    border: 1px solid rgba(255,203,5,0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    animation: pulse 3s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255,203,5,0.2); }
    50%       { box-shadow: 0 0 25px rgba(255,203,5,0.5), 0 0 50px rgba(255,203,5,0.2); }
  }

  .hero-title {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 40px rgba(255,255,255,0.2);
  }

  .hero-title .accent-y { color: var(--yellow); text-shadow: var(--glow-yellow); }
  .hero-title .accent-r { color: var(--red); text-shadow: var(--glow-red); }

  .hero-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 600;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.65rem;
    padding: 1rem 2rem;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.2s;
    box-shadow: 0 4px 0 #8a2008;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #8a2008, var(--glow-red);
  }

  .btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 #8a2008; }

  .btn-secondary {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.65rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.2s;
  }

  .btn-secondary:hover {
    background: rgba(255,203,5,0.1);
    box-shadow: var(--glow-yellow);
  }

  .hero-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.8rem;
    padding: 0.6rem 1.4rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
  }

  .hero-guarantee .guarantee-icon { font-size: 1rem; }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--card-bg);
    border-top: 1px solid rgba(255,203,5,0.1);
    border-bottom: 1px solid rgba(255,203,5,0.1);
    padding: 2rem 3rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
  }

  .stat {
    text-align: center;
  }

  .stat-num {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.5rem;
    color: var(--yellow);
    text-shadow: var(--glow-yellow);
    display: block;
  }

  .stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    font-weight: 700;
  }

  /* ── SECTION HEADERS ── */
  .section { padding: 6rem 2rem; }

  .section-tag {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    color: var(--red);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
  }

  .section-title {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: #fff;
    margin-bottom: 1.2rem;
  }

  .section-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    line-height: 1.8;
    font-weight: 600;
  }

  /* ── HOW IT WORKS ── */
  .how-it-works {
    background: var(--dark);
    max-width: 1200px;
    margin: 0 auto;
  }

  .how-it-works-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  gap: 8rem; /* Aumentamos el espacio entre texto y máquina */
  align-items: center; /* Centrado vertical */
}
  .steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
  }

  .step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
  }

  .step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 52px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, rgba(255,203,5,0.3), transparent);
  }

  .step:last-child::before { display: none; }

  .step-num {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--card-bg);
    border: 2px solid rgba(255,203,5,0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.8rem;
    color: var(--yellow);
  }

  .step-content h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
  }

  .step-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }

  /* Machine visual */
  .machine-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .machine {
    width: 220px;
    position: relative;
    animation: machineFloat 6s ease-in-out infinite;
  }

  @keyframes machineFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-15px); }
  }

  .machine-body {
    background: linear-gradient(160deg, #1a1a3e, #0d0d2a);
    border: 3px solid rgba(255,203,5,0.4);
    border-radius: 16px 16px 8px 8px;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 0 40px rgba(59,91,169,0.4), inset 0 0 30px rgba(59,91,169,0.1);
    position: relative;
    overflow: hidden;
  }

  .machine-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--blue));
    border-radius: 16px 16px 0 0;
  }

  .machine-screen {
    background: #000;
    border: 2px solid rgba(255,203,5,0.5);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .machine-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
  }

  .screen-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    color: var(--yellow);
    animation: blink 2s step-end infinite;
    line-height: 2;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
  }

  .ball-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 1.2rem;
  }

  .mini-ball {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.2);
    animation: ballGlow 3s ease-in-out infinite;
  }

  .mini-ball:nth-child(odd) { animation-delay: -1.5s; }

  @keyframes ballGlow {
    0%, 100% { box-shadow: 0 0 8px currentColor; }
    50%       { box-shadow: 0 0 20px currentColor; }
  }

  .mb-red   { background: linear-gradient(135deg, #ff4422, #cc2200); color: #ff4422; }
  .mb-blue  { background: linear-gradient(135deg, #4466ff, #2244cc); color: #4466ff; }
  .mb-gold  { background: linear-gradient(135deg, #ffdd22, #ccaa00); color: #ffdd22; }
  .mb-green { background: linear-gradient(135deg, #22cc44, #118822); color: #22cc44; }
  .mb-pink  { background: linear-gradient(135deg, #ff88cc, #cc4488); color: #ff88cc; }
  .mb-purple{ background: linear-gradient(135deg, #aa44ff, #6600cc); color: #aa44ff; }

  .mini-ball::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px;
    width: 35%;
    height: 35%;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    filter: blur(2px);
  }

  .machine-slot {
    background: #000;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    gap: 4px;
  }

  .slot-light {
    width: 6px; height: 6px;
    border-radius: 50%;
    animation: trafficLight 2s step-end infinite;
  }

  .slot-light:nth-child(1) { background: #ff4422; animation-delay: 0s; }
  .slot-light:nth-child(2) { background: #ffdd22; animation-delay: 0.7s; }
  .slot-light:nth-child(3) { background: #22cc44; animation-delay: 1.4s; }

  @keyframes trafficLight {
    0%, 33%  { opacity: 1; }
    34%, 100% { opacity: 0.2; }
  }

  .machine-button {
    width: 100%;
    background: var(--red);
    border: none;
    border-radius: 6px;
    padding: 0.6rem;
    color: #fff;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.35rem;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 4px 0 #8a2008;
    transition: all 0.1s;
  }

  .machine-base {
    background: linear-gradient(160deg, #111128, #0a0a1a);
    border: 3px solid rgba(255,203,5,0.2);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .coin-slot {
    background: #000;
    border: 2px solid rgba(255,203,5,0.4);
    border-radius: 6px;
    width: 60px;
    height: 10px;
    position: relative;
  }

  .machine-legs {
    display: flex;
    justify-content: space-around;
    padding: 0 2rem;
  }

  .leg {
    width: 16px;
    height: 30px;
    background: linear-gradient(to bottom, #1a1a3e, #0d0d1a);
    border: 2px solid rgba(255,203,5,0.2);
    border-top: none;
    border-radius: 0 0 4px 4px;
  }

  /* glow under machine */
  .machine::after {
    content: '';
    display: block;
    height: 20px;
    background: radial-gradient(ellipse 80% 100% at center, rgba(59,91,169,0.5), transparent);
    margin-top: -5px;
    filter: blur(8px);
  }

  /* ── PRODUCTS / SETS ── */
  .products-section {
    background: var(--darker);
  }

  .products-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .products-header {
    margin-bottom: 3.5rem;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .product-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
  }

  .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 12px 12px 0 0;
  }

  .card-fire::before  { background: linear-gradient(90deg, var(--red), #ff8844); }
  .card-water::before { background: linear-gradient(90deg, var(--blue), #44aaff); }
  .card-light::before { background: linear-gradient(90deg, var(--yellow), #ffff44); }
  .card-dark::before  { background: linear-gradient(90deg, #aa44ff, #4422aa); }

  .product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,203,5,0.3);
  }

  .product-card:hover.card-fire  { box-shadow: 0 20px 40px rgba(227,53,13,0.2); }
  .product-card:hover.card-water { box-shadow: 0 20px 40px rgba(59,91,169,0.2); }
  .product-card:hover.card-light { box-shadow: 0 20px 40px rgba(255,203,5,0.2); }
  .product-card:hover.card-dark  { box-shadow: 0 20px 40px rgba(170,68,255,0.2); }

  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
  }

  .card-rarity {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.4rem;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    margin-bottom: 1rem;
    display: inline-block;
    letter-spacing: 2px;
  }

  .r-common   { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
  .r-rare     { background: rgba(59,91,169,0.3); color: #88aaff; }
  .r-epic     { background: rgba(170,68,255,0.3); color: #cc88ff; }
  .r-legendary{ background: rgba(255,203,5,0.2); color: var(--yellow); }

  .card-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }

  .card-price {
    margin-top: 1.2rem;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    color: var(--yellow);
  }

  /* ── FRANCHISE ── */
  .franchise-section {
    background: var(--dark);
  }

  .franchise-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .franchise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
  }

  .benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.2s;
  }

  .benefit:hover { border-color: rgba(255,203,5,0.2); }

  .benefit-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
  }

  .benefit h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
  }

  .benefit p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  /* Investment table */
  .invest-table {
    background: var(--card-bg);
    border: 1px solid rgba(255,203,5,0.15);
    border-radius: 12px;
    overflow: hidden;
  }

  .invest-header {
    background: rgba(255,203,5,0.08);
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,203,5,0.1);
  }

  .invest-header span {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.55rem;
    color: var(--yellow);
  }

  .invest-tier {
    padding: 1.2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 1rem;
  }

  .invest-tier:last-child { border-bottom: none; }

  .tier-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
  }

  .tier-income {
    font-size: 0.8rem;
    color: #44cc77;
    font-weight: 800;
  }

  .tier-detail-row {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
  }

  .tier-detail {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
  }

  .tier-featured {
    background: rgba(255,203,5,0.05);
    border-left: 3px solid var(--yellow);
    position: relative;
  }

  .tier-popular-badge {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.35rem;
    color: var(--yellow);
    background: rgba(255,203,5,0.15);
    border: 1px solid rgba(255,203,5,0.3);
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.6rem;
  }

  .tier-name {
    font-weight: 800;
    color: #fff;
    font-size: 0.95rem;
  }

  .tier-machines {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.2rem;
  }

  .tier-price {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.65rem;
    color: var(--yellow);
    text-align: right;
  }

  .tier-roi {
    font-size: 0.75rem;
    color: #44cc77;
    text-align: right;
    margin-top: 0.2rem;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: var(--darker);
  }

  .testimonials-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testi-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 1.8rem;
    text-align: left;
    position: relative;
  }

  .testi-stars {
    color: var(--yellow);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .testi-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 1.2rem;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }

  .testi-name {
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
  }

  .testi-loc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
  }

  /* ── CTA FINAL ── */
  .cta-section {
    background: var(--card-bg);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 50% 50%, rgba(227,53,13,0.1) 0%, transparent 70%);
  }

  .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-eyebrow {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.5rem;
    color: var(--red);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
  }

  .cta-title {
    font-family: 'Press Start 2P', monospace;
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    color: #fff;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .cta-sub {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 600;
  }

  /* FORM */
  .cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-input {
    flex: 1;
    min-width: 220px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 0.9rem 1.2rem;
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .cta-input:focus {
    border-color: rgba(255,203,5,0.5);
    box-shadow: 0 0 20px rgba(255,203,5,0.1);
  }

  .cta-input::placeholder { color: rgba(255,255,255,0.3); }

  .cta-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
  }

  /* ── URGENCY BADGE ── */
  .urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(227,53,13,0.12);
    border: 1px solid rgba(227,53,13,0.35);
    border-radius: 100px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.8rem;
  }

  .urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    animation: dotPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
  }

  @keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
  }

  /* ── CALENDLY WRAPPER ── */
  .calendly-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,203,5,0.15);
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem auto;
    max-width: 800px;
    position: relative;
  }

  .calendly-fallback {
    display: none;
    padding: 2rem;
    text-align: center;
  }

  /* ── FOOTER ── */
  footer {
    background: #050508;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 3rem 2rem 2rem;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
    margin-top: 1rem;
    max-width: 260px;
  }

  .footer-col h5 {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.45rem;
    color: var(--yellow);
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
  }

  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: rgba(255,255,255,0.8); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
  }

  .footer-disclaimer {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.15);
    max-width: 400px;
    text-align: right;
  }

  /* ── SCROLL REVEAL ── */
  /* ─── ANIMACIONES DE APARICIÓN (REVEAL) ─── */

/* 1. Estado inicial: Oculto y un poco desplazado hacia abajo */
.reveal {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out !important;
  visibility: visible !important; /* Asegura que no esté oculto por otras reglas */
}

/* 2. Estado activo: Cuando el JS añade la clase 'visible' */
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 3. Ajuste para el Hero: El Hero no debe esperar al scroll, debe verse siempre */
.hero .reveal, 
.hero-content {
  opacity: 1 !important;
  transform: none !important;
}

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem;justify-content: center;}
    .nav-links { display: none; }
    .how-it-works-inner { grid-template-columns: 1fr; }
    .franchise-grid { grid-template-columns: 1fr; }
    .footer-inner {  display: flex; flex-direction: column; text-align: center;gap: 2.5rem;}
    .stats-bar { gap: 2rem; }
    .machine { width: 180px; }
    .footer-brand p {margin: 1rem auto; /* El 'auto' es lo que centra la caja en el medio */
    max-width: 100%;   /* Deja que el texto respire a lo ancho */
  }
  }

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #13132a;
  padding: 3rem;
  border-radius: 15px;
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid rgba(255,203,5,0.2);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.modal-content h2 { font-family: 'Press Start 2P'; font-size: 1.2rem; color: var(--yellow); margin-bottom: 1.5rem; }
.modal-content p { line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }












