/* ==========================================================================
   VARIABLES DE COLOR (Modifícalas aquí para cambiar toda la web)
   ========================================================================== */
:root {
    --bg-dark: #0b0a0f;
    /* Negro profundo de fondo */
    --bg-card: #14121f;
    /* Gris/Morado oscuro para las tarjetas */
    --primary-purple: #8a2be2;
    /* Morado principal de Dalix */
    --accent-glow: #a528d3;
    /* Color de los destellos y luces de fondo */
    --text-main: #ffffff;
    /* Texto principal blanco */
    --text-muted: #94a3b8;
    /* Texto secundario grisáceo */
}

/* ESTILOS BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,



.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* EFECTO DE RESPLANDOR DE FONDO (GLOW CYBERPUNK) */
.glow-bg {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* HEADER */
.header {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
display: flex;
    align-items: center;
}

.logo img {
    height: 60px !important;
    width: auto !important;
    display: block !important;
}
.nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--text-main);
}

/* BOTONES */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-glow));
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--primary-purple);
}

.btn-primary-outline:hover {
    background: var(--primary-purple);
}

/* HERO SECTION */
.hero {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.badge {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(184, 4, 255, 0.3);
    color: #8b47aa;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
}
.brand-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(var(--primary-purple-rgb), 0.9);
    /* Un fondo suave con tu color morado */
    color: var(--primary-purple);
    border: 1px solid rgba(var(--primary-purple-rgb), 0.2);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* ANIMACIÓN PULSANTE PARA EL BOTÓN PRINCIPAL */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(138, 43, 226, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(138, 43, 226, 0);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* TÍTULOS DE SECCIÓN */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
}

/* SECCIÓN DEMO */
.demo-section {
    padding: 80px 0;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.bot-video {
    width: 50%;
    margin: 0 auto;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background-color: #371c6148;
    display: block;
}

.step-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-purple);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-card h3 {
    margin-bottom: 6px;
    min-width: 150px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* SECCIÓN PRECIOS */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border: 2px solid var(--primary-purple);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.15);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-purple);
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-description {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 12px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.price-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
}

.price-card .btn {
    text-align: center;
    width: 100%;
}

/* FOOTER */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    margin-top: 100px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* ANIMACIÓN AL HACER SCROLL ELEGANTE */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESING (Para que se vea bien en celulares) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .demo-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}