/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hidden {
    display: none !important;
}

:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --secondary: #8b5cf6;
    --accent: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --container-width: 1200px;
    --section-padding: 4rem 0;
}

/* Base */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--bg-secondary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 8rem 0 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-tag {
    display: inline-block;
    padding: 0.25rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.5;
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 1.25rem 1rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    transition: transform 0.2s ease;
}

.stat:hover {
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}



/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Problem Solution */
.problem-solution {
    padding: 6rem 0 1rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.comparison {
    position: relative;
    max-width: 600px;
    margin: 4rem auto 0;
    height: 550px;
}

.before, .after {
    position: absolute;
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2rem;
    width: 320px;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.before {
    top: 0;
    left: 0;
    z-index: 1;
    background: var(--bg-primary);
    border: 2px solid #fee2e2;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.1);
}

.after {
    top: 40px;
    right: 0;
    z-index: 2;
    background: var(--bg-primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 20px 40px rgba(16, 185, 129, 0.15);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.comparison-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.before-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.after-icon {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary);
}

.comparison-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
}

.before .comparison-header h3 {
    color: #dc2626;
}

.after .comparison-header h3 {
    color: var(--primary);
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.item-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.before .item-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.after .item-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.comparison-item p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 200px;
}

/* Nota destacada */
.comparison-note {
    position: absolute;
    top: 200px;
    right: -230px;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 1rem 1rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    max-width: 280px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 4;
}

.comparison-note::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -6px;
    width: 12px;
    height: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
}

.comparison-note .highlight {
    background-color: var(--primary);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: 8rem 0rem;
    background: var(--bg-secondary);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: white;
    border-radius: var(--radius);
    padding: 0.25rem;
    box-shadow: var(--shadow);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.toggle-btn.active {
    background: var(--primary);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-grid.hidden {
    display: none;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0 0.5rem;
}

.price-note {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.vat-note {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0.8;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-cta h3 {
    color: rgb(0, 0, 0);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-cta p {
    color: rgba(0, 0, 0, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary) 0%, #7c3aed 100%);
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.name {
    font-weight: 600;
    color: white;
}

.title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Final CTA */
.final-cta {
    padding: var(--section-padding);
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.guarantee {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

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

/* Responsive */


@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    
    .hero-tag {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .header .nav-menu {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .problem-solution {
        padding: 4rem 0 2rem;
    }
    
    .comparison {
        height: 480px;
        max-width: 500px;
    }
    
    .before, .after {
        width: 280px;
        padding: 1.5rem;
    }
    
    .after {
        top: 30px;
    }
    
    .comparison-note {
        top: 180px;
        right: -180px;
        max-width: 240px;
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
}

.footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    h1 { font-size: 2.2rem; }
    
    .hero-tag {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .problem-solution {
        padding: 3rem 0 2rem;
    }
    
    .comparison {
        height: auto;
        max-width: 100%;
        margin: 2rem auto 0;
        padding: 0 1rem;
    }
    
    .before, .after {
        position: static;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 1.5rem;
        padding: 1.5rem;
        border-radius: 16px;
        transform: none;
    }
    
    .before {
        left: auto;
        top: auto;
    }
    
    .after {
        top: auto;
        right: auto;
        margin-bottom: 0;
    }
    
    .comparison-header {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .comparison-icon {
        width: 32px;
        height: 32px;
    }
    
    .comparison-header h3 {
        font-size: 1.2rem;
    }
    
    .comparison-content {
        gap: 1rem;
    }
    
    .comparison-item {
        padding: 0.5rem 0;
    }
    
    .item-icon {
        width: 20px;
        height: 20px;
    }
    
    .comparison-item p {
        font-size: 0.9rem;
        max-width: none;
    }
    
    .comparison-note {
        position: static;
        margin: 2rem auto 0;
        transform: none;
        max-width: 320px;
        font-size: 0.85rem;
        padding: 1rem 1.25rem;
        text-align: center;
    }
    
    .comparison-note::before {
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        border-top: none;
        border-right: none;
        border-bottom: 1px solid var(--border);
        border-left: 1px solid var(--border);
    }
    
          .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat {
        min-width: 200px;
        max-width: 250px;
    }
    
    .before, .after {
        max-width: 280px;
        padding: 1.25rem;
    }
    
    .comparison-note {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
        max-width: 280px;
    }
    
    .btn-primary-large {
        width: 100%;
        max-width: 300px;
    }
}

/* Process Section */
.process {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.step h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.8rem;
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: var(--section-padding);
    background: #F9FAFB;
    position: relative;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: center;
}

.dashboard-visual {
    position: relative;
}

.dashboard-iframe-container {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-iframe-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.dashboard-iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 16px;
    background: #f8fafc;
    transition: opacity 0.3s ease;
    display: block;
}

.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #8b5cf6;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.dashboard-iframe-container:hover .iframe-overlay {
    opacity: 0;
    pointer-events: none;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.iframe-overlay:hover .overlay-content {
    transform: scale(1.05);
}

.overlay-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.overlay-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.overlay-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.overlay-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.dashboard-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #8B7CF6;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    background: rgba(139, 124, 246, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.4;
    margin: 0;
}

.dashboard-highlight {
    margin-top: 4rem;
    text-align: center;
}

.highlight-content {
    background: linear-gradient(135deg, #8B7CF6 0%, #A78BFA 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(139, 124, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.highlight-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.highlight-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.highlight-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Enhanced Testimonials Section */
.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stat-item {
        text-align: center;
    color: white;
}

.stat-number-2 {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
} 

.stat-label-2 {
    font-size: 0.9rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Lead Magnet Section */
.lead-magnet {
    padding: 1rem 0;
    background: var(--bg-secondary);
}

.lead-magnet-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 2rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.253);
    transition: all 0.3s ease;
}

.lead-magnet-content:hover {
    transform: translateY(-5px);
    box-shadow: 4px 7px 15px rgba(0, 0, 0, 0.377);
}

.lead-magnet-text {
    display: flex;
        flex-direction: column;
        align-items: center;
    justify-content: center;
}

.lead-magnet-text h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
        justify-content: center;
    align-items: center;
    text-align: center;
}

.lead-magnet-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 16px;
    max-width: 80%;
    text-align: center;
}

.lead-magnet-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 10px;
}

.lead-magnet-cta .btn-secondary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    white-space: nowrap;
}

.lead-magnet-cta .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    background: var(--bg-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.faq-answer p {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Animation Classes */
.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card, .step, .testimonial, .stat-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .lead-magnet-content {
        flex-direction: column;
    text-align: center;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .dashboard-iframe-container {
        min-height: 450px;
    }
    
    .dashboard-iframe {
        height: 450px;
    }
    
    .overlay-icon {
        font-size: 3rem;
    }
    
    .overlay-content h4 {
        font-size: 1.3rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .benefit-content h3 {
        font-size: 14px;
    }
    
    .benefit-content p {
        font-size: 12px;
    }
    
    .highlight-content {
        padding: 2rem 1.5rem;
    }
    
    .highlight-content h3 {
        font-size: 20px;
    }
    
    .highlight-content p {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .lead-magnet-text h3 {
        font-size: 1.2rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .dashboard-iframe-container {
        min-height: 400px;
    }
    
    .dashboard-iframe {
        height: 400px;
    }
    
    .overlay-icon {
        font-size: 2.5rem;
    }
    
    .overlay-content h4 {
        font-size: 1.2rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .overlay-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .overlay-content h4 {
        line-height: 1.2;
    }
    
    .benefit-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .benefit-icon {
        align-self: center;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .benefit-content h3 {
        font-size: 13px;
    }
    
    .benefit-content p {
        font-size: 11px;
    }
    
    .highlight-content {
        padding: 1.5rem 1rem;
    }
    
    .highlight-content h3 {
        font-size: 18px;
    }
    
    .highlight-content p {
        font-size: 15px;
    }
}



/* AI Capabilities Section */
.ai-capabilities {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.ai-capabilities .container {
    max-width: 1600px;
    padding: 0 3rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
    width: 100%;
}

.capability-category {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 2rem 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.capability-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-category:hover::before {
    opacity: 1;
}

.capability-category:hover {
    border-color: #d1d5db;
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.category-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
}

.category-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.category-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.025em;
}

.capability-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fafbfc;
    border: 1px solid #f3f4f6;
}

.capability-item:hover {
    background: rgba(16, 185, 129, 0.02);
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.capability-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.capability-icon svg {
    color: var(--primary);
    transition: all 0.3s ease;
}

.capability-item:hover .capability-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(139, 92, 246, 0.15));
    transform: scale(1.05);
    border-color: rgba(16, 185, 129, 0.3);
}

.capability-item:hover .capability-icon svg {
    color: var(--primary-dark);
    transform: scale(1.1);
}

.capability-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 650;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.capability-content p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 400;
}

/* Responsive Design for AI Capabilities */
@media (max-width: 1200px) {
    .ai-capabilities .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .capabilities-grid {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .ai-capabilities .container {
        max-width: 900px;
        padding: 0 1.5rem;
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .capability-category {
        padding: 1.75rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .ai-capabilities {
        padding: 3rem 0;
    }
    
    .ai-capabilities .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .capability-category {
        padding: 1.5rem 1rem;
        border-radius: 20px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .category-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .category-header h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .capability-items {
        gap: 1.25rem;
    }
    
    .capability-item {
        padding: 1rem;
        border-radius: 16px;
        gap: 1rem;
        background: #fdfdfd;
        border: 1px solid #f0f0f0;
    }
    
    .capability-item:hover {
        transform: translateX(4px);
        background: rgba(16, 185, 129, 0.03);
        border-color: rgba(16, 185, 129, 0.15);
    }
    
    .capability-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        flex-shrink: 0;
    }
    
    .capability-content {
        flex: 1;
        min-width: 0;
    }
    
    .capability-content h4 {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .capability-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
    }
}

@media (max-width: 600px) {
    .ai-capabilities {
        padding: 2.5rem 0;
    }
    
    .ai-capabilities .container {
        padding: 0 0.75rem;
    }
    
    .capabilities-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .capability-category {
        padding: 1.25rem 0.875rem;
        border-radius: 18px;
    }
    
    .category-header {
        margin-bottom: 1.25rem;
        padding-bottom: 0.875rem;
    }
    
    .category-header h3 {
        font-size: 1.1rem;
        margin: 0;
    }
    
    .capability-items {
        gap: 1rem;
    }
    
    .capability-item {
        padding: 0.875rem;
        border-radius: 14px;
        gap: 0.875rem;
    }
    
    .capability-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .capability-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
        font-weight: 600;
    }
    
    .capability-content p {
        font-size: 0.8rem;
        line-height: 1.35;
    }
}

@media (max-width: 480px) {
    .ai-capabilities {
        padding: 2rem 0;
    }
    
    .ai-capabilities .container {
        padding: 0 0.5rem;
    }
    
    .capabilities-grid {
        gap: 1.25rem;
    }
    
    .capability-category {
        padding: 1rem 0.75rem;
        border-radius: 16px;
        margin: 0 0.25rem;
    }
    
    .category-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .category-header h3 {
        font-size: 1rem;
        text-align: center;
    }
    
    .capability-items {
        gap: 0.875rem;
    }
    
    .capability-item {
        padding: 0.75rem;
        border-radius: 12px;
        gap: 0.75rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .capability-item:hover {
        transform: translateY(-2px);
    }
    
    .capability-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        margin-top: 0.125rem;
    }
    
    .capability-content h4 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
        line-height: 1.25;
    }
    
    .capability-content p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin: 0;
    }
}

@media (max-width: 360px) {
    .ai-capabilities .container {
        padding: 0 0.375rem;
    }
    
    .capability-category {
        padding: 0.875rem 0.625rem;
        margin: 0 0.125rem;
    }
    
    .category-header h3 {
        font-size: 0.95rem;
    }
    
    .capability-item {
        padding: 0.625rem;
        gap: 0.625rem;
    }
    
    .capability-icon {
        width: 32px;
        height: 32px;
        border-radius: 6px;
    }
    
    .capability-content h4 {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .capability-content p {
        font-size: 0.7rem;
        line-height: 1.25;
    }
}

/* Botón de precios para móvil */
.mobile-pricing-cta {
    display: none; /* Oculto por defecto */
    padding: 3rem 0 2rem;
    text-align: center;
    background: var(--bg-secondary);
}

.mobile-pricing-btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    min-width: 200px;
}

.mobile-pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15);
}

/* Solo visible en dispositivos móviles y tabletas */
@media (max-width: 768px) {
    .mobile-pricing-cta {
        display: block;
    }
}