.elementor-83 .elementor-element.elementor-element-a408ec7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-3c5049d *//* Estilo Futurista para Política de Privacidade */
.privacy-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 
                0 0 15px rgba(58, 65, 111, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.privacy-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Títulos com Efeito Neon */
.privacy-container h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.privacy-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    border-radius: 2px;
}

.privacy-container h3 {
    color: #34495e;
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.privacy-container h3::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(52, 152, 219, 0.5), transparent);
}

/* Texto com Efeito de Vidro */
.privacy-container p, 
.privacy-container li {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.privacy-container p::before,
.privacy-container li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

/* Listas Estilizadas */
.privacy-container ul {
    margin-bottom: 2rem;
    padding-left: 0;
    list-style: none;
}

.privacy-container li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-left: 3px solid #3498db;
}

.privacy-container li:hover {
    transform: translateX(5px);
    background: rgba(52, 152, 219, 0.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

/* Links Holográficos */
.privacy-container a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 3px;
}

.privacy-container a:hover {
    background: linear-gradient(90deg, #2980b9, #8e44ad);
    -webkit-background-clip: text;
    background-clip: text;
}

.privacy-container a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    transition: width 0.3s ease;
}

.privacy-container a:hover::after {
    width: 100%;
}

/* Efeitos Especiais */
.highlight-box {
    padding: 25px;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3498db, #9b59b6);
}

/* Responsividade Avançada */
@media (max-width: 1024px) {
    .privacy-container {
        padding: 40px;
        margin: 40px 20px;
    }
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .privacy-container h2 {
        font-size: 2rem;
    }
    
    .privacy-container h3 {
        font-size: 1.5rem;
    }
    
    .privacy-container p, 
    .privacy-container li {
        font-size: 1rem;
    }
}

/* Animação de Entrada */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.privacy-container > * {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.privacy-container > *:nth-child(1) { animation-delay: 0.1s; }
.privacy-container > *:nth-child(2) { animation-delay: 0.2s; }
.privacy-container > *:nth-child(3) { animation-delay: 0.3s; }
.privacy-container > *:nth-child(4) { animation-delay: 0.4s; }
.privacy-container > *:nth-child(5) { animation-delay: 0.5s; }
.privacy-container > *:nth-child(6) { animation-delay: 0.6s; }
/* Continue conforme necessário para todos os elementos filhos *//* End custom CSS */