/* Estilos específicos para a página Sobre */

.hero-sobre-tamanho {
    background-image: url('../img/OLD/fundo-sobre.png'); /* Exemplo de imagem de fundo */
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px; /* Altura mínima para a seção hero */
    margin-top: 80px; /* Ajuste para o cabeçalho fixo */
}

.hero-sobre .hero-content {
    max-width: 800px;
}

.hero-sobre-tamanho h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-sobre .hero-subtitle {
    font-size: 10px;
    font-weight: 300;
    color: var(--white);
}

/* Seção Nossa História */

section.missao-visao-valores {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: var(--light-gray);
    text-align: center;
}
.nossa-historia {
    padding: 30px 0;
    background-color: var(--white);
}

.nossa-historia .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.nossa-historia .text-content {
    flex: 1;
    max-width: 600px;
}

.nossa-historia .text-content h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.nossa-historia .text-content p {
    font-size: 18px;
    line-height: 1.6;
}

.nossa-historia .image-content img {
    width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Seção Missão, Visão e Valores */
.missao-visao-valores {
background-color: var(--light-gray);
    text-align: center;
}

.missao-visao-valores h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pilar-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.pilar-item h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pilar-item p,
.pilar-item ul {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.pilar-item ul {
    list-style: none;
    padding-left: 0;
}

.pilar-item ul li {
    margin-bottom: 10px;
}

/* Seção Nossa Expertise */

section.nossa-expertise {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: var(--white);
    text-align: center;
}
.nossa-expertise {
    padding: 80px 0;
    background-color: var(--white);
}

.nossa-expertise h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.expertise-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertise-text {
    max-width: 900px;
    text-align: center;
}

.expertise-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.expertise-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.area-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.area-item h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.area-item p {
    font-size: 15px;
    line-height: 1.5;
}

/* Seção Diferenciais */

section.diferenciais {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: var(--light-gray);
    text-align: center;
}
.diferenciais {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.diferenciais h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.diferencial-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.diferencial-item .diferencial-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.diferencial-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.diferencial-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Seção Setores Atendidos */

section.setores-atendidos {
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: var(--white);
    text-align: center;
}
.setores-atendidos {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.setores-atendidos h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.setores-atendidos .setores-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-color);
}

.setores-atendidos .setores-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.setores-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

.setor-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
}

.setor-item h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.setor-item p {
    font-size: 15px;
    line-height: 1.5;
}

/* Seção Compromisso com a Qualidade */

section.compromisso-qualidade {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--light-gray);
    text-align: center;
}
.compromisso-qualidade {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.compromisso-qualidade .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.compromisso-qualidade .text-content {
    flex: 1;
    max-width: 600px;
}

.compromisso-qualidade .text-content h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.compromisso-qualidade .text-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.compromisso-qualidade .text-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.compromisso-qualidade .text-content ul {
    list-style: none;
    padding-left: 0;
}

.compromisso-qualidade .text-content ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.compromisso-qualidade .text-content ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.compromisso-qualidade .image-content img {
    width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Call to Action (CTA) */

section.cta-sobre {
    padding-top: 30px;
    padding-bottom: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}
.cta-sobre {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-sobre .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-sobre h2 {
    font-size: 3em;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-sobre p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.cta-sobre .cta-buttons .btn-primary,
.cta-sobre .cta-buttons .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0 10px;
}

.cta-sobre .cta-buttons .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-sobre .cta-buttons .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cta-sobre .cta-buttons .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-sobre .cta-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    .hero-sobre h1 {
        font-size: 2.5em;
    }

    .hero-sobre .hero-subtitle {
        font-size: 1.2em;
    }

    .nossa-historia .content-wrapper,
    .compromisso-qualidade .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .nossa-historia .image-content,
    .compromisso-qualidade .image-content {
        margin-top: 30px;
    }

    .nossa-historia .image-content img,
    .compromisso-qualidade .image-content img {
        width: 100%;
        max-width: 300px;
    }

    .pilares-grid,
    .areas-grid,
    .diferenciais-grid,
    .setores-lista {
        grid-template-columns: 1fr;
    }

    .cta-sobre .cta-buttons .btn-primary,
    .cta-sobre .cta-buttons .btn-secondary {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .hero-sobre h1 {
        font-size: 2em;
    }

    .hero-sobre .hero-subtitle {
        font-size: 1em;
    }

    .nossa-historia .text-content h2,
    .missao-visao-valores h2,
    .nossa-expertise h2,
    .diferenciais h2,
    .setores-atendidos h2,
    .compromisso-qualidade h2,
    .cta-sobre h2 {
        font-size: 2em;
    }

    .nossa-historia .text-content p,
    .missao-visao-valores p,
    .nossa-expertise p,
    .diferenciais p,
    .setores-atendidos p,
    .compromisso-qualidade p {
        font-size: 1em;
    }
}


/* Estilos específicos para a página Sobre */

.hero-sobre {
    background-image: url("../img/OLD/fundo-sobre.png"); /* Exemplo de imagem de fundo */
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Altura mínima para a seção hero */
    margin-top: 80px; /* Ajuste para o cabeçalho fixo */
}

.hero-sobre .hero-content {
    max-width: 800px;
}

.hero-sobre h1 {
    font-size: 4em;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-sobre .hero-subtitle {
    font-size: 1.5em;
    font-weight: 300;
    color: var(--white);
}

/* Nossa História */
.nossa-historia {
    padding: 80px 0;
    background-color: var(--white);
}

.nossa-historia .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.nossa-historia .text-content {
    flex: 1;
    max-width: 600px;
}

.nossa-historia .text-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.nossa-historia .text-content p {
    font-size: 18px;
    line-height: 1.6;
}

.nossa-historia .image-content img {
    width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Missão, Visão e Valores */
.missao-visao-valores {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.missao-visao-valores h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.missao-visao-valores .pilares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.missao-visao-valores .pilar-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.missao-visao-valores .pilar-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.missao-visao-valores .pilar-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.missao-visao-valores .pilar-item ul {
    list-style: none;
    padding-left: 0;
}

.missao-visao-valores .pilar-item ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.missao-visao-valores .pilar-item ul li strong {
    color: var(--primary-color);
}

/* Nossa Expertise */
.nossa-expertise {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.nossa-expertise h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.nossa-expertise .expertise-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nossa-expertise .expertise-text {
    max-width: 800px;
    text-align: left;
}

.nossa-expertise .expertise-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.nossa-expertise .expertise-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.nossa-expertise .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nossa-expertise .area-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.nossa-expertise .area-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.nossa-expertise .area-item p {
    font-size: 15px;
    line-height: 1.5;
}

/* Diferenciais */
.diferenciais {
    padding: 80px 0;
    background-color: var(--light-gray);
    text-align: center;
}

.diferenciais h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.diferenciais .diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diferenciais .diferencial-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferenciais .diferencial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.diferenciais .diferencial-item .diferencial-icon {
    margin-bottom: 20px;
}

.diferenciais .diferencial-item .diferencial-icon img {
    width: 80px;
    height: 80px;
}

.diferenciais .diferencial-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.diferenciais .diferencial-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Setores Atendidos */
.setores-atendidos {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.setores-atendidos h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.setores-atendidos .setores-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-color);
}

.setores-atendidos .setores-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.setores-atendidos .setores-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.setores-atendidos .setor-item {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.setores-atendidos .setor-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.setores-atendidos .setor-item p {
    font-size: 15px;
    line-height: 1.5;
}

/* Compromisso com a Qualidade */
.compromisso-qualidade {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.compromisso-qualidade .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.compromisso-qualidade .text-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.compromisso-qualidade .text-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.compromisso-qualidade .text-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.compromisso-qualidade .text-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.compromisso-qualidade .text-content ul {
    list-style: none;
    padding-left: 0;
}

.compromisso-qualidade .text-content ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.compromisso-qualidade .text-content ul li strong {
    color: var(--primary-color);
}

.compromisso-qualidade .text-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.compromisso-qualidade .image-content img {
    width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Call to Action */
.cta-sobre {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-sobre .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-sobre h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-sobre p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-sobre .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-sobre .btn-primary,
.cta-sobre .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cta-sobre .btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.cta-sobre .btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-sobre .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-sobre .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Media Queries para Responsividade */
@media (max-width: 992px) {
    .nossa-historia .content-wrapper,
    .compromisso-qualidade .content-wrapper {
        flex-direction: column;
    }

    .nossa-historia .image-content,
    .compromisso-qualidade .image-content {
        margin-top: 30px;
    }

    .nossa-historia .image-content img,
    .compromisso-qualidade .image-content img {
        width: 100%;
        max-width: 400px;
    }

    .nossa-expertise .expertise-text,
    .setores-atendidos .setores-intro,
    .cta-sobre .cta-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-sobre h1 {
        font-size: 3em;
    }

    .hero-sobre .hero-subtitle {
        font-size: 1.2em;
    }

    .missao-visao-valores .pilares-grid,
    .nossa-expertise .areas-grid,
    .diferenciais .diferenciais-grid,
    .setores-atendidos .setores-lista {
        grid-template-columns: 1fr;
    }

    .cta-sobre .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-sobre h1 {
        font-size: 2.5em;
    }

    .hero-sobre .hero-subtitle {
        font-size: 1em;
    }

    .hero-sobre-tamanho{
        margin-top: 0px;
    }

    .nossa-historia .text-content h2,
    .missao-visao-valores h2,
    .nossa-expertise h2,
    .diferenciais h2,
    .setores-atendidos h2,
    .compromisso-qualidade .text-content h2,
    .cta-sobre h2 {
        font-size: 2em;
    }

    .nossa-historia .text-content p,
    .missao-visao-valores p,
    .nossa-expertise p,
    .diferenciais p,
    .setores-atendidos p,
    .compromisso-qualidade p {
        font-size: 1em;
    }
}


