/* ==============================================
   EMPRENDIMIENTO.CSS
   ============================================== */

.emprendimiento-section {
    position: relative;
    background: var(--primary-blue);
    color: var(--white);
}

.emprendimiento-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.emprendimiento-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.emprendimiento-text {
    z-index: 1;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.benefit-text h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.emprendimiento-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.emprendimiento-image {
    position: relative;
    z-index: 1;
}

.emprendimiento-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
    .emprendimiento-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .emprendimiento-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .emprendimiento-image {
        order: -1;
    }
    
    .benefits-list {
        gap: 1.5rem;
    }
    
    .benefit-item {
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .emprendimiento-ctas {
        flex-direction: column;
    }
    
    .emprendimiento-ctas .btn {
        width: 100%;
    }
}
