/* Estilos específicos para a página de Outsourcing */

/* Banner holográfico personalizado */
.outsourcing-banner {
    background: linear-gradient(135deg, #0A1F33 0%, #003366 100%);
    animation: gradientFlow 8s ease infinite;
@keyframes gradientFlow {
   0% { background-position: 0% 50%; }
   50% { background-position: 100% 50%; }
   100% { background-position: 0% 50%; }
}
}

.outsourcing-banner .holo-title {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-xl);
    color: aliceblue;
}

.holo-subtitle{
    color: aliceblue;
}

.holo-stats {
    display: flex;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    text-align: center;
    min-width: 120px;
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.25);
}

.stat-value {
    font-size: var(--text-4xl);
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--white);
    opacity: 0.9;
}

/* Cards de serviços aprimorados */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--holographic-effect);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.3;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.service-info {
    position: relative;
    z-index: 1;
}

/* Efeito parallax personalizado */
.parallax-container {
    position: relative;
    height: 100%;
}

.container {

    position: relative;
}


.parallax-bg {
    background: url('/assets/img/outsourcing-bg.webp') center/cover no-repeat fixed;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Carrossel de tecnologias aprimorado */
.tech-carousel {
    margin-top: var(--space-2xl);
}

.tech-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
}

.tech-item:hover {
    background-color: rgba(0, 74, 173, 0.2);
    transform: translateY(-5px);
}

/* Formulário de contato personalizado */
#outsourcingForm {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
}

/* Responsividade */
@media (max-width: 992px) {
    .holo-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-card {
        flex: 1 1 120px;
    }
}

/* Responsividade para mobile */
    @media (max-width: 768px) {
        .holographic-banner.outsourcing-banner {
            margin-top: 20px;
            padding-bottom: 400px;
            margin-bottom: 100px;
        }
        
        .holo-stats {
            flex-direction: column;
            gap: 20px;
            padding: 20px;
        }
        
        .stat-card {
            width: 100%;
            padding: 25px 15px;
            box-sizing: border-box;
        }
        
        .stat-value {
            font-size: 2.5rem;
        }
        
        .stat-label {
            font-size: 1rem;
        }
    }

@media (max-width: 768px) {
    .outsourcing-banner .holo-title {
        font-size: var(--text-4xl);
    }
    
    .holo-stats {
        gap: var(--space-md);
    }
}

.tech-section {
    background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.9) 0%, rgba(9, 14, 35, 1) 90%);
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    color: aliceblue;
}

.tech-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.tech-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 5px 15px rgba(74, 108, 247, 0.4));
    transition: transform 0.5s ease;
}

.tech-item:hover .tech-icon {
    transform: rotate(10deg) scale(1.1);
}

.tech-tooltip {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: aliceblue;
}

.tech-tooltip:hover{
    color: aliceblue;
}

.tech-item:hover .tech-tooltip {
    opacity: 1;
    transform: translateY(10px);
}

.section-title{
    color: aliceblue;
}

.premium-tech-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #f8fafc 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.premium-tech-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100" fill="none" opacity="0.03"><path d="M50 0L100 50L50 100L0 50L50 0Z" stroke="%23000" stroke-width="1"/></svg>');
    background-size: 120px;
    opacity: 0.05;
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.badge {
    display: inline-block;
    background: linear-gradient(90deg, #001f86 0%, #88d3ce 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(90deg, #001572 0%, #88d3ce 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tech-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.tech-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.tech-icon {
    width: 100%;
    height: 100%;
}

.tech-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(110, 69, 226, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.1);
        opacity: 0.2;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.tech-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
}

.tech-description {
    color: #4a5568;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-benefits {
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.benefit-item svg {
    margin-right: 0.5rem;
    color: #000268;
    flex-shrink: 0;
}

.allocation-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(110, 69, 226, 0.1);
    color: #6e45e2;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 1rem;
}

.allocation-badge svg {
    margin-right: 0.5rem;
    width: 14px;
    height: 14px;
}

.strategy-card {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 1rem;
    padding: 2rem;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.strategy-header {
    margin-bottom: 1.5rem;
}

.strategy-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.strategy-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.strategy-features {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.strategy-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-self: flex-start;
    margin-top: 1rem;
}

.benefit-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.value-proposition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

.value-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.value-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.value-list {
    margin-bottom: 2rem;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.value-list li svg {
    color: #6e45e2;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.cta-button {
    display: inline-block; /* Isso é crucial para links se comportarem como botões */
    background: linear-gradient(90deg, #4a5dff 0%, #88d3ce 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none; /* Remove o sublinhado padrão do link */
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
    text-decoration: none; /* Garante que não apareça sublinhado no hover */
}

/* Otimização para Mobile */
@media (max-width: 768px) {
    .img-exclusivo {
        width: 400px;
    }
}



.value-image {
    position: relative;
    height: 100%;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #000769 0%, #88d3ce 100%);
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .strategy-card {
        grid-template-columns: 1fr;
    }
    
    .value-proposition {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-image {
        order: -1;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .tech-card {
        padding: 1.5rem;
    }
}