/* Propuesta Hero Styles */
.hero-propuesta {
    background-color: #ffffff;
    padding: 50px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.hero-propuesta .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: clamp(var(--text-2xl), 5vw, var(--text-3xl));
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content .client-name {
    color: var(--color-primary);
}

.hero-content .subheadline {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-cta .btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.hero-cta .btn-primary:hover {
    background-color: #0044CC;
    transform: translateY(-2px);
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-propuesta .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content .subheadline {
        margin-left: auto;
        margin-right: auto;
    }
}