:root {
    --bg-color: #050505;
    --text-main: #FFFFFF;
    --text-muted: #A1A1AA;
    --accent-purple: #8B5CF6;
    --accent-purple-light: #A78BFA;
    --accent-purple-glow: rgba(139, 92, 246, 0.5);
    --accent-green: #10B981;
    --accent-blue: #3B82F6;
    --gradient-text: linear-gradient(90deg, #60A5FA, #A78BFA, #F472B6);
    --card-bg: rgba(20, 20, 25, 0.6);
    --card-border: rgba(139, 92, 246, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

.mobile-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    background-color: #000;
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* --- HEADER / HERO --- */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 32px;
}

.logo-icon {
    color: var(--text-main);
}

.title-important {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.subtitle-gradient {
    font-size: 13px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    padding: 0 10px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: -10px;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent-purple);
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.plan-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    position: relative;
    z-index: 3;
    margin-bottom: 16px;
}

/* --- STEPS --- */
.steps-section {
    width: 100%;
    margin-bottom: 32px;
    background: linear-gradient(180deg, rgba(20, 20, 25, 0.8) 0%, rgba(10, 10, 15, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px 16px;
}

.steps-section h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--accent-purple-light);
    letter-spacing: 1px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -25px;
    z-index: 0;
}

.step-icon-box {
    width: 48px;
    height: 48px;
    background: #110D1F;
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);
}

.step p {
    font-size: 11px;
    line-height: 1.4;
    color: #E4E4E7;
    font-weight: 500;
}

.step-arrow {
    margin-top: 12px;
    color: rgba(255,255,255,0.2);
}

.footer-note {
    font-size: 13px;
    line-height: 1.6;
    color: #D4D4D8;
    margin-top: 24px;
    background: rgba(139, 92, 246, 0.1);
    padding: 16px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-purple);
}

.footer-note strong {
    color: var(--text-main);
}

/* --- VISUALS SECTION --- */
.visuals-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
    gap: 24px;
}

.image-showcase {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-showcase:hover .showcase-img {
    transform: scale(1.02);
}

.glass-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    letter-spacing: 1px;
}

.ventas-badge {
    background: linear-gradient(90deg, #F472B6 0%, #8B5CF6 100%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-top: 16px;
}

.ventas-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- FEATURES SECTION --- */
.features-section {
    text-align: center;
    margin-bottom: 48px;
}

.features-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #D4D4D8;
}

.features-title .highlight {
    color: var(--text-main);
    font-size: 22px;
    display: block;
    margin-top: 8px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-card {
    background: linear-gradient(180deg, rgba(60, 30, 100, 0.4) 0%, rgba(20, 10, 40, 0.6) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
}

.centered-card {
    grid-column: span 2;
    max-width: 60%;
    margin: 0 auto;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2A1A4A 0%, #0F0A1A 100%);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.05), 0 4px 10px rgba(0, 0, 0, 0.5);
}

.feature-icon i {
    width: 32px;
    height: 32px;
    color: var(--accent-purple-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card p {
    font-size: 12px;
    line-height: 1.5;
    color: #E4E4E7;
}

/* --- CHECKOUT BUTTON --- */
.checkout-container {
    width: 100%;
    padding: 0 16px;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(90deg, #8B5CF6 0%, #6D28D9 100%);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 18px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.7);
    background: linear-gradient(90deg, #A78BFA 0%, #8B5CF6 100%);
}

.checkout-btn:active {
    transform: translateY(1px);
}

.price-amount {
    font-size: 28px;
}

.price-period {
    font-size: 14px;
    opacity: 0.8;
}

.main-footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* --- LANDING IMAGES --- */
.landing-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.bottom-spacer {
    height: 100px;
}

/* --- STICKY CTA --- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,1) 40%, rgba(0,0,0,0));
    z-index: 100;
}
