/* Enhanced Design for O que Fazemos page with Logo Colors and Professional Styling */
:root {
    --primary-blue: #003366;
    --gold: #DAA520;
    --light-blue: #4D7C9E;
    --soft-background: #F4F6F9;
    --text-dark: #1A2B3C;
    --white: #FFFFFF;
}

.mission-impact-container {
    background: linear-gradient(
        135deg, 
        rgba(0, 51, 102, 0.03) 0%, 
        rgba(218, 165, 32, 0.03) 100%
    );
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.mission-impact-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at center, rgba(218, 165, 32, 0.05) 0%, transparent 70%),
        linear-gradient(
            45deg, 
            rgba(0, 51, 102, 0.02) 0%, 
            rgba(218, 165, 32, 0.02) 100%
        );
    transform: rotate(-15deg);
    z-index: 1;
}

.mission-card-professional {
    border-radius: 15px;
    box-shadow: 
        0 20px 50px rgba(0, 51, 102, 0.1),
        0 10px 20px rgba(218, 165, 32, 0.05);
    overflow: hidden;
    transition: all 0.5s ease;
    border-top: 6px solid var(--gold);
    position: relative;
    background: var(--white);
}

.mission-card-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 51, 102, 0.02) 0%, 
        rgba(218, 165, 32, 0.02) 100%
    );
    opacity: 0.6;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.mission-card-professional:hover::before {
    opacity: 0.8;
}

.mission-card-professional:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 30px 60px rgba(0, 51, 102, 0.15),
        0 15px 30px rgba(218, 165, 32, 0.1);
}

.mission-icon-container {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.mission-icon-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg, 
        rgba(218, 165, 32, 0.2), 
        rgba(77, 124, 158, 0.2)
    );
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.mission-icon-container:hover::after {
    opacity: 0.6;
}

.mission-icon {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 5rem;
    transition: all 0.5s ease;
}

.mission-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.mission-content-enhanced {
    background-color: var(--white);
    padding: 40px;
    border-left: 6px solid var(--gold);
    position: relative;
    transition: all 0.5s ease;
}

.mission-content-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        to right, 
        var(--primary-blue), 
        var(--gold)
    );
}

.mission-title-enhanced {
    color: var(--primary-blue);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    transition: color 0.3s ease;
}

.mission-title-enhanced:hover {
    color: var(--gold);
}

.mission-title-enhanced::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.mission-title-enhanced:hover::after {
    width: 120px;
}

.mission-text-enhanced p {
    color: var(--text-dark);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.mission-text-enhanced p:hover {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .mission-card-professional {
        flex-direction: column;
    }
    
    .mission-icon-container {
        padding: 30px;
    }

    .mission-icon {
        font-size: 4rem;
    }

    .mission-content-enhanced {
        padding: 30px;
    }
}

/* Additional Professional Section Designs */
.section-header {
    position: relative;
    margin-bottom: 50px;
}

.section-header .section-title {
    color: var(--primary-blue);
    position: relative;
    z-index: 2;
}

.section-header .section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(
        to right, 
        var(--primary-blue), 
        var(--gold)
    );
    margin: 15px auto;
    position: relative;
    z-index: 2;
}

.section-header::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(
        to right, 
        transparent, 
        var(--light-blue), 
        transparent
    );
    opacity: 0.3;
    z-index: 1;
}