/**
 * Estilos específicos para la página Cultura
 * 
 * @package Grupo_Mexico
 */

/* Values Section */
.cultura-values {
    padding: 3rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.value-description {
    color: #64748b;
    line-height: 1.6;
}

/* Mission Section */
.cultura-mission {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.8;
}

/* Timeline */
.cultura-timeline {
    padding: 3rem 0;
    background: #f8fafc;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    position: relative;
    margin-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 2rem;
    width: 1rem;
    height: 1rem;
    background: #1e40af;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px #1e40af;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.timeline-description {
    color: #64748b;
    line-height: 1.6;
}
