:root {
    --bg-color: #050510;
    --accent-primary: #00f2ff;
    --accent-secondary: #7000ff;
    --text-main: #ffffff;
    --text-dim: #b0b0cc;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-hover: rgba(255, 255, 255, 0.08);
    --font-family: 'Outfit', sans-serif;
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Glow Animation */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 242, 255, 0.15) 0%, transparent 40%);
    filter: blur(80px);
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeIn 1s ease-out;
}

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

/* Header & Hero */
.hero {
    text-align: center;
    margin-bottom: 50px;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    opacity: 0.3;
    z-index: -1;
    filter: blur(20px);
}

.brand-name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-name span {
    color: var(--accent-primary);
    -webkit-text-fill-color: var(--accent-primary);
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-weight: 300;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 15px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: blink 2s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

/* Section Common */
.section-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin: 40px 0 20px;
    text-align: center;
}

/* Glassmorphism Cards */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: var(--text-main);
}

.glass:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--card-hover);
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Links Grid */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 18px 25px;
}

.link-card .icon {
    font-size: 1.8rem;
    margin-right: 20px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

.link-card .text h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.link-card .text p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Demo Portfolio Grid */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.demo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-align: center;
}

.demo-thumb {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    border: 1px solid var(--glass-border);
}

.icon-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(255,255,255,0.05);
}

.demo-card span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-dim);
}

/* CTA Card */
.cta-section {
    margin-top: 50px;
}

.cta-card {
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), rgba(0, 242, 255, 0.1));
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-card p {
    margin-bottom: 25px;
    color: var(--text-dim);
}

.btn-primary {
    display: inline-block;
    padding: 14px 34px;
    background: var(--accent-primary);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-primary);
}

/* Plans Section */
.plans-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.plan-card {
    padding: 25px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.plan-card h3 {
    font-size: 1.3rem;
    color: var(--accent-primary);
    margin-bottom: 10px;
}

.plan-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 5px;
}

.plan-card .price {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 15px;
    color: #fff;
}

.plan-card.premium {
    border-color: var(--accent-secondary);
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.plan-card.premium::after {
    content: 'RECOMENDADO';
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--accent-secondary);
    color: #fff;
    font-size: 0.6rem;
    padding: 5px 35px;
    transform: rotate(45deg);
    font-weight: 800;
}

/* Footer */
.footer {
    text-align: center;
    padding: 60px 20px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

/* Page Content (for Privacy/Legal) */
.content-card {
    padding: 40px;
    margin-top: 20px;
    text-align: left;
}

.content-card h2 {
    color: var(--accent-primary);
    margin-bottom: 20px;
}

.content-card p, .content-card ul {
    margin-bottom: 20px;
    color: var(--text-dim);
}

.btn-back {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .demo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-name {
        font-size: 2.2rem;
    }
}

