/* Process Section */
.process {
    background-color: var(--dark-color);
    padding: 100px 0 50px 0;
    overflow: hidden; /* Evita overflow horizontal */
    width: 100%;
    position: relative;
}

/* Adicionando uma borda com degradê sutil na parte inferior */
.process::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 20%, 
        rgba(34, 197, 94, 0.8) 50%, 
        var(--primary-color) 80%, 
        transparent 100%);
    opacity: 0.7;
    box-shadow: 0 0 8px 1px rgba(6, 88, 246, 0.3);
}

/* Efeito de fundo com gradiente animado */
.process::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 30% 20%, rgba(6, 88, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: gradientMove 15s ease infinite alternate;
}

.process .section-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

/* Corrigindo a linha do timeline para ficar atrás dos indicadores */
.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, 
        var(--primary-color) 0%, 
        rgba(34, 197, 94, 0.8) 50%, 
        var(--primary-color) 100%);
    box-shadow: none; /* Removendo sombra da linha */
    border-radius: 3px;
    z-index: 0; /* Reduzindo o z-index para ficar atrás dos indicadores */
}

.process-step {
    display: flex;
    margin-bottom: 60px;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:hover {
    transform: translateX(5px);
}

/* Corrigindo o indicador de passo para ficar por cima da linha e removendo todas as sombras */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-right: 30px;
    position: relative;
    z-index: 2; /* Aumentando o z-index para garantir que fique por cima da linha */
    box-shadow: none; /* Removendo a sombra externa que causa a demarcação */
    transition: all 0.3s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
    z-index: 1;
}

/* Removendo sombra mesmo no hover */
.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: none; /* Removendo sombra no hover */
}

/* Adicionando sombra ao card cinza no hover e quando ativo */
.step-content {
    flex: 1;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.step-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

/* Sombra no hover do card */
.process-step:hover .step-content {
    box-shadow: 0 10px 25px rgba(6, 88, 246, 0.4);
    transform: translateX(0) !important;
}

/* Sombra no card quando ativo/clicado */
.active-step .step-content {
    box-shadow: 0 12px 30px rgba(6, 88, 246, 0.5);
    transform: translateX(0) !important;
}

/* Removendo completamente qualquer efeito de transição ou transformação do texto */
.step-content h3 {
    font-size: 1.4rem !important;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    padding: 8px 0;
    line-height: 1.3;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: none !important; /* Removendo todas as transições */
    transform: none !important; /* Garantindo que não haja transformações */
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    position: relative;
    z-index: 2;
    padding: 8px 0;
    margin: 0;
    transition: none !important; /* Removendo todas as transições */
    transform: none !important; /* Garantindo que não haja transformações */
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Removendo qualquer efeito de hover no texto */
.process-step:hover .step-content h3 {
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.2);
    transform: none !important;
    font-size: 1.4rem !important;
    transition: none !important;
}

.process-step:hover .step-content p {
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    transform: none !important;
    font-size: inherit !important;
    transition: none !important;
}

/* Garantindo que não haja transformações no texto em nenhum estado */
.active-step .step-content h3,
.highlight .step-content h3 {
    transform: none !important;
    font-size: 1.4rem !important;
    transition: none !important;
}

.active-step .step-content p,
.highlight .step-content p {
    transform: none !important;
    font-size: inherit !important;
    transition: none !important;
}

.process-cta {
    text-align: center;
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.process-cta .highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 30px auto;
    padding: 25px 35px;
    max-width: 90%;
    background: linear-gradient(135deg, rgba(6, 88, 246, 0.15) 0%, rgba(30, 41, 59, 0.8) 50%, rgba(6, 88, 246, 0.15) 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(2deg);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    --light-x: 50%;
    --light-y: 50%;
    text-align: left;
}

.process-cta .highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at var(--light-x) var(--light-y),
            rgba(255, 255, 255, 0.15) 0%,
            transparent 50%
        ),
        linear-gradient(90deg, 
            rgba(6, 88, 246, 0) 0%, 
            rgba(6, 88, 246, 0.1) 50%, 
            rgba(6, 88, 246, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
    z-index: -1;
    transition: all 0.3s ease;
}

/* Adicionando borda brilhante como no benefits */
.process-cta .highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(6, 88, 246, 0.7) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(34, 197, 94, 0.7) 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.7;
    animation: borderRotate 8s linear infinite;
}

.emoji-pulse {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    animation: emojiPulse 2s infinite;
}

/* Animações */
@keyframes emojiPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes shimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

@keyframes borderRotate {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Classe de destaque para interação - removendo sombra */
.highlight {
    transform: translateY(-5px);
    box-shadow: none; /* Removendo sombra */
}

/* Corrigindo a classe active-step - removendo sombras */
.active-step .step-content {
    box-shadow: none; /* Removendo sombra */
    transform: translateX(10px);
}

.active-step .step-number {
    transform: scale(1.2);
    box-shadow: none; /* Removendo sombra */
}

/* Responsividade */
@media (max-width: 768px) {
    .process-timeline:before {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin-right: 25px;
    }
    
    .step-content {
        padding: 25px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .process-cta .highlight {
        font-size: 1.1rem;
        padding: 20px 25px;
    }
    
    .emoji-pulse {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .process-timeline:before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 20px;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .process-cta .highlight {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .emoji-pulse {
        font-size: 1rem;
    }
}

/* Garantindo que não haja transformações que possam afetar o texto */
.process-step .step-content,
.process-step:hover .step-content,
.active-step .step-content,
.highlight .step-content {
    transform: translateX(0) !important;
    transition: background-color 0.3s ease !important;
}

/* Sobrescrevendo qualquer transformação que possa afetar o texto */
.active-step .step-content {
    transform: translateX(0) !important;
}

/* Desativando qualquer efeito de escala que possa afetar o texto */
.process-step *,
.process-step:hover *,
.active-step *,
.highlight * {
    transform-origin: left center !important;
}

/* Garantindo que o texto tenha tamanho fixo em todos os estados */
.step-content h3,
.step-content p,
.process-step .step-content h3,
.process-step .step-content p,
.process-step:hover .step-content h3,
.process-step:hover .step-content p,
.active-step .step-content h3,
.active-step .step-content p,
.highlight .step-content h3,
.highlight .step-content p {
    font-size: 1.4rem !important;
    transform: none !important;
    transition: none !important;
    transform-origin: left center !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    line-height: 1.5 !important;
    text-transform: none !important;
    font-weight: normal !important;
    font-style: normal !important;
    text-decoration: none !important;
    text-align: left !important;
    white-space: normal !important;
    zoom: 1 !important;
    scale: 1 !important;
}

/* Ajustando apenas o tamanho do parágrafo */
.step-content p,
.process-step .step-content p,
.process-step:hover .step-content p,
.active-step .step-content p,
.highlight .step-content p {
    font-size: 1rem !important;
} 