/* Quem Somos - Estilo BL2Gs inspirado na Ocyan */

/* Banner Principal */
.quem-somos-banner {
    position: relative;
    height: 40vh;
    min-height: 400px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    background-image: url('/assets/img/banner-quem-somos.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 1.3rem;
    color: white;
    text-align: center;
    margin: 0;
    max-width: 600px;
    opacity: 0.95;
    font-weight: 300;
}

/* Seções Gerais */
.sobre-bl2gs,
.diferenciais,
.equipe,
.valores,
.linha-tempo,
.palavra-equipe,
.clientes {
    padding: 80px 20px;
}

.sobre-bl2gs {
    background: #f8f9fa;
}

.diferenciais {
    background: white;
}

.equipe {
    background: #f8f9fa;
}

.valores {
    background: white;
}

.linha-tempo {
    background: #f8f9fa;
}

.palavra-equipe {
    background: #1e3c72;
    color: white;
}

.clientes {
    background: white;
}

/* Títulos de Seção */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1e3c72;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #66BB44;
    margin: 20px auto 0;
    border-radius: 2px;
}

.palavra-equipe .section-title {
    color: white;
}

/* Sobre a BL2Gs */
.sobre-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #1e3c72;
    line-height: 1.6;
}

.sobre-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

/* Diferenciais */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.diferencial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #66BB44;
}

.diferencial-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #66BB44;
    font-weight: 700;
}

.diferencial-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e3c72;
    font-weight: 600;
}

.diferencial-item p {
    color: #666;
    line-height: 1.6;
}

/* Equipe */
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.equipe-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipe-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.equipe-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #66BB44;
}

.equipe-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipe-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e3c72;
    font-weight: 600;
}

.equipe-item p {
    color: #666;
    font-size: 1rem;
}

/* Valores */
.valores-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.valor-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #66BB44;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.valor-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.valor-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e3c72;
    font-weight: 600;
}

.valor-item p {
    color: #666;
    line-height: 1.6;
}

/* Linha do Tempo */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #66BB44;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #1e3c72;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0 30px;
    align-self: flex-start;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1e3c72;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Palavra da Equipe */
.citacao {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.citacao blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
}

.citacao blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: 0;
    top: -10px;
    color: #66BB44;
    font-family: serif;
}

.citacao cite {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Clientes */
.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.cliente-logo {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.cliente-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cliente-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.cliente-logo:hover img {
    filter: grayscale(0%);
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        margin: 0;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin-top: 20px;
    }

    .diferenciais-grid,
    .equipe-grid,
    .valores-grid {
        grid-template-columns: 1fr;
    }

    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }

    .clientes-grid {
        grid-template-columns: 1fr;
    }
}