/* ============================================================
    1. CONTEÚDO PRINCIPAL
        1.1 CONTAINER
        1.2 HOVER
        1.3 DATA ATUALIZAÇÃO
    2. ÍNDICE RÁPIDO
        2.1 CAIXA
        2.2 TÍTULO
        2.3 LISTA
        2.4 LINKS
    3. SECÇÕES
        3.1 CONTAINER
        3.2 CABEÇALHO
        3.3 NÚMERO
        3.4 TÍTULO
        3.5 TEXTO
    4. LISTAS
    5. BLOCO DE DESTAQUE
    6. LINKS
    7. CTA FINAL
        7.1 CONTAINER
        7.2 TEXTO
        7.3 BOTÃO
    8. ANIMAÇÕES
    9. RESPONSIVIDADE
    10. HERO
        10.1 HERO PRINCIPAL
        10.2 FUNDO
        10.3 CONTEÚDO
        10.4 TEXOS
        10.5 BREADCRUMB
    11. CTA SERVIÇO
        11.1 SECÇÃO
        11.2 GLOW
        11.3 CONTEÚDO
        11.4 BOTÃO
============================================================ */



/* ============================================================
   1. CONTEÚDO PRINCIPAL
============================================================ */



/* ============================================================
   1.1 CONTAINER
============================================================ */

.privacy-wrap {

    /* Largura máxima */
    max-width: 860px;

    /* Centralizar */
    margin: 0 auto;

    /* Espaçamento interno */
    padding: 70px 40px 80px;
}



/* ============================================================
   1.2 HOVER
============================================================ */

.privacy-wrap:hover {

    box-shadow: #001f3fbd;
}



/* ============================================================
   1.3 DATA ATUALIZAÇÃO
============================================================ */

.privacy-updated {

    display: inline-flex;
    align-items: center;

    gap: 8px;

    font-size: 11px;

    letter-spacing: 2px;

    color: var(--text-secondary);

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 6px 14px;

    margin-bottom: 48px;
}


/* Ícone */
.privacy-updated i {

    color: var(--accent);

    font-size: 12px;
}



/* ============================================================
   2. ÍNDICE RÁPIDO
============================================================ */



/* ============================================================
   2.1 CAIXA
============================================================ */

.privacy-index {

    background: var(--bg-secondary);

    border: 1px solid var(--border);

    border-radius: 14px;

    padding: 28px 32px;

    margin-bottom: 56px;
}



/* ============================================================
   2.2 TÍTULO
============================================================ */

.privacy-index-title {

    font-size: 11px;

    letter-spacing: 4px;

    color: var(--accent);

    margin-bottom: 16px;
}



/* ============================================================
   2.3 LISTA
============================================================ */

.privacy-index ol {

    list-style: none;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 6px 24px;

    counter-reset: idx;
}


/* Item */
.privacy-index ol li {

    counter-increment: idx;

    font-size: 0.85rem;
}



/* ============================================================
   2.4 LINKS
============================================================ */

.privacy-index ol li a {

    color: var(--text-secondary);

    text-decoration: none;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 4px 0;

    transition: color 0.2s;
}


/* Número */
.privacy-index ol li a::before {

    content: counter(idx, decimal-leading-zero);

    font-size: 10px;

    color: var(--accent);

    font-weight: 700;

    flex-shrink: 0;
}


/* Hover */
.privacy-index ol li a:hover {

    color: var(--accent);
}



/* ============================================================
   3. SECÇÕES
============================================================ */



/* ============================================================
   3.1 CONTAINER
============================================================ */

.privacy-section {

    margin-bottom: 52px;

    scroll-margin-top: 100px;
}



/* ============================================================
   3.2 CABEÇALHO
============================================================ */

.privacy-section-header {

    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 20px;

    padding-bottom: 14px;

    border-bottom: 1px solid var(--border);
}



/* ============================================================
   3.3 NÚMERO
============================================================ */

.privacy-section-num {

    width: 36px;
    height: 36px;

    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #0a2540,
        #1a7abf
    );

    color: white;

    font-size: 13px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}



/* ============================================================
   3.4 TÍTULO
============================================================ */

.privacy-section h2 {

    font-size: 1.25rem;

    font-weight: 700;

    color: var(--text-primary);

    font-family: 'Museo500';
}



/* ============================================================
   3.5 TEXTO
============================================================ */

.privacy-section p {

    font-size: 0.93rem;

    color: var(--text-secondary);

    line-height: 1.85;

    margin-bottom: 14px;

    font-family: 'Museo500';
}


/* Último */
.privacy-section p:last-child {

    margin-bottom: 0;
}



/* ============================================================
   4. LISTAS
============================================================ */

.privacy-list {

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-top: 6px;
}


/* Item */
.privacy-list li {

    display: flex;
    align-items: flex-start;

    gap: 10px;

    font-size: 0.93rem;

    color: var(--text-secondary);

    line-height: 1.6;
}


/* Bullet */
.privacy-list li::before {

    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--accent);

    flex-shrink: 0;

    margin-top: 8px;
}



/* ============================================================
   5. BLOCO DE DESTAQUE
============================================================ */

.privacy-highlight {

    background: var(--bg-primary);

    border: 1px solid var(--border);

    border-left: 4px solid var(--accent);

    border-radius: 0 10px 10px 0;

    padding: 16px 20px;

    margin: 16px 0;

    font-size: 0.93rem;

    color: var(--text-secondary);

    line-height: 1.7;
}


/* Texto forte */
.privacy-highlight strong {

    color: var(--text-primary);

    display: block;

    margin-bottom: 4px;
}



/* ============================================================
   6. LINKS
============================================================ */

.privacy-link {

    color: var(--accent);

    text-decoration: none;

    font-weight: 600;

    transition: color 0.2s;
}


/* Hover */
.privacy-link:hover {

    color: var(--accent-2);
}



/* ============================================================
   7. CTA FINAL
============================================================ */



/* ============================================================
   7.1 CONTAINER
============================================================ */

.privacy-cta {

    background: linear-gradient(135deg, #0a2540 0%, #1a7abf 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}



/* ============================================================
   7.2 TEXTO
============================================================ */

.privacy-cta h3 {

    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Museo500';
}


.privacy-cta p {

    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 22px;
    font-family: 'Museo500';
}



/* ============================================================
   7.3 BOTÃO
============================================================ */

.privacy-cta a {

    display: inline-block;
    background: white;
    color: #0a2540;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;

    border-radius: 30px;

    text-decoration: none;

    transition: transform 0.2s, box-shadow 0.2s;
}


/* Hover */
.privacy-cta a:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ============================================================
   8. ANIMAÇÕES
============================================================ */

.fade-in {

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}


/* Estado visível */
.fade-in.visible {

    opacity: 1;

    transform: translateY(0);
}



/* ============================================================
   9. RESPONSIVIDADE
============================================================ */

@media (max-width: 600px) {

    /* Índice em coluna única */
    .privacy-index ol {

        grid-template-columns: 1fr;
    }

    /* Menos padding */
    .privacy-wrap {

        padding: 40px 20px 60px;
    }
}



/* ============================================================
   10. HERO
============================================================ */



/* ============================================================
   10.1 HERO PRINCIPAL
============================================================ */

.hero-todos {

    position: relative;

    min-height: 100px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        #081c2c 0%,
        #0a2540 45%,
        #00a3b8 100%
    );
}


/* Hero compacto */
.hero-small {

    padding: 60px 40px;
}



/* ============================================================
   10.2 FUNDO
============================================================ */

.hero-todos::before {

    content: "";

    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at top right,
        rgba(255,255,255,0.08),
        transparent 40%
    );
}



/* ============================================================
   10.3 CONTEÚDO
============================================================ */

.hero-todos .hero-content {

    position: relative;

    z-index: 2;

    max-width: 750px;

    padding-left: 100px;

    display: flex;
    flex-direction: column;

    gap: 2px;
}



/* ============================================================
   10.4 TEXTOS
============================================================ */

/* Label */
.section-label {

    display: inline-block;

    color: #52cefb;

    letter-spacing: 5px;

    text-transform: uppercase;

    font-size: 10px;
    font-weight: 600;
}


/* Título */
.hero-todos h1 {

    font-size: 50px;

    line-height: 1;

    margin: 0;

    color: white;
}


/* Descrição */
.hero-todos p {

    font-size: 18px;

    line-height: 1.2;

    margin: 0;

    color: rgba(255,255,255,0.85);

    max-width: 600px;
}



/* ============================================================
   10.5 BREADCRUMB
============================================================ */

.breadcrumb a {

    color: inherit;

    text-decoration: none;

    transition: 0.3s;
}


/* Hover */
.breadcrumb a:hover {

    opacity: 0.7;
}



/* ============================================================
   11. CTA SERVIÇO
============================================================ */



/* ============================================================
   11.1 SECÇÃO
============================================================ */

.cta-servico {

    position: relative;

    padding: 130px 80px;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        #eef5f8,
        #dcecf3
    );
}



/* ============================================================
   11.2 GLOW
============================================================ */

.cta-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.15);

    filter: blur(120px);

    top: -120px;
    right: -120px;
}



/* ============================================================
   11.3 CONTEÚDO
============================================================ */

.cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;
}


/* Título */
.cta-content h2 {

    font-size: 3rem;

    line-height: 1.3;

    color: rgb(0, 0, 0);

    margin: 20px 0 35px;
}



/* ============================================================
   11.4 BOTÃO
============================================================ */

.cta-btn {

    display: inline-block;

    padding: 16px 38px;

    border-radius: 999px;

    text-decoration: none;

    color: white;

    font-weight: 700;

    background: linear-gradient(
        135deg,
        #00c6ff,
        #0072ff
    );

    transition: 0.3s;
}


/* Hover */
.cta-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 20px 40px rgb(0, 58, 83);
}

    /* 14.2 CURSOR - DESATIVAR NO MOBILE */
    @media (max-width: 900px) {

        .cursor,
        .cursor-ring,
        .trail,
        .particle {
            display: none !important;
        }

        /* restaurar cursor normal */
        * {
            cursor: auto !important;
        }
    }