/* Folha de estilos modular para a página Quem Somos (sobre.php) */

.about-section-custom {
    margin-top: 100px;
}

/* Secção Porquê Nós */
.porque-nos-section {
    padding: 80px 0;
    background: transparent;
    border-top: 1px solid #eaeaea;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle-red {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.section-title-dark {
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 10px 0 20px 0;
}

.section-desc-muted {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Grelha de Vantagens IT */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.prod-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.prod-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.prod-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 171, 217, 0.05);
    margin-bottom: 25px;
    color: var(--color-text-main);
    transition: all 0.3s ease;
}

.prod-card:hover .prod-icon-box {
    background: rgba(0, 171, 217, 0.08);
    color: var(--color-primary);
    transform: scale(1.05);
}

.prod-icon-box svg {
    width: 32px;
    height: 32px;
}

.prod-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.prod-text {
    color: #666;
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
}
