/* ========================================
CSS - PÁGINA POLÍTICA DE PRIVACIDADE
======================================== */

:root {
    --primary-pink: #E8B4B8;
    --soft-pink: #F4E4E6;
    --rose-gold: #B76E79;
    --dark-text: #4A4A4A;
    --light-bg: #FFF8F9;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: #f8f9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Layout e estrutura da página */
.privacy-page {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Cabeçalho da página */
.privacy-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--white) 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 0.8rem;
}

.privacy-header .last-update {
    color: var(--dark-text);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Container do conteúdo */
.privacy-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.7;
}

.privacy-content section {
    margin-bottom: 1.8rem;
    padding-bottom: 0;
}

/* Últimas seções com menos espaço */
.privacy-content section:last-child {
    margin-bottom: 0;
}

/* Títulos das seções */
.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-gold);
    margin-bottom: 0.8rem;
    margin-top: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-pink);
}

/* Parágrafos e listas */
.privacy-content p {
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.privacy-content p:last-child {
    margin-bottom: 0;
}

.privacy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
}

.privacy-content ul:last-child {
    margin-bottom: 0;
}

.privacy-content li {
    margin-bottom: 0.6rem;
}

.privacy-content li:last-child {
    margin-bottom: 0;
}

.privacy-content strong {
    color: var(--rose-gold);
    font-weight: 600;
}

/* Links na política */
.privacy-content a {
    color: var(--rose-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    color: var(--primary-pink);
    text-decoration: underline;
}

/* Lista sem marcadores */
.privacy-content .list-unstyled {
    list-style: none;
    padding-left: 0;
}

/* Botão voltar da política */
.privacy-btn-back {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.privacy-btn-back:hover {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-pink) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
    text-decoration: none;
}

/* ========== BOTÃO VOLTAR AO TOPO ========== */
.back-to-top {
    position: fixed;
    width: 3.125rem;
    height: 3.125rem;
    bottom: 2.5rem;
    right: 2.5rem;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--rose-gold) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    text-align: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(183, 110, 121, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--primary-pink) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Responsivo - Mobile */
@media (max-width: 767px) {
    .privacy-page {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .privacy-header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 1.8rem;
    }

    .privacy-content {
        padding: 1.5rem 1.2rem;
    }

    .privacy-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .privacy-content section {
        margin-bottom: 1.5rem;
    }

    .privacy-content p {
        margin-bottom: 0.7rem;
        font-size: 0.95rem;
    }

    .privacy-content ul {
        margin-bottom: 0.7rem;
    }

    .privacy-content li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .privacy-btn-back {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    /* Responsivo para mobile - Botão Voltar ao Topo */
    .back-to-top {
        width: 2.812rem;
        height: 2.812rem;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .privacy-header h1 {
        font-size: 1.6rem;
    }

    .privacy-content {
        padding: 1.2rem 1rem;
    }

    .privacy-content h2 {
        font-size: 1.1rem;
    }
}