/* Variables CSS - Nueva paleta distintiva */
:root {
    /* Surface Colors */
    --surface-950: #09090b;
    --surface-900: #18181b;
    --surface-800: #27272a;
    --surface-100: #f4f4f5;
    --surface-50: #fafafa;
    --surface-0: #ffffff;
    
    /* Brand & Accent */
    --brand-500: #10b981;
    --brand-600: #059669;
    --brand-700: #047857;
    --accent-500: #6366f1;
    
    /* Text Colors */
    --text-primary: #09090b;
    --text-secondary: #1e293b;
    --text-muted: #71717a;
    --text-inverse: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
    
    /* Border Radius */
    --radius-full: 9999px;
    --radius-2xl: 1.5rem;
    --radius-xl: 1rem;
    --radius-lg: 0.75rem;

    /* Card System Tokens */
    --card-bg: var(--surface-0);
    --card-border: rgba(0, 0, 0, 0.08);
    --card-border-hover: rgba(16, 185, 129, 0.2);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Legacy Transitions (maintained for continuity) */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Spacing Scale (8px base) */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 70px;
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.05);
}

.navbar-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.navbar-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
    border-radius: 8px;
    position: relative;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background: white;
    border-radius: 2px;
    opacity: 0.8;
}

.navbar-logo:hover {
    transform: scale(1.02);
}

.navbar-links {
    display: flex;
    gap: 8px;
}

.navbar-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.navbar-links a:hover {
    color: var(--brand-500);
    background: rgba(16, 185, 129, 0.05);
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--brand-500);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.navbar-cta:hover {
    background: var(--brand-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

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

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .navbar {
        top: 1rem;
        width: 95%;
        height: 60px;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 32px;
        gap: 16px;
        border-radius: 24px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: var(--shadow-lg);
        text-align: center;
    }

    .navbar-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    .navbar-links a {
        font-size: 1.1rem;
        padding: 12px;
    }

    .navbar-cta {
        display: none;
    }
}

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

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--surface-0);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1, h2, h3 {
    letter-spacing: -0.03em;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.75rem;
    text-align: center;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--brand-500);
    color: var(--text-inverse);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
    background: var(--brand-600);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--text-inverse);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* Sections */
section {
    padding: 100px 0;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background-color: var(--surface-0);
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-600);
    margin-bottom: 24px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

/* Button Shimmer Effect */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}

.hero-trust {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 2000px;
}

.iphone-frame {
    width: 300px;
    height: 610px;
    background: #000;
    border-radius: 44px;
    border: 12px solid #1a1a1a;
    position: relative;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.3),
        0 30px 60px -30px rgba(0, 0, 0, 0.4),
        inset 0 0 2px 1px rgba(255, 255, 255, 0.1);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.iphone-frame:hover {
    transform: rotateY(0) rotateX(0);
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1a1a1a;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 10;
}

/* Chat Animation Styles */
.chat-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #efe7dd; /* WhatsApp background */
}

.chat-header-ios {
    background: #f6f6f6;
    padding-top: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ios-status-bar {
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
}

.chat-contact {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-avatar {
    width: 36px;
    height: 36px;
    background: var(--brand-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-name {
    font-weight: 600;
    font-size: 14px;
}

.contact-status {
    font-size: 11px;
    color: var(--brand-600);
}

.chat-body {
    flex: 1;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
}

.message {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
}

.msg-received {
    align-self: flex-start;
    background: #fff;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.msg-sent {
    align-self: flex-end;
    background: #dcf8c6;
    border-bottom-right-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

/* Message Animation Delays */
.msg-received:nth-child(1) { animation: msgShow 0.5s forwards 1s; }
.msg-sent:nth-child(2) { animation: msgShow 0.5s forwards 3s; }
.msg-received:nth-child(3) { animation: msgShow 0.5s forwards 5s; }
.msg-sent:nth-child(4) { animation: msgShow 0.5s forwards 7s; }

.msg-typing {
    align-self: flex-start;
    background: #fff;
    padding: 10px 15px;
    border-radius: 15px;
    display: flex;
    gap: 4px;
    animation: typingShow 8s infinite 8s;
    opacity: 0;
}

.dot {
    width: 6px;
    height: 6px;
    background: #bbb;
    border-radius: 50%;
    animation: dotPulse 1.5s infinite;
}

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

@keyframes msgShow {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes typingShow {
    0%, 10% { opacity: 1; transform: translateY(0); }
    90%, 100% { opacity: 0; transform: translateY(0); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .iphone-frame {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Problema Section */
.problema {
    background-color: var(--bg-card);
}

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

.problema-content h2 {
    margin-bottom: 16px;
}

.problema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.problema-item {
    text-align: left;
}

.problema-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.problema-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.problema-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Solución Section */
.solucion {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.solucion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solucion-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-color);
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solucion-text h2 {
    color: var(--text-primary);
    text-align: left;
    margin-bottom: 20px;
}

.solucion-text > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.solucion-features {
    list-style: none;
    margin-bottom: 32px;
}

.solucion-features li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.solucion-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.automation-flow {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.flow-step {
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-secondary);
    border: 2px solid var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 16px;
}

.flow-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.flow-arrow {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    position: relative;
    flex-shrink: 0;
}

.flow-arrow::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: -10px;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Card System - Modern Redesign */
.card-modern, .card-standard {
    padding: var(--space-4);
    border-radius: var(--radius-2xl);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--card-border-hover);
    box-shadow: var(--card-shadow-hover);
}

/* Icon Glow Effect */
.icon-glow {
    background: rgba(16, 185, 129, 0.05);
    filter: blur(20px);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    z-index: -1;
    pointer-events: none;
}

.beneficio-card .icon-glow {
    left: 50%;
    transform: translateX(-50%);
}

/* Bento Grid Showcase - Refined Cards */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    background: radial-gradient(circle at top left, var(--surface-0), var(--surface-50));
    border: 1px solid var(--card-border);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--card-border-hover);
    box-shadow: var(--card-shadow-hover);
}

.bento-item.dark-card {
    background: radial-gradient(circle at top left, var(--surface-900), var(--surface-950));
    border-color: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-inverse);
}

.bento-item.dark-card p {
    color: rgba(255, 255, 255, 0.7);
}

.bento-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.bento-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.bento-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 1.05rem;
}

.bento-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.bento-item .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.bento-item .check {
    color: var(--brand-500);
    font-weight: 700;
}

.bento-item .btn {
    margin-top: auto;
    width: fit-content;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item {
        padding: 2rem;
    }
}

/* Legacy Producto Styles (Keep or remove based on needs, but Bento Grid is the replacement) */
.producto {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-bottom: 40px;
    border: 1px solid var(--text-light);
    transition: all var(--transition-base);
}

.producto:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.producto-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.producto-icon {
    font-size: 2.5rem;
}

.producto-header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.producto-header h3 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin: 0;
}

.producto-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    width: fit-content;
}

.producto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.producto-text h4 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.producto-text > p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.benefits-list {
    margin: 24px 0 32px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.check {
    color: var(--brand-500);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 0;
}

.producto-demo {
    display: flex;
    justify-content: center;
}

.pedido-mockup, .cita-mockup {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 380px;
}

.pedido-header, .cita-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-inverse);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.pedido-badge, .cita-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.pedido-content, .cita-content {
    padding: 20px;
}

.pedido-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--text-light);
    font-size: 0.95rem;
}

.pedido-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--primary-light);
}

.pedido-footer, .cita-footer {
    background: var(--bg-primary);
    padding: 14px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

.cita-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--text-light);
    font-size: 0.9rem;
}

.cita-row:last-child {
    border-bottom: none;
}

/* Cómo Funciona Section */
.como-funciona {
    background-color: var(--bg-primary);
}

.pasos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.paso {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--text-light);
    position: relative;
}

.paso::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.paso:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.paso:hover::before {
    opacity: 1;
}

.paso-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.paso h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.paso p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.paso-details {
    text-align: left;
    border-top: 1px solid var(--text-light);
    padding-top: 16px;
    margin-top: 16px;
}

.paso-details ul {
    list-style: none;
}

.paso-details li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.paso-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Beneficios Section */
.beneficios {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 100px 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.beneficio-card {
    text-align: center;
}

.beneficio-stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-500);
    margin-bottom: 0.5rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.beneficio-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.beneficio-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Casos de Uso Section */
.casos-uso {
    background-color: var(--bg-card);
    padding: 100px 0;
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.caso-item {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--text-light);
}

.caso-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.caso-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.caso-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.caso-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.caso-exito {
    margin-bottom: 20px;
}

.exito-text {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.caso-testimonio {
    border-top: 1px solid var(--text-light);
    padding-top: 16px;
}

.caso-testimonio p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.caso-testimonio span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Confianza Section */
.confianza {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: 80px 0;
}

.confianza-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.confianza-item {
    text-align: center;
    padding: 24px;
}

.confianza-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.confianza-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.confianza-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* CTA Final Section */
.cta-final {
    background: var(--surface-950);
    color: var(--text-inverse);
    text-align: center;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 3rem 3rem 0 0;
    z-index: 10;
}

.cta-final-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--brand-500);
}

.cta-final h2 {
    color: var(--text-inverse);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-inverse);
    font-weight: 500;
}

.guarantee-icon {
    font-size: 1.5rem;
}

/* Footer */
.sophisticated-footer {
    background: var(--surface-950);
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-nav-group h4 {
    color: var(--text-inverse);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-nav-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-nav-group a:hover {
    color: var(--brand-500);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--text-inverse);
}

/* WhatsApp Flotante */
.whatsapp-flotante {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-flotante a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-flotante a:hover {
    transform: translateY(-5px) scale(1.02);
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-full);
    background: #25d366;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-badge {
    animation: fadeInUp 0.6s ease forwards;
}

.hero h1 {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-subtitle {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero .cta-buttons {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-image {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-trust {
        justify-content: center;
    }

    .solucion-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .producto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pasos-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .casos-grid {
        grid-template-columns: 1fr;
    }

    .confianza-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .confianza-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .cta-final h2 {
        font-size: 2rem;
    }

    .cta-guarantees {
        flex-direction: column;
        gap: 12px;
    }

    .automation-flow {
        flex-direction: column;
        gap: 24px;
    }

    .flow-arrow {
        width: 2px;
        height: 30px;
    }

    .flow-arrow::after {
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .producto {
        padding: 24px;
    }

    .whatsapp-flotante a {
        padding: 14px 20px;
    }
}

/* Personalización para otros sectores */
.personalizacion {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid var(--text-light);
    transition: all var(--transition-base);
}

.personalizacion:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.personalizacion-header {
    margin-bottom: 24px;
}

.personalizacion-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.personalizacion h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.personalizacion > p {
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.personalizacion .btn {
    margin-top: 8px;
    margin-bottom: 12px;
}

.personalizacion .btn-secondary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.personalizacion .btn-secondary:hover {
    background-color: var(--primary-dark);
}

.otros-sectores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.sector-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-primary);
    border: 1px solid var(--text-light);
    transition: all var(--transition-base);
}

.sector-item:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.sector-item span:first-child {
    font-size: 1.2rem;
}

.personalizacion .btn {
    margin-bottom: 12px;
}

.personalizacion .cta-note {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Funcionalidades Section */
.funcionalidades {
    background: var(--bg-card);
    padding: 100px 0;
}

.funcionalidades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.funcionalidad-card {
    background: var(--bg-primary);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--text-light);
    transition: all var(--transition-base);
}

.funcionalidad-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.func-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.funcionalidad-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.funcionalidad-card ul {
    list-style: none;
}

.funcionalidad-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.funcionalidad-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive para funcionalidades */
@media (max-width: 1024px) {
    .funcionalidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .funcionalidades-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero con shapes decorativos */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    bottom: 5%;
    right: -50px;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, transparent 70%);
    top: 15%;
    right: 15%;
}

.hero-shape-4 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    bottom: 30%;
    left: 20%;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Section padding mejorado */
section {
    padding: 120px 0;
}