/* Estilos para o fundo interativo */
.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Fica atrás de todo o conteúdo */
    pointer-events: none; /* Permite interação com elementos abaixo */
}

/* Estilos para o efeito de ripple */
.ripple {
    position: fixed;
    width: 100px;
    height: 100px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
    z-index: 9999;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

/* Estilos para o container de partículas */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Garante que o canvas ocupe todo o container */
.particles-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Ajuste para garantir que o conteúdo fique à frente do fundo */
body {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Estilos para a seção Sobre Nós */
.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;
}

/* 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 ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

/* 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;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.card-highlight .card-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.card p {
    color: #475569;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

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

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

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

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

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

/* Diferenciais */
.differentiators {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 1.5rem 0 0 0;
}

.differentiator-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.differentiator-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.differentiator-item i {
    font-size: 1.2rem;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

/* 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;
}

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

/* 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 ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

/* 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;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.card-highlight .card-icon {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.card p {
    color: #475569;
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

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

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

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

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

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

/* Diferenciais */
.differentiators {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 1.5rem 0 0 0;
}

.differentiator-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.differentiator-item:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.differentiator-item i {
    font-size: 1.2rem;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

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

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

/* 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;
}

/* Efeito de brilho no hover para cards */
.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;
}

/* Estilo moderno para seções */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.section-header .section-subtitle {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0.5rem 1.5rem 0.5rem 2.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-header .section-subtitle::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.section-header .section-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(0, 82, 204, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
}

.section-header .section-subtitle:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 82, 204, 0.1);
}

.section-header .section-subtitle:hover::before {
    transform: translateY(-50%) scale(1.2);
    background: #0052cc;
}

.section-header .section-subtitle:hover::after {
    opacity: 1;
}

.section-header h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0.5rem 0 1.5rem;
    line-height: 1.15;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #0052cc, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 12px rgba(0, 82, 204, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.3s;
}

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #0052cc);
    border-radius: 2px;
    animation: lineGrow 0.8s ease forwards 0.8s;
}

@keyframes lineGrow {
    from {
        width: 0;
    }
    to {
        width: 70px;
    }
}

.section-header h2 span {
    position: relative;
    display: inline-block;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(59, 130, 246, 0.15);
    z-index: -1;
    transform: scaleX(0.98) skewX(-10deg);
    transition: all 0.3s ease;
}

.section-header h2:hover span::after {
    transform: scaleX(1) skewX(-5deg);
    background: rgba(59, 130, 246, 0.2);
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Efeito de fundo sutil */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 82, 204, 0.03) 0%, rgba(0, 82, 204, 0) 40%);
    z-index: 0;
}

.about-content h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-content > p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 100%;
    font-weight: 400;
}

.about-content h4 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.2rem;
    color: #2d3748;
    font-weight: 600;
}

.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.expertise-list li {
    position: relative;
    padding: 0.8rem 0 0.8rem 1.8rem;
    color: #334155;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.expertise-list li:hover {
    background: rgba(0, 82, 204, 0.03);
    transform: translateX(5px);
}

.expertise-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.2rem;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.differentiators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}

.differentiator-item {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.differentiator-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.differentiator-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 82, 204, 0.1);
}

.differentiator-item:hover::before {
    transform: scaleX(1);
}

.differentiator-item i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.differentiator-item:hover i {
    transform: scale(1.1);
}

.differentiator-item span {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.1rem;
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

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

/* Estilo para o botão de contato */
.about-content .btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.2);
}

.about-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 82, 204, 0.3);
    color: white;
}

.about-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.about-content .btn:hover::before {
    opacity: 1;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 600px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 82, 204, 0.1), rgba(59, 130, 246, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateZ(0);
}

.about-image:hover img {
    transform: scale(1.05) translateZ(10px);
}

.experience-badge {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.1);
    border: none;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateZ(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 200px;
}

.experience-badge:hover {
    transform: translateZ(20px) scale(1.05);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
}

.experience-badge span {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.experience-badge small {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}

.expertise-highlight {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
    transform: translateZ(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-highlight:hover {
    transform: translateZ(20px) translateY(-5px);
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.15);
}

.expertise-highlight i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.expertise-highlight:hover i {
    transform: rotate(10deg) scale(1.1);
}

.expertise-highlight span {
    font-weight: 600;
    color: #0f172a;
    font-size: 1.15rem;
    line-height: 1.5;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos responsivos para a seção Sobre Nós */
@media (max-width: 1024px) {
    .card {
        padding: 2rem;
    }
    
    .about-grid {
        gap: 4rem;
    }
    
    .about-content h3 {
        font-size: 2rem;
    }
    
    .about-content h4 {
        font-size: 1.4rem;
    }
    
    .differentiators {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .experience-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 1rem 1.5rem;
    }
    
    .expertise-highlight {
        left: 1.5rem;
        right: 1.5rem;
    }
    
    .about-image {
        min-height: 400px;
        order: -1;
    }
    
    .about-content h3 {
        text-align: center;
    }
    
    .about-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .differentiators {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-highlight {
        left: 1.5rem;
        right: 1.5rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .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;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    
    .section-header .section-subtitle {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem 0.4rem 2rem;
        letter-spacing: 2px;
    }
    
    .section-header .section-subtitle::before {
        left: 1.2rem;
        width: 6px;
        height: 6px;
    }
    
    .card {
        padding: 2rem;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .differentiators {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .experience-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .experience-badge span {
        font-size: 1.8rem;
    }
    
    .about-content h3 {
        font-size: 1.8rem;
    }
    
    .about-content h4 {
        font-size: 1.3rem;
        margin: 2rem 0 1rem;
    }
    
    .differentiators {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .differentiator-item {
        padding: 1.5rem 1rem;
    }
    
    .experience-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .experience-badge span {
        font-size: 1.5rem;
    }
}

/* Estilos para o rodapé */
.site-footer {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    flex: 2;
}

.footer-column {
    min-width: 180px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #4fc3f7;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info i {
    color: #4fc3f7;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Responsividade do rodapé */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-legal span {
        display: none;
    }
}

/* Estilos para a seção de projetos */
.projects-section {
    padding: 100px 0;
    position: relative;
    background-color: #f9fafb;
    overflow: hidden;
}

.projects-section .container {
    position: relative;
    z-index: 2;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.bg-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.bg-shape-2 {
    top: 10%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(26, 115, 232, 0.05);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.bg-shape-3 {
    bottom: 10%;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(26, 115, 232, 0.03);
    border-radius: 50%;
}

.bg-shape-4 {
    top: 50%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(26, 115, 232, 0.1);
    border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
}

/* Estilos para a seção de serviços */
.services-section {
    padding: 100px 0;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.service-features li {
    margin-bottom: 10px;
    color: #4a5568;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: #48bb78;
    margin-right: 10px;
    margin-top: 4px;
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #1a73e8;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #0d47a1;
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
}

.services-cta p {
    font-size: 1.25rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bg-shape-2,
    .bg-shape-3,
    .bg-shape-4 {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card,
    .project-card {
        padding: 25px;
    }
    
    .services-cta {
        padding: 25px 20px;
        text-align: center;
    }
    
    .services-cta p {
        font-size: 1.1rem;
    }
    
    .projects-section .section-header,
    .services-section .section-header {
        text-align: center;
    }
    
    .section-header p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .services-cta .btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
}

/* Estilo base para todas as seções */
section {
    position: relative;
    z-index: 2;
    background-color: white;
    padding: 100px 0;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

/* Efeito de hover suave nas seções */
section:hover {
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
}

/* Container principal para o conteúdo */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

/* Ajuste para seções alternadas */
section:nth-child(even) {
    background-color: #f9fafb;
}

/* Espaçamento entre seções */
section + section {
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Cabeçalho das seções */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding-bottom: 20px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 3px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 15px;
}

.section-subtitle {
    display: inline-block;
    color: #3f51b5;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 8px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #3f51b5;
    transform: translateX(-50%);
}

/* Ajuste para o hero */
.hero {
    padding: 0;
    margin: 0;
    border-radius: 0;
    max-width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    position: relative;
    overflow: hidden;
    box-shadow: none;
    isolation: isolate;
}

/* Efeito de partículas no hero */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuLWJnIiB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjUwJSIgaGVpZ2h0PSI1MCUiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybi1iZykiLz48L3N2Zz4=');
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/* Efeito de sobreposição para melhor legibilidade */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Ajuste para o conteúdo do hero */
.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 120px;
}

/* Ajuste para o container do hero */
.hero .container {
    z-index: 10;
    position: relative;
}

/* Efeito de animação suave ao rolar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplica animação aos elementos com a classe animate */
.animate {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Atrasos para animação em sequência */
.animate.delay-1 { animation-delay: 0.2s; }
.animate.delay-2 { animation-delay: 0.4s; }
.animate.delay-3 { animation-delay: 0.6s; }

/* Estilo específico para cada seção */
.services-section {
    background-color: #ffffff;
}

.projects-section {
    background-color: #f8f9ff;
}

.testimonials-section {
    background-color: #ffffff;
    padding: 120px 0;
}

.about-section {
    background-color: #f8f9ff;
}

.partners-section {
    background-color: #ffffff;
    padding: 100px 0 120px;
}

.contact-section {
    background-color: #f8f9ff;
    padding-bottom: 80px;
}

/* Ajuste para o footer */
.site-footer {
    position: relative;
    z-index: 2;
    margin-top: 0;
}
/ *   C o n t a i n e r   d o   B o t   o   C T A   * /  
 . c t a - c o n t a i n e r   {  
         t e x t - a l i g n :   c e n t e r ;  
         m a r g i n - t o p :   3 r e m ;  
         o p a c i t y :   0 ;  
         t r a n s f o r m :   t r a n s l a t e Y ( 2 0 p x ) ;  
         a n i m a t i o n :   f a d e I n U p   0 . 6 s   e a s e   f o r w a r d s   0 . 3 s ;  
 }  
  
 / *   E f e i t o   d e   b r i l h o   s u t i l   n o s   c a r d s   * /  
 . c a r d : : a f t e r   {  
         c o n t e n t :   ' ' ;  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   0 ;  
         l e f t :   0 ;  
         r i g h t :   0 ;  
         b o t t o m :   0 ;  
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e   a t   5 0 %   5 0 % ,   r g b a ( 5 9 ,   1 3 0 ,   2 4 6 ,   0 . 1 ) ,   t r a n s p a r e n t   7 0 % ) ;  
         o p a c i t y :   0 ;  
         t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e ;  
         p o i n t e r - e v e n t s :   n o n e ;  
 }  
  
 . c a r d : h o v e r : : a f t e r   {  
         o p a c i t y :   1 ;  
 }  
  
 / *   R e s p o n s i v i d a d e   p a r a   t e l a s   p e q u e n a s   * /  
 @ m e d i a   ( m a x - w i d t h :   5 7 6 p x )   {  
         . c a r d s - g r i d   {  
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ;  
         }  
          
         . c a r d   {  
                 p a d d i n g :   1 . 8 r e m   1 . 5 r e m ;  
         }  
          
         . c a r d   h 3   {  
                 f o n t - s i z e :   1 . 4 r e m ;  
         }  
          
         . e x p e r i e n c e - b a d g e   {  
                 p a d d i n g :   0 . 7 r e m   1 r e m ;  
         }  
          
         . e x p e r i e n c e - b a d g e   s p a n   {  
                 f o n t - s i z e :   1 . 6 r e m ;  
         }  
 }  
 