/* ==============================
   POLÍTICA DE PRIVACIDADE STYLES
   ============================== */

:root {
    --primary-color: #7a6c3f;
    --primary-dark: #5a4c2f;
    --primary-light: #9a8c5f;
    --text-dark: #2c2c2c;
    --text-light: #6c6c6c;
    --bg-light: #f8f7f5;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
    --accent-gold: #d4af37;
}

.privacy-hero {
    background: linear-gradient(135deg, rgba(122, 108, 63, 0.95) 0%, rgba(90, 76, 47, 0.95) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    opacity: 0.1;
}

.privacy-hero-content {
    position: relative;
    z-index: 1;
}

.privacy-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
}

.privacy-section {
    padding: 80px 0;
    background: white;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Table of Contents */
.toc-container {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 25px 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.toc-container h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list a::before {
    content: '→';
    font-weight: bold;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.toc-list a:hover {
    color: var(--primary-dark);
    padding-left: 10px;
}

.toc-list a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Main Content */
.privacy-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-gold);
    position: relative;
}

.privacy-content h2::before {
    content: '▪';
    color: var(--accent-gold);
    margin-right: 12px;
}

.privacy-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.privacy-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 1rem;
    text-align: justify;
}

.privacy-content ul,
.privacy-content ol {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
    margin-left: 20px;
}

.privacy-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

.privacy-content ul li::marker {
    color: var(--accent-gold);
    font-weight: bold;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    border-bottom-color: var(--accent-gold);
    padding-bottom: 2px;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, rgba(122, 108, 63, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-left: 4px solid var(--accent-gold);
    padding: 20px 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.info-box p {
    margin: 0;
    color: var(--text-dark);
}

.info-box strong {
    color: var(--primary-color);
}

/* Metadata */
.metadata {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.metadata-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

/* Action Buttons */
.privacy-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-privacy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    box-sizing: border-box;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.btn-privacy:active {
    transform: translateY(0);
}

.btn-manage-cookies {
    background-color: var(--primary-color);
    color: white;
}

.btn-manage-cookies:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 108, 63, 0.25);
}

.btn-back {
    background-color: #f5f5f5;
    color: var(--primary-color);
     border: 2px solid var(--border-color); 
}

.btn-back:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color); 
    transform: translateY(-2px); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} 

.btn-print {
    background-color: #ffffff;
    color: var(--primary-dark);
    border: 2px solid var(--border-color);
}

.btn-print:hover {
    background-color: #f0ede7;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Contact Section - Elegant Professional Design */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
    box-shadow: 0 10px 40px rgba(122, 108, 63, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-gold) 50%, var(--primary-color) 100%);
}

.contact-section h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.contact-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 5px;
    padding: 8px 18px;
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-gold));
    transform: scaleY(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(122, 108, 63, 0.12);
    border-color: var(--accent-gold);
}

.contact-item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(122, 108, 63, 0.2);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-light));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 18px rgba(122, 108, 63, 0.3);
}

.contact-item:hover .contact-icon::after {
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-label {
    color: var(--primary-color);
    opacity: 1;
}

.contact-value {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
    color: var(--primary-color);
}


.action-btn-primary:hover .action-icon {
    transform: rotate(20deg) scale(1.1);
}

.action-btn-primary:active {
    transform: translateY(-1px);
} */

/* Scroll To Top Button */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(122, 108, 63, 0.3);
    z-index: 100;
}

.scroll-indicator.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-indicator:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(122, 108, 63, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.6rem;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }

    .privacy-section {
        padding: 50px 0;
    }

    .toc-container {
        padding: 20px;
    }

    .privacy-actions {
        flex-direction: column;
    }

    .contact-section {
        padding: 30px 25px;
    }

    .contact-section h3 {
        font-size: 1.4rem;
    }

    .contact-item {
        padding: 16px 18px;
        gap: 16px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .contact-value {
        font-size: 1rem;
    }

    .metadata {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 50px 0;
    }

    .privacy-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .privacy-hero p {
        font-size: 1rem;
    }

    .privacy-content {
        padding: 20px;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
        margin-top: 35px;
    }

    .privacy-content p {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 25px 20px;
    }

    .contact-section h3 {
        font-size: 1.25rem;
        margin-bottom: 25px;
    }

    .contact-item {
        padding: 14px 16px;
        gap: 14px;
    }

    .contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .contact-label {
        font-size: 0.75rem;
    }

    .contact-value {
        font-size: 0.95rem;
    }

    .scroll-indicator {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .privacy-hero,
    .scroll-indicator {
        display: none;
    }

    .privacy-content {
        box-shadow: none;
        padding: 0;
    }

    .privacy-content h2 {
        page-break-after: avoid;
        margin-top: 20px;
    }

    .privacy-content ul,
    .privacy-content ol {
        page-break-inside: avoid;
    }
}
