/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-green: #00ff88;
    --neon-green-dark: #00cc6a;
    --neon-gold: #ffd700;
    --neon-gold-bright: #ffed4e;
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-medium: #1a1a1a;
    --white: #ffffff;
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.5),
                  0 0 40px rgba(0, 255, 136, 0.3),
                  0 0 60px rgba(0, 255, 136, 0.2);
    --glow-gold: 0 0 20px rgba(255, 215, 0, 0.5),
                 0 0 40px rgba(255, 215, 0, 0.3),
                 0 0 60px rgba(255, 215, 0, 0.2);
    --glow-combined: 0 0 20px rgba(0, 255, 136, 0.5),
                     0 0 40px rgba(255, 215, 0, 0.3),
                     0 0 60px rgba(0, 255, 136, 0.2);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--black);
    background-image: url('1.jpeg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Espacio para el menú fijo */
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
    pointer-events: none;
}

/* Menú de Navegación */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.main-nav.scrolled {
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: var(--neon-green);
    box-shadow: 0 2px 30px rgba(0, 255, 136, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.9;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--neon-green);
    opacity: 1;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--neon-green);
    opacity: 1;
}

.nav-link.active::after {
    width: 80%;
}

.nav-cta {
    background: var(--neon-green);
    color: var(--black) !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    transition: all 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--neon-gold);
    color: var(--black) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

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

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

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

/* Mejoras de rendimiento en móvil */
* {
    -webkit-tap-highlight-color: rgba(0, 255, 136, 0.2);
}

/* Optimizar scroll en móvil */
@media (max-width: 768px) {
    html {
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* Canvas de partículas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Secciones con fondo semitransparente para legibilidad */
section {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    overflow: hidden;
    z-index: 1;
    background-color: transparent;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 1000px;
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-line {
    display: block;
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }
.title-line:nth-child(4) { animation-delay: 0.4s; }
.title-line:nth-child(5) { animation-delay: 0.5s; }

.title-line.highlight {
    color: var(--neon-gold);
    text-shadow: var(--glow-gold);
    animation: fadeInDown 0.8s ease-out forwards, glow-pulse 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1.8;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-visual {
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.device-mockup-hero {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.device-screen-hero {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    min-height: 300px;
    box-shadow: var(--glow-green);
}

.floating-chips-hero {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.chip-hero {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.7;
    animation: float 4s ease-in-out infinite;
}

.chip-hero:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.chip-hero:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.chip-hero:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.profit-graph-hero {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.graph-line {
    flex: 1;
    background: linear-gradient(180deg, var(--neon-green) 0%, var(--neon-gold) 100%);
    border-radius: 5px 5px 0 0;
    animation: grow-bar 2s ease-out forwards;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.graph-line:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.graph-line:nth-child(2) { height: 65%; animation-delay: 0.3s; }
.graph-line:nth-child(3) { height: 100%; animation-delay: 0.5s; }

.subtitle-word {
    display: inline-block;
    margin-right: 8px;
}

.subtitle-word:nth-child(1) { animation-delay: 1.1s; }
.subtitle-word:nth-child(2) { animation-delay: 1.2s; }
.subtitle-word:nth-child(3) { animation-delay: 1.3s; }
.subtitle-word:nth-child(4) { animation-delay: 1.4s; }
.subtitle-word:nth-child(5) { animation-delay: 1.5s; }
.subtitle-word:nth-child(6) { animation-delay: 1.6s; }
.subtitle-word:nth-child(7) { animation-delay: 1.7s; }
.subtitle-word:nth-child(8) { animation-delay: 1.8s; }
.subtitle-word:nth-child(9) { animation-delay: 1.9s; }
.subtitle-word:nth-child(10) { animation-delay: 2.0s; }
.subtitle-word:nth-child(11) { animation-delay: 2.1s; }
.subtitle-word:nth-child(12) { animation-delay: 2.2s; }

.subtitle-word.highlight {
    color: var(--neon-green);
    text-shadow: var(--glow-green);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Botones CTA */
.cta-button {
    position: relative;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--neon-green);
    background: transparent;
    color: var(--neon-green);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.cta-button.primary {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.cta-button.secondary {
    border-color: var(--neon-gold);
    color: var(--neon-gold);
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 1.3rem;
}

.cta-button .button-text {
    position: relative;
    z-index: 2;
}

.cta-button .button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.cta-button.primary .button-glow {
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
}

.cta-button.secondary .button-glow {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-gold);
    border-color: var(--neon-gold);
    color: var(--neon-gold);
}

.cta-button.primary:hover {
    box-shadow: var(--glow-gold);
    border-color: var(--neon-gold);
    color: var(--neon-gold);
}

.cta-button.secondary:hover {
    box-shadow: var(--glow-gold);
    border-color: var(--neon-gold-bright);
    color: var(--neon-gold-bright);
}

.cta-button:hover .button-glow {
    width: 300px;
    height: 300px;
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Elementos flotantes */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
}

.floating-chip {
    position: absolute;
    font-size: 3rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.chip-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.chip-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.chip-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.chip-4 {
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.chip-5 {
    bottom: 20%;
    right: 30%;
    animation-delay: 4s;
}

.chip-6 {
    top: 70%;
    left: 5%;
    animation-delay: 5s;
}

/* Sección "El Momento es Ahora" */
.moment-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.moment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    animation: pulse-bg 4s ease-in-out infinite;
}

.moment-content {
    text-align: center;
}

.moment-text {
    max-width: 800px;
    margin: 40px auto;
    font-size: 1.3rem;
    line-height: 1.8;
}

.moment-text p {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.8s ease-out forwards;
}

.moment-text p:nth-child(1) { animation-delay: 0.1s; }
.moment-text p:nth-child(2) { animation-delay: 0.4s; }
.moment-text p:nth-child(3) { animation-delay: 0.7s; }

.highlight-text {
    color: var(--neon-gold);
    text-shadow: var(--glow-gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.moment-visual {
    margin-top: 60px;
}

.device-mockup {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.device-screen {
    background: var(--black-medium);
    border: 3px solid var(--neon-green);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--glow-green);
    animation: screen-glow 3s ease-in-out infinite;
}

.profit-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    margin-bottom: 20px;
    gap: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--neon-green) 0%, var(--neon-gold) 100%);
    border-radius: 5px 5px 0 0;
    animation: grow-bar 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.3s; }
.chart-bar:nth-child(3) { animation-delay: 0.5s; }
.chart-bar:nth-child(4) { animation-delay: 0.7s; }
.chart-bar:nth-child(5) { animation-delay: 0.9s; }

.profit-text {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon-gold);
    text-shadow: var(--glow-gold);
    font-family: 'Orbitron', sans-serif;
}

/* Sección "Tres formas de generar ingresos" */
.income-methods {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon-green);
    text-shadow: var(--glow-green);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.method-card {
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.method-card:nth-child(1) { animation-delay: 0.1s; }
.method-card:nth-child(2) { animation-delay: 0.2s; }
.method-card:nth-child(3) { animation-delay: 0.3s; }

.method-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.method-card:hover {
    transform: translateY(-20px) rotateY(2deg);
    box-shadow: var(--glow-gold);
    border-color: var(--neon-gold);
}

.method-card:nth-child(2):hover {
    transform: translateY(-20px) rotateY(-2deg);
}

.method-card:hover::before {
    opacity: 1;
}

.method-icon {
    margin-bottom: 20px;
}

.icon-3d {
    font-size: 4rem;
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 0.4s;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
    animation: icon-bounce 2s ease-in-out infinite;
}

.method-card:hover .icon-3d {
    transform: scale(1.2);
    animation: icon-bounce 1s ease-in-out infinite;
}

.method-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--neon-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.method-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.method-description strong {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.method-profit {
    margin: 25px 0;
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    border: 1px solid var(--neon-green);
}

.profit-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.profit-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-gold);
    text-shadow: var(--glow-gold);
    font-family: 'Orbitron', sans-serif;
}

.method-cta {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.method-cta:hover {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: var(--glow-green);
    transform: scale(1.05);
}

.method-cta-secondary {
    margin-top: 10px;
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    background: transparent;
    border: 2px solid var(--neon-gold);
    color: var(--neon-gold);
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.method-cta-secondary:hover {
    background: var(--neon-gold);
    color: var(--black);
    box-shadow: var(--glow-gold);
    transform: scale(1.05);
}

/* Sección "Venta de Paquetes de Fichas" */
.packages-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    animation: pulse-bg 6s ease-in-out infinite;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.packages-carousel {
    margin-top: 60px;
}

.carousel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.package-card {
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    overflow: hidden;
    animation: float-card 4s ease-in-out infinite;
}

.package-card.featured {
    border-color: var(--neon-gold);
    transform: scale(1.05);
}

.package-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.package-card:hover {
    transform: translateY(-20px) rotateX(5deg) scale(1.05);
    box-shadow: var(--glow-gold);
    border-color: var(--neon-gold);
    animation: none;
}

.package-card:hover .package-glow {
    opacity: 1;
}

.package-badge-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--neon-gold);
    color: var(--black);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: var(--glow-gold);
    animation: pulse-badge 2s ease-in-out infinite;
}

.package-header {
    margin-bottom: 30px;
    position: relative;
}

.package-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--neon-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin-bottom: 10px;
}

.package-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.2);
    color: var(--neon-green);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid var(--neon-green);
}

.package-price {
    margin: 30px 0;
    font-family: 'Orbitron', sans-serif;
}

.package-price .currency {
    font-size: 1.5rem;
    color: var(--neon-green);
    vertical-align: top;
}

.package-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neon-gold);
    text-shadow: var(--glow-gold);
    line-height: 1;
}

.package-details {
    margin: 30px 0;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    opacity: 0.8;
}

.detail-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--neon-green);
}

.detail-value.highlight {
    color: var(--neon-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-size: 1.4rem;
}

.package-cta {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.package-card:hover .package-cta {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: var(--glow-green);
    transform: scale(1.05);
}

.role-cta {
    width: 100%;
    margin-top: 25px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 700;
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-cta:hover {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: var(--glow-green);
    transform: scale(1.05);
}

.example-cta {
    margin-top: 25px;
    text-align: center;
}

.example-cta .cta-button {
    width: 100%;
    max-width: 400px;
}

/* Sección "Cómo funciona cada rol" */
.how-it-works {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.roles-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.role-section {
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s;
    opacity: 0;
}

.role-section[data-role="cajero"] {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.role-section[data-role="admin"] {
    animation: fadeInRight 0.8s ease-out forwards;
}

.role-section[data-role="distribuidor"] {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.role-section:hover {
    border-color: var(--neon-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-10px);
}

.role-header {
    text-align: center;
    margin-bottom: 40px;
}

.role-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.5));
    animation: icon-float 3s ease-in-out infinite;
    position: relative;
}

.role-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    animation: particle-float 3s ease-in-out infinite;
    pointer-events: none;
}

.role-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.role-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s;
    opacity: 0;
}

.step-item:nth-child(odd) {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.step-item:nth-child(even) {
    animation: fadeInRight 0.6s ease-out forwards;
}

.step-item:nth-child(1) { animation-delay: 0.2s; }
.step-item:nth-child(2) { animation-delay: 0.4s; }
.step-item:nth-child(3) { animation-delay: 0.6s; }

.step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-green) 0%, transparent 100%);
    opacity: 0.3;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-item:hover::before {
    opacity: 1;
    box-shadow: 0 0 10px var(--neon-green);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--neon-green);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    animation: number-pulse 2s ease-in-out infinite;
}

.step-content h4 {
    font-size: 1.2rem;
    color: var(--neon-gold);
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.step-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.step-content strong {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.role-profit-counter {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    border: 1px solid var(--neon-green);
    text-align: center;
}

.role-profit-counter .profit-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.role-profit-counter .profit-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--neon-gold);
    text-shadow: var(--glow-gold);
    font-family: 'Orbitron', sans-serif;
}

/* Sección "Lo que necesitás para empezar" */
.requirements {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.requirement-item {
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
}

.requirement-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.requirement-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8), var(--glow-green);
    border-color: var(--neon-green);
    animation: bounce-hover 0.5s ease-out;
}

.requirement-item:hover::before {
    opacity: 1;
}

.requirement-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.5));
    animation: icon-bounce 2s ease-in-out infinite;
}

.requirement-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.requirement-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.requirements-cta {
    text-align: center;
    margin-top: 60px;
}

/* Sección de Testimonios */
.testimonials {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 60px auto;
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.testimonial-content {
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--glow-green);
    transition: all 0.3s;
}

.testimonial-card:hover .testimonial-content {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(0, 255, 136, 0.8),
        0 0 60px rgba(0, 255, 136, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.8);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    box-shadow: var(--glow-green);
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-text strong,
.profit-highlight {
    color: var(--neon-gold);
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
    font-weight: 700;
    animation: glow-pulse-intense 2s ease-in-out infinite;
}

.testimonial-author {
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 10px;
}

.testimonial-proof {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--neon-gold);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    background: transparent;
    color: var(--neon-green);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: var(--glow-green);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.3);
    border: 2px solid var(--neon-green);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    transform: scale(1.2);
}

/* Sección "Cómo funciona el negocio" */
.how-business-works {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.section-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.roles-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.role-box {
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.role-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-green);
}

.role-icon-large {
    font-size: 3.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.role-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-gold);
    margin-bottom: 15px;
}

.role-box p {
    opacity: 0.9;
    line-height: 1.6;
}

.money-flow {
    margin-top: 60px;
    padding: 40px;
    background: var(--black-medium);
    border-radius: 20px;
    border: 2px solid var(--neon-green);
}

.flow-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    color: var(--neon-gold);
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--neon-green);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.step-content-large h4 {
    font-size: 1.3rem;
    color: var(--neon-gold);
    margin-bottom: 10px;
}

.step-content-large p {
    opacity: 0.9;
    line-height: 1.6;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.example-box {
    margin-top: 40px;
    padding: 30px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid var(--neon-green);
}

.example-box h4 {
    font-size: 1.5rem;
    color: var(--neon-gold);
    margin-bottom: 20px;
    text-align: center;
}

.example-calculation {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.calc-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.calc-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-green);
    font-family: 'Orbitron', sans-serif;
}

.calc-value.highlight {
    color: var(--neon-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-size: 1.8rem;
}

/* Descripción de fichas */
.chips-description {
    max-width: 800px;
    margin: 30px auto 50px;
    padding: 30px;
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
}

.chips-info {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.chips-info strong {
    color: var(--neon-gold);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Sección de Videos */
.videos-section {
    margin: 50px auto;
    max-width: 1200px;
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid var(--neon-green);
    box-shadow: var(--glow-green);
    background: var(--black-medium);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.6),
        0 0 50px rgba(0, 255, 136, 0.4);
    border-color: var(--neon-gold);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 13px;
}

.packages-cta-wrapper {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.packages-cta-wrapper .cta-button {
    width: 100%;
    max-width: 500px;
}

.requirements-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.requirements-cta .cta-button {
    width: 100%;
    max-width: 500px;
}

/* Sección de Transparencia */
.transparency-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.transparency-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.transparency-box {
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.transparency-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-green);
}

.transparency-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.transparency-box p {
    margin-bottom: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

.transparency-box ul {
    list-style: none;
    padding-left: 0;
}

.transparency-box ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
    opacity: 0.9;
}

.transparency-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 700;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

/* Sección de Soporte */
.support-section {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.support-option {
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.support-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-green);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
}

.support-option h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-gold);
    margin-bottom: 15px;
}

.support-option p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.support-button {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-button:hover {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: var(--glow-green);
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    color: var(--neon-gold);
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--glow-green);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(0, 255, 136, 0.05);
}

.faq-question h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--neon-gold);
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--neon-green);
    font-weight: 700;
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 25px;
}

.faq-answer p {
    line-height: 1.8;
    opacity: 0.9;
    margin: 0;
}

/* Mejoras en testimonios */
.testimonial-results {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 0;
}

.result-badge {
    padding: 5px 12px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--neon-green);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--neon-green);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--glow-green);
}

/* Sección Final CTA */
.final-cta {
    padding: 120px 20px;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: pulse-bg 4s ease-in-out infinite;
}

.final-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.4;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInDown 0.8s ease-out forwards;
}

.final-title .highlight {
    color: var(--neon-gold);
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4);
    display: block;
    margin-top: 15px;
    animation: glow-pulse-intense 2s ease-in-out infinite;
}

.final-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: 0;
}

.final-subtitle .phrase {
    display: block;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.final-subtitle .phrase:nth-child(1) { animation-delay: 0.2s; }
.final-subtitle .phrase:nth-child(2) { animation-delay: 0.4s; }

.final-cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.button-particles {
    position: relative;
    overflow: visible;
}

.particles-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.button-particles::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.button-particles:hover::before {
    opacity: 1;
    animation: particle-glow 1s ease-in-out infinite;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: var(--glow-gold);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 50px rgba(255, 215, 0, 0.5),
            0 0 70px rgba(255, 215, 0, 0.3);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 255, 136, 0.6),
            0 0 50px rgba(0, 255, 136, 0.4);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-40px) rotate(0deg);
    }
    75% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

@keyframes pulse-bg {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

@keyframes screen-glow {
    0%, 100% {
        box-shadow: var(--glow-green);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 255, 136, 0.8),
            0 0 50px rgba(0, 255, 136, 0.5);
    }
}

@keyframes grow-bar {
    from {
        height: 0;
    }
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes icon-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes number-pulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(0, 255, 136, 0.8),
            0 0 35px rgba(0, 255, 136, 0.5);
    }
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes particle-float {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -60%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes bounce-hover {
    0%, 100% {
        transform: translateY(-10px) scale(1.05);
    }
    50% {
        transform: translateY(-15px) scale(1.08);
    }
}

@keyframes glow-pulse-intense {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.4);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 215, 0, 0.8),
            0 0 90px rgba(255, 215, 0, 0.6);
    }
}

@keyframes particle-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

.pop-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pop-in.visible {
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--glow-green);
}

.role-section.visible {
    opacity: 1;
}

.step-item.visible {
    opacity: 1;
}

/* Widget de Chat en Vivo */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    max-height: 600px;
    background: var(--black-medium);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(0, 255, 136, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: chatSlideIn 0.5s ease-out;
}

.chat-widget.minimized {
    max-height: 60px;
}

.chat-widget.minimized .chat-body {
    display: none;
}

@keyframes chatSlideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.chat-header {
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-header:hover {
    background: linear-gradient(135deg, var(--neon-green-dark) 0%, var(--neon-green) 100%);
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chat-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 700;
}

.chat-status {
    font-size: 0.85rem;
    color: var(--black);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-status::before {
    content: '●';
    color: #00ff00;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chat-toggle {
    background: transparent;
    border: none;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: all 0.3s;
}

.chat-toggle:hover {
    background: rgba(0, 0, 0, 0.2);
}

.chat-body {
    display: flex;
    flex-direction: column;
    height: 500px;
    background: var(--black-medium);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: var(--black);
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green-dark);
}

.message {
    display: flex;
    gap: 10px;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid var(--neon-green);
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid var(--neon-gold);
}

.message-content {
    flex: 1;
    background: var(--black);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 12px 15px;
    max-width: 80%;
}

.bot-message .message-content {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.user-message .message-content {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.message-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--white);
    font-size: 0.95rem;
}

.quick-questions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.quick-btn {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    text-align: left;
    transition: all 0.3s;
}

.quick-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateX(5px);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.chat-input-container {
    display: flex;
    gap: 10px;
    padding: 15px;
    background: var(--black);
    border-top: 2px solid rgba(0, 255, 136, 0.3);
}

.chat-input {
    flex: 1;
    background: var(--black-medium);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    padding: 12px 15px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Rajdhani', sans-serif;
    outline: none;
    transition: all 0.3s;
}

.chat-input:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chat-send {
    width: 45px;
    height: 45px;
    background: var(--neon-green);
    border: none;
    border-radius: 10px;
    color: var(--black);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: 700;
}

.chat-send:hover {
    background: var(--neon-gold);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.chat-send:active {
    transform: scale(0.95);
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Responsive para chat */
@media (max-width: 768px) {
    .chat-widget {
        width: calc(100% - 20px);
        right: 10px;
        left: auto;
        bottom: 10px;
        max-width: none;
        max-height: calc(100vh - 20px);
        border-radius: 15px;
    }
    
    .chat-body {
        height: calc(100vh - 140px);
        max-height: 500px;
    }
    
    .chat-header {
        padding: 12px 15px;
    }
    
    .chat-avatar {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .chat-info h4 {
        font-size: 1rem;
    }
    
    .chat-status {
        font-size: 0.75rem;
    }
    
    .chat-messages {
        padding: 15px;
        gap: 12px;
    }
    
    .message-content {
        max-width: 85%;
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .message-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .quick-questions {
        gap: 6px;
        margin-top: 8px;
    }
    
    .quick-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
        min-height: 44px; /* Tamaño táctil mínimo */
    }
    
    .chat-input-container {
        padding: 12px;
        gap: 8px;
    }
    
    .chat-input {
        padding: 12px;
        font-size: 0.9rem;
        min-height: 44px; /* Tamaño táctil mínimo */
    }
    
    .chat-send {
        width: 44px;
        height: 44px;
        min-width: 44px; /* Tamaño táctil mínimo */
        font-size: 1.1rem;
    }
    
    .message-avatar {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .chat-widget {
        width: calc(100% - 10px);
        right: 5px;
        bottom: 5px;
        border-radius: 12px;
        max-height: calc(100vh - 10px);
    }
    
    .chat-widget.minimized {
        max-height: 55px;
    }
    
    .chat-header {
        padding: 10px 12px;
    }
    
    .chat-avatar {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .chat-info h4 {
        font-size: 0.95rem;
    }
    
    .chat-status {
        font-size: 0.7rem;
    }
    
    .chat-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.3rem;
    }
    
    .chat-body {
        height: calc(100vh - 120px);
        max-height: 450px;
    }
    
    .chat-messages {
        padding: 12px;
        gap: 10px;
    }
    
    .message-content {
        max-width: 90%;
        padding: 10px;
        border-radius: 12px;
    }
    
    .message-content p {
        font-size: 0.85rem;
    }
    
    .quick-btn {
        padding: 12px;
        font-size: 0.75rem;
        min-height: 48px;
    }
    
    .chat-input-container {
        padding: 10px;
    }
    
    .chat-input {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .typing-dot {
        width: 6px;
        height: 6px;
    }
}

/* Responsive - Tablet y Móvil Grande */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    /* Menú de Navegación */
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 2px solid var(--neon-green);
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
    }
    
    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 60px 15px 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .title-line {
        display: inline;
        margin-right: 5px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-top: 30px;
    }
    
    .cta-button {
        width: 100%;
        max-width: none;
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .device-mockup-hero {
        max-width: 100%;
    }
    
    .device-screen-hero {
        padding: 25px 15px;
        min-height: 220px;
    }
    
    .chip-hero {
        font-size: 2rem;
    }
    
    .floating-chip {
        font-size: 2rem;
    }
    
    /* Secciones generales */
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    /* Moment Section */
    .moment-section {
        padding: 60px 15px;
    }
    
    .moment-text {
        font-size: 1.1rem;
    }
    
    .moment-text p {
        margin-bottom: 15px;
    }
    
    .device-mockup {
        max-width: 100%;
    }
    
    .device-screen {
        padding: 25px 15px;
    }
    
    .profit-chart {
        height: 150px;
        margin-bottom: 15px;
    }
    
    .profit-text {
        font-size: 2rem;
    }
    
    /* Income Methods */
    .income-methods {
        padding: 60px 15px;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .method-card {
        padding: 30px 20px;
    }
    
    .method-title {
        font-size: 1.5rem;
    }
    
    .method-description {
        font-size: 1rem;
    }
    
    /* Packages Section */
    .packages-section {
        padding: 60px 15px;
    }
    
    .chips-description {
        padding: 25px 20px;
        margin: 25px auto 40px;
    }
    
    .chips-info {
        font-size: 1rem;
    }
    
    .videos-section {
        margin: 40px auto;
    }
    
    .videos-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
    
    .carousel-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .package-price .amount {
        font-size: 2.5rem;
    }
    
    .packages-cta-wrapper {
        margin-top: 40px;
    }
    
    /* How Business Works */
    .how-business-works {
        padding: 60px 15px;
    }
    
    .roles-explanation {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .role-box {
        padding: 25px 20px;
    }
    
    .role-icon-large {
        font-size: 3rem;
    }
    
    .money-flow {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .flow-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .flow-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 5px 0;
        font-size: 1.5rem;
    }
    
    .step-number-large {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .step-content-large h4 {
        font-size: 1.1rem;
    }
    
    .example-box {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .example-box h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .example-calculation {
        gap: 12px;
    }
    
    .calc-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px;
    }
    
    .calc-label {
        font-size: 1rem;
    }
    
    .calc-value {
        font-size: 1.3rem;
    }
    
    .calc-value.highlight {
        font-size: 1.5rem;
    }
    
    /* How It Works */
    .how-it-works {
        padding: 60px 15px;
    }
    
    .roles-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .role-section {
        padding: 30px 20px;
    }
    
    .role-title {
        font-size: 1.6rem;
    }
    
    .step-item {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .role-profit-counter {
        padding: 15px;
        margin-top: 25px;
    }
    
    .role-profit-counter .profit-amount {
        font-size: 1.6rem;
    }
    
    /* Requirements */
    .requirements {
        padding: 60px 15px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }
    
    .requirement-item {
        padding: 30px 20px;
    }
    
    .requirement-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .requirement-item h3 {
        font-size: 1.3rem;
    }
    
    .requirements-cta {
        margin-top: 40px;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 60px 15px;
    }
    
    .testimonials-carousel {
        margin: 40px auto;
        min-height: 250px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-results {
        gap: 8px;
        margin: 12px 0;
    }
    
    .result-badge {
        font-size: 0.8rem;
        padding: 4px 10px;
    }
    
    /* Transparency */
    .transparency-section {
        padding: 60px 15px;
    }
    
    .transparency-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .transparency-box {
        padding: 25px 20px;
    }
    
    .transparency-box h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    /* Support */
    .support-section {
        padding: 60px 15px;
    }
    
    .support-options {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }
    
    .support-option {
        padding: 30px 20px;
    }
    
    .support-icon {
        font-size: 2.5rem;
    }
    
    .support-option h3 {
        font-size: 1.3rem;
    }
    
    .faq-section {
        margin-top: 40px;
    }
    
    .faq-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        font-size: 1.8rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 60px 15px;
    }
    
    .final-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .final-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .final-cta-buttons .cta-button {
        width: 100%;
        max-width: none;
        padding: 20px 30px;
        font-size: 1.1rem;
    }
}

/* Responsive - Móvil Pequeño */
@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 10px 30px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .title-line {
        display: block;
        margin-bottom: 5px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-cta {
        gap: 12px;
        margin-top: 25px;
    }
    
    .cta-button {
        padding: 16px 25px;
        font-size: 0.95rem;
    }
    
    .cta-button.large {
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    .hero-visual {
        margin-top: 30px;
    }
    
    .device-screen-hero {
        padding: 20px 12px;
        min-height: 180px;
    }
    
    .chip-hero {
        font-size: 1.5rem;
    }
    
    .graph-line {
        gap: 6px;
    }
    
    .floating-chip {
        font-size: 1.5rem;
    }
    
    /* Container */
    .container {
        padding: 0 10px;
    }
    
    /* Secciones generales */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    /* Moment Section */
    .moment-section {
        padding: 50px 10px;
    }
    
    .moment-text {
        font-size: 1rem;
        margin: 30px auto;
    }
    
    .moment-text p {
        margin-bottom: 12px;
    }
    
    .highlight-text {
        font-size: 1.2rem;
    }
    
    .device-screen {
        padding: 20px 12px;
    }
    
    .profit-chart {
        height: 120px;
        gap: 6px;
    }
    
    .profit-text {
        font-size: 1.8rem;
    }
    
    /* Income Methods */
    .income-methods {
        padding: 50px 10px;
    }
    
    .methods-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .method-card {
        padding: 25px 15px;
    }
    
    .icon-3d {
        font-size: 3rem;
    }
    
    .method-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .method-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .method-profit {
        padding: 12px;
        margin: 20px 0;
    }
    
    .profit-amount {
        font-size: 1.5rem;
    }
    
    .method-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    /* Packages Section */
    .packages-section {
        padding: 50px 10px;
    }
    
    .chips-description {
        padding: 20px 15px;
        margin: 20px auto 30px;
    }
    
    .chips-info {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .videos-section {
        margin: 30px auto;
    }
    
    .videos-container {
        gap: 20px;
        margin: 25px 0;
    }
    
    .video-wrapper {
        border-radius: 10px;
    }
    
    .carousel-container {
        gap: 15px;
    }
    
    .package-card {
        padding: 25px 15px;
    }
    
    .package-name {
        font-size: 1.5rem;
    }
    
    .package-price .currency {
        font-size: 1.2rem;
    }
    
    .package-price .amount {
        font-size: 2.2rem;
    }
    
    .package-details {
        margin: 25px 0;
    }
    
    .detail-item {
        padding: 12px 0;
    }
    
    .detail-label {
        font-size: 0.9rem;
    }
    
    .detail-value {
        font-size: 1.1rem;
    }
    
    .detail-value.highlight {
        font-size: 1.3rem;
    }
    
    .package-cta {
        padding: 12px;
        font-size: 1rem;
    }
    
    /* How Business Works */
    .how-business-works {
        padding: 50px 10px;
    }
    
    .roles-explanation {
        gap: 15px;
        margin: 25px 0;
    }
    
    .role-box {
        padding: 20px 15px;
    }
    
    .role-icon-large {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .role-box h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .role-box p {
        font-size: 0.95rem;
    }
    
    .money-flow {
        padding: 25px 15px;
        margin-top: 30px;
    }
    
    .flow-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .flow-steps {
        gap: 12px;
    }
    
    .flow-step {
        min-width: auto;
    }
    
    .step-number-large {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .step-content-large h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .step-content-large p {
        font-size: 0.9rem;
    }
    
    .example-box {
        padding: 20px 15px;
        margin-top: 25px;
    }
    
    .example-box h4 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .calc-item {
        padding: 12px;
    }
    
    .calc-label {
        font-size: 0.95rem;
    }
    
    .calc-value {
        font-size: 1.2rem;
    }
    
    .calc-value.highlight {
        font-size: 1.4rem;
    }
    
    /* How It Works */
    .how-it-works {
        padding: 50px 10px;
    }
    
    .roles-timeline {
        gap: 25px;
        margin-top: 30px;
    }
    
    .role-section {
        padding: 25px 15px;
    }
    
    .role-icon {
        font-size: 3rem;
        margin-bottom: 12px;
    }
    
    .role-title {
        font-size: 1.4rem;
    }
    
    .role-steps {
        margin: 25px 0;
    }
    
    .step-item {
        gap: 12px;
        margin-bottom: 20px;
        padding-left: 15px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .role-profit-counter {
        padding: 15px;
        margin-top: 20px;
    }
    
    .role-profit-counter .profit-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .role-profit-counter .profit-amount {
        font-size: 1.4rem;
    }
    
    /* Requirements */
    .requirements {
        padding: 50px 10px;
    }
    
    .requirements-grid {
        gap: 20px;
        margin: 30px 0;
    }
    
    .requirement-item {
        padding: 25px 15px;
    }
    
    .requirement-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .requirement-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .requirement-item p {
        font-size: 0.95rem;
    }
    
    /* Testimonials */
    .testimonials {
        padding: 50px 10px;
    }
    
    .testimonials-carousel {
        margin: 30px auto;
        min-height: 220px;
    }
    
    .testimonial-content {
        padding: 25px 15px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .testimonial-author {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .testimonial-results {
        gap: 6px;
        margin: 10px 0;
    }
    
    .result-badge {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .testimonial-proof {
        font-size: 0.85rem;
    }
    
    .carousel-controls {
        gap: 15px;
        margin-top: 25px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* Transparency */
    .transparency-section {
        padding: 50px 10px;
    }
    
    .transparency-content {
        gap: 20px;
        margin-top: 30px;
    }
    
    .transparency-box {
        padding: 20px 15px;
    }
    
    .transparency-box h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .transparency-box p {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .transparency-box ul li {
        padding: 8px 0;
        padding-left: 20px;
        font-size: 0.9rem;
    }
    
    /* Support */
    .support-section {
        padding: 50px 10px;
    }
    
    .support-options {
        gap: 20px;
        margin: 30px 0;
    }
    
    .support-option {
        padding: 25px 15px;
    }
    
    .support-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .support-option h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .support-option p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .support-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-section {
        margin-top: 30px;
    }
    
    .faq-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
    
    .faq-list {
        gap: 15px;
    }
    
    .faq-question {
        padding: 18px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        font-size: 1.6rem;
    }
    
    .faq-answer {
        padding: 0 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* Final CTA */
    .final-cta {
        padding: 50px 10px;
    }
    
    .final-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .final-title .highlight {
        margin-top: 10px;
    }
    
    .final-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .final-cta-buttons {
        gap: 12px;
    }
    
    .final-cta-buttons .cta-button {
        padding: 18px 25px;
        font-size: 1rem;
    }
    
    /* Ajustes generales */
    .pulse-glow {
        animation-duration: 2.5s;
    }
    
    /* Optimizar animaciones en móvil */
    .fade-in-up,
    .pop-in {
        animation-duration: 0.6s;
    }
    
    /* Reducir efectos de hover en móvil */
    .method-card:hover,
    .package-card:hover,
    .requirement-item:hover {
        transform: none;
    }
    
    /* Mejorar contraste en móvil */
    .message-content,
    .testimonial-content,
    .transparency-box {
        border-width: 1px;
    }
    
    /* Ajustar espaciado de secciones */
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    /* Optimizar botones para touch */
    button,
    .cta-button,
    .method-cta,
    .package-cta,
    .support-button {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Mejorar inputs para móvil */
    input,
    textarea {
        font-size: 16px; /* Evita zoom en iOS */
        touch-action: manipulation;
    }
    
    /* Ajustar scrollbars en móvil */
    ::-webkit-scrollbar {
        width: 4px;
    }
    
    /* Optimizar imágenes y elementos visuales */
    .floating-chip,
    .chip-hero {
        pointer-events: none;
    }
    
    /* Reducir efectos de partículas en móvil para mejor rendimiento */
    #particles-canvas {
        opacity: 0.5;
    }
}

