/* Estilos para a seu00e7u00e3o de Missu00e3o, Visu00e3o e Valores da SinapseTech */

#mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* Efeito de fundo sutil */
#mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/about/dna-pattern.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

/* Container principal */
.mission-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Cabeu00e7alho da seu00e7u00e3o */
.mission-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mission-header h2 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0077b6;
    margin-bottom: 10px;
}

.mission-header h1,
.mission-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #0077b6, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.mission-header p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid de cards */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Card individual */
.mission-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Cabeu00e7alho do card */
.mission-card-header {
    padding: 30px 30px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Estilos especu00edficos para cada tipo de card */
.mission-card.mission-type {
    border-top: 4px solid #3498db;
}

.mission-card.vision-type {
    border-top: 4px solid #2ecc71;
}

.mission-card.values-type {
    border-top: 4px solid #9b59b6;
}

/* u00cdcone do card */
.mission-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.mission-type .mission-card-icon {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.vision-type .mission-card-icon {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.values-type .mission-card-icon {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.mission-card-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Tu00edtulo do card */
.mission-card-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.mission-type .mission-card-title {
    color: #3498db;
}

.vision-type .mission-card-title {
    color: #2ecc71;
}

.values-type .mission-card-title {
    color: #9b59b6;
}

/* Conteu00fado do card */
.mission-card-content {
    padding: 25px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mission-card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Badge flutuante */
.mission-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.mission-type .mission-badge {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.vision-type .mission-badge {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.values-type .mission-badge {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

/* Responsividade */
@media (max-width: 992px) {
    .mission-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .mission-header h1,
.mission-header .section-title {
        font-size: 28px;
    }
    
    .mission-header p {
        font-size: 16px;
    }
    
    .mission-card-header {
        padding: 25px 20px 15px;
    }
    
    .mission-card-content {
        padding: 20px 20px 25px;
    }
}

@media (max-width: 480px) {
    #mission-section {
        padding: 60px 0;
    }
    
    .mission-header {
        margin-bottom: 40px;
    }
    
    .mission-header h1,
.mission-header .section-title {
        font-size: 24px;
    }
    
    .mission-card-title {
        font-size: 20px;
    }
    
    .mission-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .mission-card-icon img {
        width: 30px;
        height: 30px;
    }
}
