/* ==================================================
   ESTILOS ESPECÍFICOS - PÁGINA "SOBRE NÓS"
================================================== */

/* --- 1. HERO DA PÁGINA --- */
.page-hero {
    padding: 160px 0 80px 0;
    text-align: center;
    background-color: var(--cor-primaria); /* Fundo Azul */
    color: var(--cor-fundo); /* Texto Branco */
}

.page-hero h1 {
    font-size: 3.5rem;
    color: #ffffff; /* Força branco */
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #e0e0e0; /* Cinza bem claro para contraste no azul */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- 2. SEÇÃO A HISTÓRIA --- */
.about-section {
    padding: 80px 0;
    background-color: var(--cor-fundo);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content .subtitle {
    display: block;
    font-family: var(--fonte-corpo);
    font-weight: 700;
    color: var(--cor-destaque);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-content h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 20px;
    border-bottom: none; /* Remove estilo global centralizado */
    transform: none;
    left: auto;
    position: static;
    display: block;
}

.about-content p {
    color: var(--cor-texto-suave);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Estatísticas Rápidas */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--cor-primaria);
    font-family: var(--fonte-titulo);
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--cor-texto-suave);
    text-transform: uppercase;
}

/* --- 3. SEÇÃO VALORES --- */
.values-section {
    padding: 80px 0;
    background-color: var(--cor-secundaria); /* Fundo cinza */
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card .icon {
    font-size: 2.5rem;
    color: var(--cor-primaria);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--cor-texto);
}

.value-card p {
    color: var(--cor-texto-suave);
    line-height: 1.6;
}

/* --- 4. SEÇÃO SHOWROOM --- */
.showroom-section {
    padding: 80px 0;
    background-color: var(--cor-fundo);
}

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

.section-header h2 {
    margin-bottom: 10px;
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.showroom-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.showroom-grid img:hover {
    transform: scale(1.02);
}

/* --- 5. CTA FINAL --- */
.final-cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--cor-primaria); /* Azul */
    color: #fff;
}

.final-cta-section h2 {
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.final-cta-section p {
    color: #e0e0e0;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.final-cta-section .cta-button {
    background-color: #fff;
    color: var(--cor-primaria);
}

.final-cta-section .cta-button:hover {
    background-color: var(--cor-destaque);
    color: #fff;
}

/* =============================================
   RESPONSIVO (TABLET/DESKTOP)
============================================= */
@media (min-width: 768px) {
    /* A História vira lado a lado */
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    /* Valores em 3 colunas */
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Showroom em 3 colunas */
    .showroom-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}