/* Evolución RSE a ASG Styles */
.evolution-section {
    padding: 100px 0;
    background: #f5f5f7;
}

.section-subtitle {
    font-size: 18px;
    color: #6e6e73;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.evolution-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.evolution-item {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 280px;
}

.evolution-item.featured {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #29e775;
    transform: scale(1.05);
}

.evolution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.evolution-icon {
    width: 80px;
    height: 80px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.evolution-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.evolution-list {
    list-style: none;
    padding: 0;
}

.evolution-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #6e6e73;
    line-height: 1.6;
}

.evolution-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #29e775;
    font-weight: bold;
}

.evolution-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* ASG Steps Styles */
.asg-steps-section {
    padding: 100px 0;
    background: #ffffff;
}

.asg-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.asg-step {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: #f5f5f7;
    transition: all 0.3s ease;
}

.asg-step:hover {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #29e775;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asg-step h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.asg-step p {
    color: #6e6e73;
    line-height: 1.6;
}

/* Reputation Section Styles */
.reputation-section {
    padding: 100px 0;
    background: #f5f5f7;
}

.reputation-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.reputation-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.reputation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.reputation-logo h3 {
    font-size: 32px;
    font-weight: 700;
    color: #29e775;
    margin-bottom: 24px;
}

.reputation-description {
    color: #6e6e73;
    line-height: 1.6;
}

.reputation-insight {
    background: #dcfce7;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
}

.reputation-insight p {
    font-size: 18px;
    color: #1d1d1f;
    font-weight: 500;
    margin: 0;
}

/* Founder Section Styles */
.founder-section {
    padding: 100px 0;
    background: #ffffff;
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
}

.founder-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.founder-title {
    font-size: 20px;
    color: #6e6e73;
    margin-bottom: 32px;
}

.founder-achievements {
    list-style: none;
    padding: 0;
}

.founder-achievements li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: #424245;
    line-height: 1.6;
}

.founder-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #29e775;
    font-weight: bold;
    font-size: 18px;
}

/* Case Studies Section Styles */
.case-studies-section {
    padding: 100px 0;
    background: #f5f5f7;
}

.case-study {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.case-study-title {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.case-study-quote {
    font-size: 24px;
    font-style: italic;
    color: #29e775;
    border-left: 4px solid #29e775;
    padding-left: 24px;
    margin: 24px 0;
}

.case-study-description {
    font-size: 18px;
    color: #6e6e73;
    margin-bottom: 32px;
}

.case-study-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.case-study-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.case-study-list {
    list-style: none;
    padding: 0;
}

.case-study-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #424245;
    line-height: 1.6;
}

.case-study-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #29e775;
    font-weight: bold;
}

.case-study-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.metric {
    text-align: center;
    padding: 20px;
    background: #f5f5f7;
    border-radius: 12px;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: #29e775;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #6e6e73;
}

.case-study-highlight {
    margin: 16px 0;
    padding: 16px;
    background: #f0fdf4;
    border-radius: 12px;
    color: #424245;
}

.case-study-insight {
    margin-top: 32px;
    padding: 24px;
    background: #dcfce7;
    border-radius: 12px;
    color: #1d1d1f;
    font-weight: 500;
}

/* ESG Importance Section Styles */
.esg-importance-section {
    padding: 100px 0;
    background: #ffffff;
}

.esg-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 60px 0;
}

.insight-card {
    padding: 32px;
    background: #f5f5f7;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.insight-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.insight-card p {
    color: #6e6e73;
    line-height: 1.6;
}

.mexico-ranking {
    background: #1d1d1f;
    color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.mexico-ranking h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.mexico-ranking p {
    line-height: 1.6;
    margin-bottom: 12px;
}

.mexico-ranking .source {
    font-size: 12px;
    color: #86868b;
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Generational Stats Section Styles */
.generational-stats-section {
    padding: 100px 0;
    background: #f5f5f7;
}

.cemefi-info {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    color: #6e6e73;
    line-height: 1.6;
}

.generation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.stat-group {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-group h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 32px;
    text-align: center;
}

.stat-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f5f5f7;
}

.stat-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.stat-percentage {
    font-size: 48px;
    font-weight: 700;
    color: #29e775;
    margin-bottom: 8px;
}

.stat-item p {
    color: #6e6e73;
    line-height: 1.6;
}

/* Certification Process Section Styles */
.certification-section {
    padding: 100px 0;
    background: #ffffff;
}

.certification-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: #29e775;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.process-icon .step-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.process-step h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.process-step p {
    color: #6e6e73;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.process-arrow {
    font-size: 48px;
    color: #29e775;
    flex: 0 0 auto;
}

.certification-benefits {
    margin-top: 80px;
    padding: 60px;
    background: #f5f5f7;
    border-radius: 20px;
}

.certification-benefits h3 {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
    margin-bottom: 40px;
}

.certification-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.cert-benefit {
    text-align: center;
}

.cert-benefit .benefit-icon {
    width: 60px;
    height: 60px;
    background: #29e775;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.cert-benefit h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.cert-benefit p {
    color: #6e6e73;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .evolution-timeline {
        flex-direction: column;
    }
    
    .evolution-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-image {
        margin: 0 auto;
    }
    
    .case-study {
        padding: 40px 20px;
    }
    
    .case-study-title {
        font-size: 24px;
    }
    
    .generation-stats {
        grid-template-columns: 1fr;
    }
    
    .certification-process {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .certification-benefits {
        padding: 40px 20px;
    }
}

@media (max-width: 1024px) {
    .evolution-item.featured {
        transform: scale(1);
    }
} 