/**
 * JOVATEC - Página Visão, Missão e Valores
 * 
 * Design moderno e limpo para apresentar os princípios da empresa
 * 
 * @package JOVATEC
 * @version 1.0.0
 */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.vmv-hero {
    background: linear-gradient(135deg, var(--jovatec-verde-petroleo) 0%, var(--jovatec-roxo-escuro) 100%);
    color: white;
    padding: 4rem 0 3rem;
}

.vmv-hero h1 {
    color: white;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.vmv-hero .lead {
    color: white;
    font-size: 1.15rem;
    font-weight: 400;
}

/*--------------------------------------------------------------
# Cards VMV
--------------------------------------------------------------*/

.vmv-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--jovatec-verde-principal) 0%, var(--jovatec-roxo-vibrante) 100%);
}

.vmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.vmv-icon-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 20px;
}

.vmv-icon {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Visão - Verde (Primário) */
.visao-card .vmv-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 199, 177, 0.15) 0%, rgba(0, 199, 177, 0.25) 100%);
}

/* Missão - Verde (Primário) */
.missao-card .vmv-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 129, 115, 0.15) 0%, rgba(0, 129, 115, 0.25) 100%);
}

/* Valores - Roxo (Secundário) */
.valores-card .vmv-icon-wrapper {
    background: linear-gradient(135deg, rgba(128, 49, 167, 0.15) 0%, rgba(128, 49, 167, 0.25) 100%);
}

.vmv-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--jovatec-verde-escuro);
    margin-bottom: 1.25rem;
    font-family: var(--font-headings);
}

.vmv-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    font-family: var(--font-body);
}

/*--------------------------------------------------------------
# Ilustrações Decorativas
--------------------------------------------------------------*/

.vmv-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.visao-illustration .illustration-circle {
    background: linear-gradient(135deg, var(--jovatec-verde-principal) 0%, var(--jovatec-verde-petroleo) 100%);
}

.missao-illustration .illustration-circle {
    background: linear-gradient(135deg, var(--jovatec-verde-petroleo) 0%, var(--jovatec-verde-escuro) 100%);
}

.valores-illustration .illustration-circle {
    background: linear-gradient(135deg, var(--jovatec-roxo-vibrante) 0%, var(--jovatec-roxo-medio) 100%);
}

.illustration-text {
    position: relative;
    z-index: 2;
}

.illustration-number {
    font-size: 7rem;
    font-weight: 900;
    font-family: var(--font-headings);
    background: white;
    color: var(--jovatec-verde-principal);
    line-height: 1;
    position: relative;
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--jovatec-verde-principal);
}

/* Números com cores específicas */
.visao-illustration .illustration-number {
    color: var(--jovatec-verde-principal);
    border-color: var(--jovatec-verde-principal);
}

.missao-illustration .illustration-number {
    color: var(--jovatec-verde-petroleo);
    border-color: var(--jovatec-verde-petroleo);
}

.valores-illustration .illustration-number {
    color: var(--jovatec-roxo-vibrante);
    border-color: var(--jovatec-roxo-vibrante);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

/*--------------------------------------------------------------
# Grid de Valores
--------------------------------------------------------------*/

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.valor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 199, 177, 0.03) 0%, rgba(128, 49, 167, 0.03) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.valor-item:hover {
    background: linear-gradient(135deg, rgba(0, 199, 177, 0.08) 0%, rgba(128, 49, 167, 0.08) 100%);
    transform: translateX(5px);
}

.valor-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jovatec-verde-principal) 0%, var(--jovatec-roxo-vibrante) 100%);
    flex-shrink: 0;
}

.valor-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--jovatec-verde-escuro);
    font-family: var(--font-headings);
}

/*--------------------------------------------------------------
# Call to Action
--------------------------------------------------------------*/

.vmv-cta {
    background: linear-gradient(135deg, var(--jovatec-verde-petroleo) 0%, var(--jovatec-roxo-escuro) 100%);
    margin-top: 3rem;
}

.vmv-cta h3 {
    color: #fff;
    font-family: var(--font-headings);
}

.vmv-cta .lead {
    color: #fff;
}

.vmv-cta .btn-primary {
    background: var(--jovatec-verde-petroleo);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 199, 177, 0.3);
}

.vmv-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 199, 177, 0.4);
    background: var(--jovatec-verde-escuro);
}

/*--------------------------------------------------------------
# Responsividade
--------------------------------------------------------------*/

@media (max-width: 991.98px) {
    .vmv-illustration {
        height: 250px;
        margin-bottom: 2rem;
    }
    
    .illustration-circle {
        width: 200px;
        height: 200px;
    }
    
    .illustration-number {
        font-size: 4.5rem;
        padding: 1rem 1.75rem;
        border-width: 3px;
    }
    
    .vmv-card {
        padding: 2rem 1.5rem;
    }
    
    .vmv-title {
        font-size: 1.75rem;
    }
    
    .vmv-text {
        font-size: 1rem;
    }
    
    /* Forçar ordem correta no mobile */
    .row .order-1 {
        order: 1;
    }
    
    .row .order-2 {
        order: 2;
    }
}

@media (max-width: 767.98px) {
    .vmv-hero {
        padding: 3rem 0 2rem;
    }
    
    .vmv-hero h1 {
        font-size: 2rem;
    }
    
    .vmv-illustration {
        height: 250px;
    }
    
    .illustration-circle {
        width: 180px;
        height: 180px;
    }
    
    .illustration-number {
        font-size: 5rem;
        padding: 1rem 2rem;
        border-width: 3px;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .vmv-cta .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 2rem !important;
    }
}
