/* ========================================
   SOLICITAR DEMO
   ======================================== */

/* ========================================
   HERO DEMO
   ======================================== */

.hero-demo {
    padding: 120px 0 80px;
    background-color: var(--bg-white);
}

.hero-demo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    min-height: 700px;
}

/* Left Column: Text */
.hero-demo-text {
    text-align: center;
}

.hero-demo-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-default);
    margin: 0 0 var(--spacing-lg) 0;
    letter-spacing: -0.02em;
}

.hero-demo-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0 0 var(--spacing-md) 0;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-demo-instruction {
    font-size: 18px;
    color: var(--primary-600);
    margin-bottom: var(--spacing-xl);
}

.hero-demo-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 500px;
    margin: 0 auto;
}

.demo-highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 16px;
    color: var(--text-default);
    font-weight: 500;
    text-align: left;
}

.demo-highlight-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Right Column: Widget */
.hero-demo-widget {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    min-height: 700px;
    width: 100%;
}

/* Responsive */
@media (min-width: 992px) {
    .hero-demo-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-4xl);
        align-items: start;
    }

    .hero-demo-text {
        text-align: left;
        position: sticky;
        top: 120px;
    }

    .hero-demo-description {
        margin-left: 0;
        margin-right: 0;
    }

    .hero-demo-highlights {
        margin: 0;
    }
}

@media (max-width: 991px) {
    .hero-demo-title {
        font-size: 36px;
    }
    
    .hero-demo-content {
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .hero-demo {
        padding: 80px 0 60px;
    }

    .hero-demo-title {
        font-size: 32px;
    }

    .hero-demo-description {
        font-size: 16px;
    }
}
