.elementor-13688 .elementor-element.elementor-element-6632a53{--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-959cb9d *//* Fontes e Tipografia */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500&display=swap');

/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    font-size: 62.5%;
}

body {
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Barra de Rolagem Personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #000000, #1A1A1A);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #C5A880, #945C48);
    border-radius: 6px;
    border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #D4B78F, #A56A55);
}

/* Container Principal */
.cookies-policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

/* Efeitos de Iluminação */
.cookies-policy-container::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197,168,128,0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: -1;
}

/* Cabeçalho */
.policy-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 3rem;
}

.policy-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, transparent, #C5A880, transparent);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.8rem;
    font-weight: 700;
    color: #C5A880;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(197, 168, 128, 0.2);
}

.update-date {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.official-sites {
    font-size: 1.8rem;
    color: #FFFFFF;
}

/* Conteúdo Principal */
.policy-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.policy-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-intro p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.policy-section {
    position: relative;
    padding: 3rem;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 168, 128, 0.1);
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #C5A880;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, #C5A880, transparent);
}

.policy-section p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Listas - Estilo Premium */
ul {
    list-style-type: none;
    margin-left: 1rem;
    margin-bottom: 2.5rem;
}

li {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 2.5rem;
}

li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C5A880;
    font-size: 2.2rem;
    line-height: 1;
    top: 0;
}

/* Links Premium */
a {
    color: #C5A880;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C5A880;
    transition: width 0.3s ease;
}

a:hover {
    color: #E0C9A5;
}

a:hover::after {
    width: 100%;
}

/* Seção de Contato Especial */
.contact-section {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: #C5A880;
    margin-top: 3rem;
    text-align: right;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 3.8rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .cookies-policy-container {
        padding: 3rem 1.5rem;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    .policy-section {
        padding: 2rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    p, li {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.8rem;
    }
    
    .policy-header {
        margin-bottom: 3rem;
    }
    
    .policy-content {
        gap: 4rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
}

/* Animações Suaves */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.policy-section {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.policy-section:nth-child(1) { animation-delay: 0.1s; }
.policy-section:nth-child(2) { animation-delay: 0.2s; }
.policy-section:nth-child(3) { animation-delay: 0.3s; }
.policy-section:nth-child(4) { animation-delay: 0.4s; }
.policy-section:nth-child(5) { animation-delay: 0.5s; }
.policy-section:nth-child(6) { animation-delay: 0.6s; }
.policy-section:nth-child(7) { animation-delay: 0.7s; }
.policy-section:nth-child(8) { animation-delay: 0.8s; }
.policy-section:nth-child(9) { animation-delay: 0.9s; }
.policy-section:nth-child(10) { animation-delay: 1s; }
.policy-section:nth-child(11) { animation-delay: 1.1s; }

/* Otimizações de Acessibilidade */
a:focus, button:focus {
    outline: 2px solid #C5A880;
    outline-offset: 3px;
}

@media (prefers-reduced-motion) {
    .policy-section {
        animation: none;
        opacity: 1;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Performance e Web Vitals */
img, iframe {
    max-width: 100%;
    height: auto;
}

/* Efeitos de Destaque */
strong {
    color: #C5A880;
    font-weight: 500;
}/* End custom CSS */