/* Estilos padronizados para os cabeçalhos das seções */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    padding: 0 1rem;
}

.section-header .section-subtitle {
    display: inline-block;
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.section-header .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: #3b82f6;
    transform: translateY(-50%);
}

.section-header h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 700px;
}

/* Estilos específicos para a seção Sobre Nós */
.about-section .section-header h2 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 10;

}

.about-section .section-header h2 span {
    color: #3b82f6;
    position: relative;
    display: inline-block;
    z-index: 10;

}

.about-section .section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 3px;
}

.about-section .section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.about-section .section-subtitle {
    display: inline-block;
    color: #3b82f6;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.about-section .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: #3b82f6;
    transform: translateY(-50%);
}

.about-section {
    padding: 8rem 0;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Grid de Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

/* Estilo Base do Card */
.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 82, 204, 0.15);
    border-color: rgba(0, 82, 204, 0.1);
}

/* Efeito de brilho sutil no hover */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1;
}

/* Card sem animação de hover */
.card.no-hover,
.card.no-hover:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.05);
}

/* Card Destaque */
.card-highlight {
    background: linear-gradient(135deg, #0052cc 0%, #3b82f6 100%);
    color: white;
    position: relative;
    z-index: 1;
    border: none;
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.2);
}

.card-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: -1;
}

.card-highlight:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 25px 50px rgba(0, 82, 204, 0.25);
}

.card-highlight h3,
.card-highlight p {
    color: white;
}

/* Ícone do Card */
.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-highlight .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Título do Card */
.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.3;
}

.card-highlight h3 {
    color: white;
}

/* Texto do Card */
.card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

/* Lista de Diferenciais */
.differentiators {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1rem;
}

.differentiator-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.differentiator-item i {
    font-size: 1.2rem;
    color: #3b82f6;
    background: #f0f9ff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.card-highlight .differentiator-item i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.differentiator-item div {
    flex-grow: 1;
}

.differentiator-item span {
    display: block;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.card-highlight .differentiator-item span {
    color: white;
}

.differentiator-item p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.card-highlight .differentiator-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Estilo para o texto dos diferenciais */
.diferenciais-texto {
    margin-top: 1rem;
}

.diferenciais-texto p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.diferenciais-texto p:before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.5rem;
}

.diferenciais-texto p strong {
    color: #1e293b;
    font-weight: 600;
}

/* Lista de Pilares */
.pillars-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.pillars-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: #475569;
    line-height: 1.6;
}

.pillars-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.card-highlight .pillars-list li:before {
    color: white;
}

.card-highlight .pillars-list li {
    color: rgba(255, 255, 255, 0.9);
}

/* Badge de Experiência */
.experience-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
    backdrop-filter: blur(5px);
}

.experience-badge span {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 0.2rem;
}

.experience-badge small {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Container do Botão CTA */
.cta-container {
    text-align: center;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para a seção Nossa Essência */
.essence-section {
    margin-top: 6rem;
    position: relative;
    z-index: 2;
}

.essence-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.essence-section .section-header h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.essence-section .section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 3px;
}

.essence-section .section-header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid de Propósito, Missão e Visão */
.pmv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pmv-featured-card {
    grid-row: span 2;
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.pmv-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.1);
}

.pmv-featured-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pmv-featured-card .icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: #3b82f6;
}

.pmv-featured-card h3 {
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pmv-featured-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

.pmv-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.pmv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 82, 204, 0.1);
}

.pmv-card .card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pmv-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pmv-card .icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: #3b82f6;
}

.pmv-card h4 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.pmv-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Estilos para a seção de Valores */
.values-grid {
    margin-top: 4rem;
}

.values-grid h3 {
    text-align: center;
    font-size: 1.75rem;
    color: #1e293b;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.values-grid h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 3px;
}

/* === Disable decorative lines globally === */
.section-header .section-subtitle::before,
.about-section .section-subtitle::before,
.about-section .section-header h2 span::after,
.essence-section .section-header h3::after,
.values-grid h3::after {
    content: none !important;
    display: none !important;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 82, 204, 0.1);
}

.value-icon {
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    background: #f0f9ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    flex-shrink: 0;
}

.value-content h4 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.value-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade */
@media (max-width: 1024px) {
    .pmv-grid {
        grid-template-columns: 1fr;
    }
    
    .pmv-featured-card {
        grid-row: auto;
        margin-bottom: 1.5rem;
    }
    
    .essence-section {
        margin-top: 4rem;
    }
    
    .values-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .card {
        padding: 2rem;
    }
    
    .about-section {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .essence-section .section-header h3 {
        font-size: 1.75rem;
    }
    
    .pmv-featured-card {
        padding: 2rem 1.5rem;
    }
    
    .pmv-featured-card h3 {
        font-size: 1.5rem;
    }
    
    .pmv-card h4 {
        font-size: 1.3rem;
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card {
        padding: 1.8rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .about-section {
        padding: 4rem 0;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .values-container {
        grid-template-columns: 1fr;
    }
    
    .pmv-card {
        padding: 1.5rem 1.25rem;
    }
    
    .pmv-card .icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .pmv-card .icon-wrapper svg {
        width: 24px;
        height: 24px;
    }
    
    .value-card {
        padding: 1.25rem 1rem;
    }
    
    .value-icon {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    
    .value-content h4 {
        font-size: 1.05rem;
    }
    
    .value-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 1.8rem 1.5rem;
    }
    
    .card h3 {
        font-size: 1.4rem;
    }
    
    .experience-badge {
        padding: 0.7rem 1rem;
    }
    
    .experience-badge span {
        font-size: 1.6rem;
    }
}
