.elementor-4989 .elementor-element.elementor-element-5ca0b31{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-4989 .elementor-element.elementor-element-f0c909a{width:100%;max-width:100%;}.elementor-4989 .elementor-element.elementor-element-f0c909a > .elementor-widget-container{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-f0c909a *//* Voyager Neon Cyberpunk Section - v2n prefix */
.v2n-section {
    padding: 100px 20px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Background gradient effect */
.v2n-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(147, 51, 234, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    filter: blur(100px);
    opacity: 0.6;
}

.v2n-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.v2n-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row; /* Forçar linha horizontal */
    gap: 40px;
}

.v2n-title {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 8px;
    /* PARÂMETROS DO GRADIENTE - AJUSTE AQUI AS CORES E POSIÇÕES */
    background: linear-gradient(90deg, 
        #8d00ff 0%,    /* ROXO - começa em 0% */
        #8d00ff 30%,   /* ROXO - vai até 45% */
        #4285F4 65%,   /* AZUL - pico em 70% */
        #ff00d4 95%    /* ROSA - começa em 85% e vai até 100% */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    margin: 0;
}

.v2n-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    /* MESMO GRADIENTE PARA O EFEITO DE BLUR */
    background: linear-gradient(90deg, 
        #8d00ff 0%,    /* ROXO - começa em 0% */
        #8d00ff 30%,   /* ROXO - vai até 45% */
        #4285F4 65%,   /* AZUL - pico em 70% */
        #ff00d4 95%    /* ROSA - começa em 85% e vai até 100% */
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(10px);
    opacity: 0.5;
}

/* Estilos do Robô Voyager */
.v2n-voyager-robot-container {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2n-voyager-icon {
    position: relative;
    z-index: 10;
    color: #8d00ff;
    filter: drop-shadow(0 0 10px rgba(141, 0, 255, 0.6));
    width: 100px;
    height: 100px;
}

.v2n-voyager-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(141, 0, 255, 0.3), transparent 50%);
    filter: blur(40px);
    z-index: 0;
}

.v2n-voyager-eye {
    stroke-width: 2;
    stroke-linecap: round;
    transform-origin: center;
    transition: transform 0.1s;
}

.v2n-voyager-scanner {
    animation: v2n-voyager-scan 3s linear infinite;
}

/* Animações do Robô */
@keyframes v2n-voyager-scan {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 30; }
}

/* Grid de cards */
.v2n-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.v2n-card {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 28, 135, 0.3);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.v2n-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(138, 43, 226, 0.3), transparent);
    transition: left 0.6s ease;
}

.v2n-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 
        0 10px 30px rgba(138, 43, 226, 0.3),
        inset 0 0 20px rgba(138, 43, 226, 0.1);
}

.v2n-card:hover::before {
    left: 100%;
}

.v2n-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b2dc9, #c026d3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
}

.v2n-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #8b2dc9, #c026d3);
    border-radius: 16px;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.v2n-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
    fill: none;
}

.v2n-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.v2n-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    font-size: 14px;
}

/* Robot Lucid Icon Styles (do arquivo 2) */
.robot_elune_voy2home {
    width: 80px;
    height: 80px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    position: relative;
}

.robot_elune_voy2home svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.5));
    animation: robot_glow_voy2home 3s ease-in-out infinite alternate;
}

@keyframes robot_glow_voy2home {
    0% {
        filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.5));
        transform: translateY(0);
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.8));
        transform: translateY(-3px);
    }
}

/* Ajuste para alinhamento com título (do arquivo 2) */
.v2c-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.v2c-title {
    display: inline-flex;
    align-items: center;
}

/* Responsividade */
@media (max-width: 1200px) {
    .v2n-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .v2n-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .v2n-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .v2n-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .v2n-voyager-robot-container {
        width: 120px;
        height: 120px;
    }
    
    .v2n-voyager-icon {
        width: 80px;
        height: 80px;
    }
    
    .v2n-voyager-glow {
        width: 120px;
        height: 120px;
    }
    
    .v2n-title {
        font-size: 48px;
        letter-spacing: 4px;
        padding-left: 20px;
        margin-left: 10px;
        padding-right: 20px;
        margin-right: 10px;
    }
    
    .v2n-grid {
        grid-template-columns: 1fr;
    }
    
    .robot_elune_voy2home {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
}

@media (max-width: 600px) {
    .v2n-title {
        font-size: 48px;
        letter-spacing: 4px;
        padding-left: 20px;
        margin-left: 10px;
        padding-right: 20px;
        margin-right: 10px;
    }
    
    .v2n-grid {
        grid-template-columns: 1fr;
    }
    
    .v2n-voyager-robot-container {
        width: 100px;
        height: 100px;
    }
    
    .v2n-voyager-icon {
        width: 60px;
        height: 60px;
    }
    
    .v2n-voyager-glow {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .robot_elune_voy2home {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
}


/* CTA Button - Modelo Estático */
.v2n-cta-container {
    text-align: center;
    margin-top: 80px;
}

.v2n-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    background: linear-gradient(90deg, #8d00ff 10%, #4285F4 60%, #ff00d4 110%);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(141, 0, 255, 0.4);
}

.v2n-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.v2n-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 6px 40px rgba(141, 0, 255, 0.6),
        0 0 60px rgba(141, 0, 255, 0.3);
        color: #fff;
}

.v2n-cta-button:hover::before {
    left: 100%;
}

.v2n-cta-button:hover .v2n-cta-arrow {
    transform: translateX(5px);
}

.v2n-cta-text {
    position: relative;
    z-index: 1;
}

.v2n-cta-arrow {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Responsividade do botão */
@media (max-width: 768px) {
    .v2n-cta-container {
        margin-top: 60px;
    }
    
    .v2n-cta-button {
        font-size: 16px;
        letter-spacing: 1px;
        padding: 16px 28px;
    background: linear-gradient(90deg, #8d00ff 0%, #4285F4 50%, #ff00d4 110%);
    }
}

@media (max-width: 600px) {
    .v2n-cta-button {
        font-size: 14px;
        padding: 14px 28px;
    }
    
    .v2n-cta-arrow {
        width: 20px;
        height: 20px;
    }
}
/* E ADICIONAR ESTAS NOVAS REGRAS APÓS A REGRA .v2n-title::after: */

.v2n-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.v2n-subtitle {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    opacity: 0.9;
    line-height: 1.4;
}

/* RESPONSIVIDADE PARA O SUBTÍTULO */
@media (max-width: 900px) {
    .v2n-subtitle {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 768px) {
    .v2n-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .v2n-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
}/* End custom CSS */