
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Estilos para la nueva sección de objetivos */
.objectives-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
            radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.02) 0%, transparent 50%);
        pointer-events: none;
    }

    .objectives-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 4rem;
        position: relative;
        z-index: 1;

        .objectives-badge {
            display: inline-block;
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            color: var(--white);
            padding: 0.5rem 1.25rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }
            
        .objectives-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;

            .highlight {
                color: var(--accent-color);
                position: relative;

                &::after {
                    content: '';
                    position: absolute;
                    bottom: -5px;
                    left: 0;
                    right: 0;
                    height: 4px;
                    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
                    border-radius: 2px;
                }
            }
        }

        .objectives-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .objectives-cta-text {
            font-size: 1.125rem;
            color: var(--text-dark);
            font-weight: 600;
        }
    }
}

.growth-visual {
    background: var(--gradient-primary);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);

    .growth-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        
        .growth-text {
            color: var(--white);

            .growth-headline {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 1.5rem;
                line-height: 1.2;
            }

            .growth-percentage {
                font-size: 2.5rem;
                font-weight: 700;
                color: var(--accent-color);
                display: block;
                margin-bottom: 0.5rem;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            }

            .growth-description {
                font-size: 1.125rem;
                opacity: 0.95;
                line-height: 1.6;
                margin-bottom: 2rem;
            }

            .growth-metrics {
                display: flex;
                gap: 2rem;
                flex-wrap: wrap;
                
                .metric-item {
                    flex: 1;
                    min-width: 150px;
                    
                    .metric-value {
                        font-size: 1.2rem;
                        font-weight: 700;
                        color: var(--accent-color);
                        display: block;
                    }

                    .metric-label {
                        font-size: 0.875rem;
                        opacity: 0.9;
                    }
                }
            }
        }

        .growth-chart {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            padding: 2rem;
            backdrop-filter: blur(10px);
            position: relative;
            
            .chart-title {
                color: var(--white);
                font-size: 0.875rem;
                font-weight: 600;
                margin-bottom: 1rem;
                opacity: 0.9;
            }
        }
    }
}

.client-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    
    .profile-card {
        background: var(--white);
        border-radius: 1rem;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-accent);
        }

        &:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border-color: var(--accent-color);
        }
        
        .profile-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .profile-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .profile-objectives-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1rem;
        }

        .objectives-list {
            list-style: none;
            
            li {
                position: relative;
                padding-left: 2rem;
                margin-bottom: 0.75rem;
                color: var(--text-light);
                line-height: 1.5;

                &::before {
                    content: '✓';
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 1.5rem;
                    height: 1.5rem;
                    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
                    color: var(--white);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 0.75rem;
                    font-weight: 700;
                }
            }
        }
    }
}

.improvement-process {
    background: var(--background-light);
    border-radius: 1rem;
    padding: 3rem;
    margin-top: 4rem;
    
    .process-header {
        text-align: center;
        margin-bottom: 3rem;
        
        .process-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .process-subtitle {
            color: var(--text-light);
            font-size: 1.125rem;
        }
    }

}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--accent-color) 0%,
            var(--secondary-color) 50%,
            #059669 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.4;
}

.objectives-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .objectives-section {
        padding: 4rem 0;
    }

    .growth-visual {
        padding: 2rem;
    }

    .growth-content {
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .objectives-section {
        padding: 3rem 0;
    }

    .objectives-header {
        margin-bottom: 2rem;
    }

    .objectives-title {
        font-size: 1.75rem;
    }

    .objectives-subtitle {
        font-size: 1rem;
    }

    .growth-visual {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .growth-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .growth-headline {
        font-size: 1.5rem;
    }

    .growth-percentage {
        font-size: 2rem;
    }

    .growth-description {
        font-size: 1rem;
    }

    .growth-metrics {
        gap: 1rem;
    }

    .metric-item {
        min-width: 120px;
    }

    .client-profiles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .profile-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .improvement-process {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .process-title {
        font-size: 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-steps::before {
        display: none;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* El paso 5 centrado en tablet */
    .process-step:last-child {
        grid-column: 1 / -1;
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .objectives-section {
        padding: 2.5rem 0;
    }

    .objectives-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .objectives-title {
        font-size: 1.5rem;
    }

    .objectives-cta-text {
        font-size: 1rem;
    }

    .growth-visual {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .growth-headline {
        font-size: 1.25rem;
    }

    .growth-percentage {
        font-size: 1.75rem;
    }

    .growth-description {
        font-size: 0.9375rem;
    }

    .growth-chart {
        padding: 1.5rem;
    }

    .profile-card {
        padding: 1.25rem;
    }

    .profile-title {
        font-size: 1.125rem;
    }

    .objectives-list li {
        font-size: 0.9375rem;
    }

    .improvement-process {
        padding: 1.5rem 1rem;
    }

    .process-title {
        font-size: 1.25rem;
    }

    .process-subtitle {
        font-size: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .step-title {
        font-size: 0.9375rem;
    }

    .step-description {
        font-size: 0.8125rem;
    }

    .process-step:last-child {
        max-width: none;
    }
}