﻿/* pos-compact.css */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --success: #10b981;
    --dark: #0f172a;
    --light: #f8fafc;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* HERO */

.hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%), radial-gradient(circle at top right, rgba(56, 189, 248, 0.15), transparent 50%);
    color: white;
    text-align: center;
    padding: 100px 0;
    background-blend-mode: overlay;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

    .stat strong {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(135deg, #38bdf8, var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .stat span {
        color: #94a3b8;
        font-size: 0.875rem;
    }

/* BENEFICIOS */
.benefits {
    background: var(--light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.benefit-card > p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.benefit-card ul {
    list-style: none;
    margin-top: 1rem;
}

.benefit-card li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #475569;
    font-size: 0.9rem;
}

.benefit-card .bi-check {
    color: var(--success);
}

/* DEMO */
.demo {
    background: white;
}

.demo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 900px;
}

.step {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
}

    .step.total {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        border: none;
    }

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    margin: 0 auto 1rem;
}

.step.total .step-number {
    background: white;
    color: var(--primary);
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.step.total p {
    color: rgba(255, 255, 255, 0.9);
}

.time {
    display: inline-block;
    background: #f1f5f9;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.time-total {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
}

.demo-cta {
    text-align: center;
    margin-top: 3rem;
}

/* PRUEBA GRATUITA */
.trial {
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    color: white;
}

.trial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trial-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .trial-header h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

.trial-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
}

    .feature i {
        color: var(--success);
        font-size: 1.25rem;
    }

.trial-form {
    margin: 2.5rem 0;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

    .form-group input {
        flex: 1;
        min-width: 250px;
        padding: 1rem;
        border-radius: var(--radius);
        border: 1px solid #334155;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1rem;
    }

        .form-group input::placeholder {
            color: #94a3b8;
        }

.btn-primary.large {
    width: 100%;
    justify-content: center;
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.guarantee {
    text-align: center;
    color: #cbd5e1;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

/* SOPORTE */
.support {
    background: var(--light);
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
}

.support-option {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

    .support-option:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.option-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.phone {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.videos {
    background: linear-gradient(135deg, var(--secondary), #7c3aed);
}

.support-option h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.support-option p {
    color: #475569;
    margin-bottom: 0.5rem;
}

.support-option small {
    color: #64748b;
    font-size: 0.875rem;
}

.support-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.support-stat {
    text-align: center;
}

    .support-stat strong {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 0.5rem;
    }

    .support-stat span {
        color: #64748b;
        font-size: 0.95rem;
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .stats {
        gap: 2rem;
    }

    .demo-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trial-card {
        padding: 2rem 1.5rem;
    }

    .trial-header h2 {
        font-size: 1.75rem;
    }

    .form-group {
        flex-direction: column;
    }

        .form-group input {
            min-width: 100%;
        }

    .support-options {
        grid-template-columns: 1fr;
    }

    .support-stats {
        gap: 2rem;
        flex-direction: column;
    }
}
