/* --- SECÇÃO SOBRE NÓS (ESTILO EDITORIAL) --- */
.about-section {
    padding: 2px 20px;
    background-color: #ffffff; /* Fundo limpo e profissional */
    border-bottom: 1px solid #eaeaea;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 4fr 7fr; /* Coluna esquerda menor, direita mais espaçada para o texto */
    gap: 60px;
    align-items: start;
}

.about-intro .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e31e24; /* Vermelho Metalotech */
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-intro h3 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 10px;
}

.about-intro .accent-line {
    width: 50px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: justify;
}

.about-text-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

.about-text-content .lead-text {
    font-size: 20px;
    font-weight: 500;
    color: #222222;
    line-height: 1.7;
}

/* Responsividade para Tablets e Telemóveis */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr; /* Passa a uma coluna única no telemóvel/tablet */
        gap: 40px;
    }
    
    .about-section {
        padding: 2px 20px;
    }

    .about-intro h3 {
        font-size: 28px;
    }
}