/* HEADER & GENERAL */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
    margin-bottom: 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mvv-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem;
}

.mvv-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mvv-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(44, 82, 130, 0.08);
    animation: slideUp 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
}

.mvv-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.mvv-card p {
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1rem;
}

/* Valores */
.valores-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.valores-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.valor-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--light-color);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.valor-box:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.12);
    background: #fff;
}

.valor-box[data-color="green"] {
    border-left-color: #10b981;
}

.valor-box[data-color="blue"] {
    border-left-color: var(--primary-color);
}

.valor-box[data-color="orange"] {
    border-left-color: var(--secondary-color);
}

.valor-box[data-color="red"] {
    border-left-color: #dc2626;
}

.valor-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.valor-box[data-color="green"] .valor-icon-wrapper {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.valor-box[data-color="blue"] .valor-icon-wrapper {
    background: rgba(44, 82, 130, 0.15);
    color: var(--primary-color);
}

.valor-box[data-color="orange"] .valor-icon-wrapper {
    background: rgba(255, 140, 66, 0.15);
    color: var(--secondary-color);
}

.valor-box[data-color="red"] .valor-icon-wrapper {
    background: rgba(220, 38, 38, 0.15);
    color: #dc2626;
}

.valor-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.valor-box:hover .valor-icon-wrapper {
    transform: scale(1.1);
}

.valor-content h3 {
    color: var(--dark-color);
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.valor-content p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.valores-impact {
    text-align: center;
    margin-top: 2rem;
}

.impact-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.impact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(44, 82, 130, 0.3);
}

.impact-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.impact-box h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    font-weight: 700;
}

.impact-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 1.5rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .mvv-container {
        grid-template-columns: 1fr;
    }

    .mvv-card:nth-child(3) {
        grid-row: auto;
        grid-column: auto;
    }

    .valor-box {
        flex-direction: column;
        text-align: center;
    }

    .impact-box h3 {
        font-size: 1.3rem;
    }
}
