main{
  margin-top: 125px;
}

.page-title-seccao {
    padding: 2rem 0;
    margin-top: 15rem;
    clear: both;
}

.mvv {
    padding: 3rem 0;
}

.mvv .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-seccao {
    margin-bottom: 4rem;
    padding: 2rem;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.mvv-seccao:hover {
    transform: translateY(-5px);
}

.mvv-seccao h2 {
    color: #005a87;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffd166;
    display: inline-block;
}

.mvv-seccao p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.valores-item {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.valores-item:hover {
    background-color: #005a87;
    color: white;
}

.valores-item h3 {
    margin-bottom: 0.5rem;
    color: #005a87;
}

.valores-item:hover h3 {
    color: white;
}

.valores-item p {
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .valores-list {
        grid-template-columns: 1fr;
    }
    
    .page-title-seccao {
        margin-top: 4rem;
    }
    
    .mvv-seccao {
        padding: 1.5rem;
    }
}