.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* CABEÇALHO DA PÁGINA */
.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.privacy-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
}

.privacy-header p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.privacy-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray);
    background: rgba(0, 123, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

.privacy-meta i {
    color: var(--primary);
}

/* CONTEÚDO PRINCIPAL */
.privacy-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    position: relative;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f3f4;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin: 25px 0 15px 0;
}

.privacy-section p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-section ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.privacy-section li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: var(--gray);
    border-bottom: 1px solid #f8f9fa;
}

.privacy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.privacy-section li:last-child {
    border-bottom: none;
}

/* CAIXA DE DESTAQUE */
.highlight-box {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(40, 167, 69, 0.05) 100%);
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.highlight-box::before {
    content: '\f06a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.3;
}

.highlight-box p {
    margin: 0;
    font-weight: 500;
    color: var(--dark);
}

/* INFORMAÇÕES DE CONTATO */
.contact-info {
    background: #ffffff;
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-links a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* MODAL DE AVISO DE COOKIES */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-modal.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-modal.hide {
    transform: translateY(100px);
    opacity: 0;
}

.cookie-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 15px 15px 0 0;
}

.cookie-modal h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-modal p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-modal a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.cookie-modal a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.primary {
    background: var(--primary);
    color: #ffffff;
}

.cookie-btn.primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.cookie-btn.secondary {
    background: var(--border);
    color: var(--gray);
}

.cookie-btn.secondary:hover {
    background: #d6d8db;
}

/* RESPONSIVIDADE*/
@media (max-width: 768px) {
    .privacy-container {
        padding: 0 15px;
    }

    .privacy-header {
        padding: 40px 20px;
        margin-bottom: 40px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }

    .privacy-header p {
        font-size: 1.1rem;
    }

    .privacy-meta {
        gap: 15px;
    }

    .privacy-content {
        padding: 30px 25px;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .contact-links {
        flex-direction: column;
        gap: 15px;
    }

    .contact-links a {
        justify-content: center;
    }

    .cookie-modal {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
        display: flex;
    }
}

@media (max-width: 480px) {
    #main-content {
        padding: 20px 0 60px;
    }

    .privacy-header h1 {
        font-size: 1.8rem;
    }

    .privacy-content {
        padding: 25px 20px;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .privacy-section p {
        font-size: 0.95rem;
    }
}

/* ANIMAÇÕES */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-header,
.privacy-content,
.privacy-section {
    animation: fadeIn 0.6s ease-out;
}

.privacy-content {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}