/* =========================================================
   VERTEX STUDIO — POLÍTICA DE PRIVACIDADE
   PARTE 1: BASE, TIPOGRAFIA E HERO
========================================================= */

.privacy-page-body {
    --privacy-bg: #02050d;
    --privacy-surface: rgba(7, 14, 30, 0.82);
    --privacy-surface-strong: rgba(5, 10, 23, 0.97);
    --privacy-border: rgba(82, 126, 234, 0.22);
    --privacy-border-light: rgba(255, 255, 255, 0.08);
    --privacy-blue: #1bc5ff;
    --privacy-blue-dark: #237cff;
    --privacy-violet: #864cff;
    --privacy-purple: #b149ff;
    --privacy-green: #47eca8;
    --privacy-white: #f5f8ff;
    --privacy-muted: #a5aec1;
    --privacy-dark-muted: #707b91;

    --privacy-gradient: linear-gradient(
        110deg,
        #1ac8ff 0%,
        #337aff 48%,
        #a64aff 100%
    );

    --privacy-gradient-text: linear-gradient(
        105deg,
        #20caff 0%,
        #4383ff 47%,
        #b14cff 100%
    );

    position: relative;
    min-width: 320px;
    overflow-x: clip;
    color: var(--privacy-white);
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(0, 172, 255, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 15%,
            rgba(120, 47, 255, 0.1),
            transparent 32%
        ),
        var(--privacy-bg);
}

.privacy-page-body main,
.privacy-page-body section,
.privacy-page-body .container {
    min-width: 0;
}

.privacy-page-body main {
    position: relative;
    z-index: 2;
    overflow: visible;
}

.privacy-page-body img,
.privacy-page-body svg {
    max-width: 100%;
}

.privacy-page-body a {
    color: inherit;
}

.privacy-page-body .container {
    width: min(100% - 40px, 1520px);
    margin-inline: auto;
}

.privacy-page-body .section {
    position: relative;
    width: 100%;
    padding: clamp(5.5rem, 9vw, 9rem) 0;
}

/* =========================================================
   ANIMAÇÕES DE REVELAÇÃO
========================================================= */

.privacy-page-body .reveal-element {
    will-change: opacity, transform;
}

.privacy-page-body .reveal-element:not(.is-visible) {
    opacity: 0;
}

.privacy-page-body
.reveal-element[data-animation="fade-up"]:not(.is-visible) {
    transform: translate3d(0, 46px, 0);
}

.privacy-page-body
.reveal-element[data-animation="fade-left"]:not(.is-visible) {
    transform: translate3d(45px, 0, 0);
}

.privacy-page-body
.reveal-element[data-animation="fade-right"]:not(.is-visible) {
    transform: translate3d(-45px, 0, 0);
}

.privacy-page-body .reveal-element.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.privacy-page-body:not(.animations-ready)
.reveal-element {
    animation: privacyFallbackReveal 0.8s 1.2s forwards;
}

@keyframes privacyFallbackReveal {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* =========================================================
   EYEBROW
========================================================= */

.privacy-page-body .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.privacy-page-body .section-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    flex: 0 0 auto;
    background: var(--privacy-gradient);
    box-shadow: 0 0 14px rgba(32, 190, 255, 0.8);
}

/* =========================================================
   TÍTULOS HÍBRIDOS
========================================================= */

.privacy-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    color: var(--privacy-white);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.privacy-heading__main,
.privacy-heading__script,
.privacy-heading__editorial {
    display: block;
    max-width: 100%;
}

.privacy-heading__main {
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: clamp(2.8rem, 5.3vw, 6rem);
    font-weight: 600;
}

.privacy-heading__script {
    position: relative;
    z-index: 2;
    margin: -0.02em 0 -0.01em 0.42em;
    padding-inline: 0.08em 0.15em;
    color: transparent;
    background: var(--privacy-gradient-text);
    background-size: 180% 180%;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--font-script, "Allura", cursive);
    font-size: clamp(4.2rem, 8vw, 8.8rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: 0;
    filter: drop-shadow(
        0 0 22px rgba(32, 183, 255, 0.17)
    );
    animation:
        privacyScriptFloat 5s ease-in-out infinite,
        privacyGradientMove 7s linear infinite;
}

.privacy-heading__editorial {
    margin-left: 0.7em;
    font-family: var(
        --font-editorial,
        "Playfair Display",
        serif
    );
    font-size: clamp(2.7rem, 5.1vw, 5.7rem);
    font-style: italic;
    font-weight: 500;
}

@keyframes privacyScriptFloat {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(-1deg);
    }

    50% {
        transform:
            translate3d(10px, -7px, 0)
            rotate(0.4deg);
    }
}

@keyframes privacyGradientMove {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 180% 50%;
    }
}

/* =========================================================
   HERO
========================================================= */

.privacy-hero {
    position: relative;
    min-height: max(780px, 100svh);
    padding: clamp(9rem, 13vw, 13rem) 0 7rem;
    overflow: hidden;
    isolation: isolate;
}

.privacy-hero__canvas {
    position: absolute;
    z-index: -5;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    pointer-events: none;
}

.privacy-hero::before {
    content: "";
    position: absolute;
    z-index: -4;
    top: 5%;
    right: -12%;
    width: min(65vw, 1050px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 42% 42%,
            rgba(25, 185, 255, 0.15),
            transparent 20%
        ),
        radial-gradient(
            circle,
            rgba(103, 45, 255, 0.18),
            transparent 65%
        );
    filter: blur(12px);
    animation: privacyHeroOrb 12s ease-in-out infinite alternate;
}

.privacy-hero::after {
    content: "";
    position: absolute;
    z-index: -3;
    right: -10%;
    bottom: -20%;
    left: -10%;
    height: 58%;
    background: linear-gradient(
        115deg,
        transparent 10%,
        rgba(0, 180, 255, 0.09) 44%,
        rgba(116, 47, 255, 0.14) 70%,
        transparent 90%
    );
    clip-path: polygon(
        0 48%,
        100% 0,
        100% 75%,
        0 100%
    );
    filter: blur(28px);
    animation: privacyHeroWave 10s ease-in-out infinite alternate;
}

@keyframes privacyHeroOrb {
    from {
        transform:
            translate3d(-3%, -3%, 0)
            scale(0.94);
    }

    to {
        transform:
            translate3d(5%, 5%, 0)
            scale(1.08);
    }
}

@keyframes privacyHeroWave {
    from {
        transform:
            translate3d(-4%, 2%, 0)
            rotate(-2deg);
        opacity: 0.5;
    }

    to {
        transform:
            translate3d(5%, -3%, 0)
            rotate(2deg);
        opacity: 1;
    }
}

/* =========================================================
   EFEITOS DO HERO
========================================================= */

.privacy-hero__effects {
    position: absolute;
    z-index: -2;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.privacy-hero__glow {
    position: absolute;
    top: 14%;
    right: 7%;
    width: min(46vw, 720px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(43, 120, 255, 0.2),
        rgba(122, 47, 255, 0.08) 42%,
        transparent 70%
    );
    filter: blur(18px);
    animation: privacyGlowPulse 7s ease-in-out infinite;
}

.privacy-hero__ring {
    position: absolute;
    border: 1px solid rgba(70, 130, 255, 0.12);
    border-radius: 50%;
}

.privacy-hero__ring--one {
    top: 12%;
    right: 5%;
    width: min(47vw, 740px);
    aspect-ratio: 1;
    animation: privacyRingRotation 28s linear infinite;
}

.privacy-hero__ring--two {
    top: 25%;
    right: 13%;
    width: min(30vw, 470px);
    aspect-ratio: 1;
    border-color: rgba(147, 69, 255, 0.13);
    animation: privacyRingRotation 22s linear infinite reverse;
}

.privacy-hero__beam {
    position: absolute;
    top: -30%;
    right: 20%;
    width: 190px;
    height: 155%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(35, 187, 255, 0.09),
        rgba(148, 62, 255, 0.1),
        transparent
    );
    filter: blur(22px);
    transform: rotate(22deg);
    animation: privacyBeamTravel 9s ease-in-out infinite alternate;
}

@keyframes privacyGlowPulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.92);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

@keyframes privacyRingRotation {
    to {
        transform: rotate(360deg);
    }
}

@keyframes privacyBeamTravel {
    from {
        transform:
            translateX(-240px)
            rotate(22deg);
    }

    to {
        transform:
            translateX(280px)
            rotate(22deg);
    }
}

/* =========================================================
   ESTRUTURA DO HERO
========================================================= */

.privacy-hero__container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(470px, 0.82fr);
    align-items: center;
    gap: clamp(4rem, 7vw, 8rem);
    min-height: calc(100svh - 16rem);
    overflow: visible;
}

.privacy-hero__content {
    position: relative;
    z-index: 4;
    min-width: 0;
}

.privacy-hero__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 950px;
    margin: 0;
    color: var(--privacy-white);
    line-height: 0.9;
}

.privacy-hero__title-main,
.privacy-hero__title-script,
.privacy-hero__title-editorial {
    display: block;
    max-width: 100%;
}

.privacy-hero__title-main {
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: clamp(3.5rem, 6.4vw, 7.4rem);
    font-weight: 600;
    letter-spacing: -0.07em;
}

.privacy-hero__title-script {
    position: relative;
    z-index: 2;
    margin: -0.06em 0 -0.02em 0.35em;
    padding: 0 0.13em;
    color: transparent;
    background: var(--privacy-gradient-text);
    background-size: 180% 180%;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--font-script, "Allura", cursive);
    font-size: clamp(5.2rem, 10vw, 11.4rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: 0;
    filter: drop-shadow(
        0 0 28px rgba(38, 164, 255, 0.24)
    );
    animation:
        privacyHeroScript 5s ease-in-out infinite,
        privacyGradientMove 7s linear infinite;
}

.privacy-hero__title-editorial {
    margin-left: 0.16em;
    font-family: var(
        --font-editorial,
        "Playfair Display",
        serif
    );
    font-size: clamp(3.2rem, 5.9vw, 6.7rem);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.055em;
}

@keyframes privacyHeroScript {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(-1.2deg);
    }

    50% {
        transform:
            translate3d(14px, -9px, 0)
            rotate(0.4deg);
    }
}

.privacy-hero__description {
    max-width: 680px;
    margin: 2.2rem 0 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: clamp(1rem, 1.25vw, 1.17rem);
    line-height: 1.85;
}

.privacy-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 2.2rem;
}

.privacy-hero__actions .button {
    min-height: 58px;
}

.privacy-hero__metadata {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 660px;
    margin-top: 3.1rem;
}

.privacy-hero__metadata > div {
    min-width: 0;
    padding: 0 1.4rem;
    border-left: 1px solid var(--privacy-border-light);
}

.privacy-hero__metadata > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.privacy-hero__metadata strong,
.privacy-hero__metadata span {
    display: block;
}

.privacy-hero__metadata strong {
    margin-bottom: 0.35rem;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.85rem;
}

.privacy-hero__metadata span {
    color: var(--privacy-dark-muted);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.7rem;
    line-height: 1.5;
}

/* =========================================================
   INDICADOR DE SCROLL
========================================================= */

.privacy-hero__scroll {
    position: absolute;
    z-index: 7;
    bottom: 2rem;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    color: var(--privacy-dark-muted);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.privacy-hero__scroll i {
    position: relative;
    display: block;
    width: 24px;
    height: 38px;
    border: 1px solid rgba(85, 136, 255, 0.38);
    border-radius: 999px;
}

.privacy-hero__scroll i::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: var(--privacy-blue);
    box-shadow: 0 0 12px var(--privacy-blue);
    transform: translateX(-50%);
    animation: privacyScrollDot 1.8s ease-in-out infinite;
}

@keyframes privacyScrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

/* =========================================================
   PARTE 2 — VISUAL 3D DO HERO
========================================================= */

.privacy-hero__visual {
    position: relative;
    z-index: 5;
    width: 100%;
    min-width: 0;
    padding: 4rem 4.5rem;
    overflow: visible;
    transform-style: preserve-3d;
    transition: transform 0.25s ease-out;
}

.privacy-browser {
    position: relative;
    width: min(100%, 720px);
    margin-inline: auto;
    padding: 1.5rem 0 2.8rem;
    perspective: 1500px;
    transform-style: preserve-3d;
}

/* =========================================================
   JANELA PRINCIPAL
========================================================= */

.privacy-browser__window {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 570px;
    padding: 1px;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        rgba(31, 198, 255, 0.5),
        rgba(71, 88, 255, 0.18) 42%,
        rgba(163, 67, 255, 0.5)
    );
    box-shadow:
        0 55px 110px rgba(0, 0, 0, 0.52),
        0 0 90px rgba(55, 77, 255, 0.14);
    transform:
        rotateX(1.5deg)
        rotateY(-3deg)
        rotateZ(-0.7deg);
    transform-style: preserve-3d;
    animation: privacyBrowserFloat 7s ease-in-out infinite;
}

.privacy-browser__window::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 8% -6% -8% 8%;
    border-radius: inherit;
    background: linear-gradient(
        130deg,
        rgba(24, 174, 255, 0.2),
        rgba(126, 51, 255, 0.19)
    );
    filter: blur(48px);
    opacity: 0.82;
}

.privacy-browser__window::after {
    content: "";
    position: absolute;
    z-index: 10;
    top: -1px;
    left: 7%;
    width: 27%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #28c7ff,
        #9651ff,
        transparent
    );
    box-shadow:
        0 0 14px #20bfff,
        0 0 35px rgba(141, 73, 255, 0.8);
    animation: privacyBrowserLed 5.5s ease-in-out infinite alternate;
}

@keyframes privacyBrowserFloat {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotateX(1.5deg)
            rotateY(-3deg)
            rotateZ(-0.7deg);
    }

    50% {
        transform:
            translate3d(0, -12px, 12px)
            rotateX(0deg)
            rotateY(-1deg)
            rotateZ(0.35deg);
    }
}

@keyframes privacyBrowserLed {
    from {
        left: 5%;
    }

    to {
        left: 68%;
    }
}

/* =========================================================
   BARRA DO NAVEGADOR
========================================================= */

.privacy-browser__toolbar {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    min-height: 58px;
    margin: 1px;
    padding: 0 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 27px 27px 0 0;
    background: linear-gradient(
        180deg,
        rgba(14, 29, 50, 0.99),
        rgba(10, 21, 39, 0.99)
    );
}

.privacy-browser__controls {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.privacy-browser__controls span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.privacy-browser__controls span:nth-child(1) {
    background: #ff6572;
    box-shadow: 0 0 8px rgba(255, 101, 114, 0.4);
}

.privacy-browser__controls span:nth-child(2) {
    background: #ffc258;
    box-shadow: 0 0 8px rgba(255, 194, 88, 0.4);
}

.privacy-browser__controls span:nth-child(3) {
    background: #4ce0a7;
    box-shadow: 0 0 8px rgba(76, 224, 167, 0.4);
}

.privacy-browser__address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    max-width: 390px;
    min-height: 32px;
    padding: 0 1rem;
    overflow: hidden;
    color: #758197;
    border: 1px solid rgba(255, 255, 255, 0.035);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.64rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.privacy-browser__address span {
    color: var(--privacy-green);
    font-size: 0.4rem;
}

.privacy-browser__options {
    color: #566276;
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
}

/* =========================================================
   CONTEÚDO DA JANELA
========================================================= */

.privacy-browser__page {
    position: relative;
    min-height: 510px;
    margin: 0 1px 1px;
    overflow: hidden;
    border-radius: 0 0 27px 27px;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(9, 127, 193, 0.12),
            transparent 35%
        ),
        radial-gradient(
            circle at 95% 88%,
            rgba(108, 43, 221, 0.17),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #071225,
            #060918 68%
        );
}

.privacy-browser__page::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -25%;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(108, 49, 245, 0.15),
        transparent 70%
    );
    filter: blur(10px);
    animation: privacyBrowserCloud 8s ease-in-out infinite alternate;
}

.privacy-browser__page::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -45%;
    width: 80%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(9, 164, 238, 0.11),
        transparent 68%
    );
    animation: privacyBrowserCloud 11s ease-in-out infinite alternate-reverse;
}

@keyframes privacyBrowserCloud {
    from {
        transform:
            translate3d(-4%, -3%, 0)
            scale(0.92);
    }

    to {
        transform:
            translate3d(7%, 6%, 0)
            scale(1.12);
    }
}

.privacy-browser__page-header {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.privacy-browser__page-header span,
.privacy-browser__page-header small {
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-weight: 700;
    letter-spacing: 0.18em;
}

.privacy-browser__page-header span {
    color: var(--privacy-blue);
    font-size: 0.58rem;
}

.privacy-browser__page-header small {
    color: var(--privacy-dark-muted);
    font-size: 0.53rem;
}

/* =========================================================
   ESCUDO E PROTEÇÃO
========================================================= */

.privacy-browser__security {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    padding: 2.2rem 1.7rem 1.8rem;
}

.privacy-browser__shield {
    position: relative;
    display: grid;
    place-items: center;
    width: 170px;
    height: 170px;
}

.privacy-browser__shield-core {
    position: relative;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 108px;
    height: 122px;
    color: var(--privacy-blue);
    border: 1px solid rgba(40, 175, 255, 0.4);
    border-radius: 32px;
    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(31, 174, 255, 0.18),
            transparent 60%
        ),
        linear-gradient(
            145deg,
            rgba(11, 41, 72, 0.92),
            rgba(17, 13, 55, 0.96)
        );
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.38),
        0 0 38px rgba(41, 136, 255, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: privacyShieldFloat 5s ease-in-out infinite;
}

.privacy-browser__shield-core::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(103, 80, 255, 0.17);
    border-radius: 25px;
}

.privacy-browser__shield-core svg {
    position: relative;
    z-index: 2;
    filter: drop-shadow(
        0 0 12px rgba(31, 190, 255, 0.5)
    );
}

@keyframes privacyShieldFloat {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(-1deg);
    }

    50% {
        transform:
            translate3d(0, -8px, 20px)
            rotate(1deg);
    }
}

.privacy-browser__orbit {
    position: absolute;
    border: 1px solid rgba(49, 151, 255, 0.2);
    border-radius: 50%;
}

.privacy-browser__orbit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -3px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--privacy-blue);
    box-shadow:
        0 0 7px var(--privacy-blue),
        0 0 15px rgba(37, 180, 255, 0.7);
}

.privacy-browser__orbit--one {
    inset: 5px;
    animation: privacyOrbit 11s linear infinite;
}

.privacy-browser__orbit--two {
    inset: 22px;
    border-color: rgba(146, 69, 255, 0.2);
    animation: privacyOrbit 8s linear infinite reverse;
}

.privacy-browser__orbit--two::before {
    background: var(--privacy-violet);
    box-shadow:
        0 0 7px var(--privacy-violet),
        0 0 15px rgba(144, 69, 255, 0.75);
}

.privacy-browser__orbit--three {
    inset: 40px;
    border-color: rgba(69, 234, 170, 0.16);
    animation: privacyOrbit 6s linear infinite;
}

.privacy-browser__orbit--three::before {
    background: var(--privacy-green);
    box-shadow:
        0 0 7px var(--privacy-green),
        0 0 15px rgba(69, 234, 170, 0.7);
}

@keyframes privacyOrbit {
    to {
        transform: rotate(360deg);
    }
}

.privacy-browser__security-copy {
    min-width: 0;
}

.privacy-browser__security-copy > span {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--privacy-green);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.privacy-browser__security-copy strong {
    display: block;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: clamp(1.5rem, 2.4vw, 2.3rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.privacy-browser__security-copy p {
    max-width: 310px;
    margin: 0.8rem 0 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.67rem;
    line-height: 1.65;
}

/* =========================================================
   CARTÕES DE DADOS INTERNOS
========================================================= */

.privacy-browser__data-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    padding: 0 1.7rem 1.8rem;
}

.privacy-browser__data-card {
    position: relative;
    min-width: 0;
    min-height: 105px;
    padding: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(68, 112, 211, 0.2);
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        rgba(8, 20, 40, 0.92),
        rgba(7, 9, 25, 0.97)
    );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 15px 30px rgba(0, 0, 0, 0.17);
    transition:
        border-color 0.35s ease,
        transform 0.4s ease;
}

.privacy-browser__data-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 20%,
        rgba(30, 184, 255, 0.08),
        transparent 75%
    );
    transform: translateX(-130%);
    animation: privacyDataSweep 6s ease-in-out infinite;
}

.privacy-browser__data-card:nth-child(2)::before {
    animation-delay: -2s;
}

.privacy-browser__data-card:nth-child(3)::before {
    animation-delay: -4s;
}

.privacy-browser__data-card:hover {
    border-color: rgba(43, 181, 255, 0.45);
    transform: translateY(-5px);
}

@keyframes privacyDataSweep {
    0%,
    55% {
        transform: translateX(-130%);
    }

    85%,
    100% {
        transform: translateX(130%);
    }
}

.privacy-browser__data-card > span,
.privacy-browser__data-card strong,
.privacy-browser__data-card small {
    position: relative;
    z-index: 2;
    display: block;
}

.privacy-browser__data-card > span {
    margin-bottom: 1.3rem;
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.57rem;
    font-weight: 700;
}

.privacy-browser__data-card strong {
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.71rem;
    font-weight: 600;
}

.privacy-browser__data-card small {
    margin-top: 0.3rem;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.54rem;
    line-height: 1.45;
}

/* =========================================================
   CARTÕES FLUTUANTES
========================================================= */

.privacy-browser__floating {
    position: absolute;
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 165px;
    max-width: 205px;
    padding: 1rem;
    overflow: hidden;
    color: var(--privacy-white);
    border: 1px solid rgba(66, 119, 231, 0.39);
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(8, 20, 40, 0.98),
        rgba(8, 9, 27, 0.99)
    );
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.43),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transform-style: preserve-3d;
}

.privacy-browser__floating::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 15%,
        rgba(38, 183, 255, 0.09),
        transparent 72%
    );
    transform: translateX(-130%);
    animation: privacyFloatingSweep 6s ease-in-out infinite;
}

@keyframes privacyFloatingSweep {
    0%,
    50% {
        transform: translateX(-130%);
    }

    80%,
    100% {
        transform: translateX(130%);
    }
}

.privacy-browser__floating strong,
.privacy-browser__floating small {
    position: relative;
    z-index: 2;
    display: block;
}

.privacy-browser__floating strong {
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.83rem;
    font-weight: 600;
}

.privacy-browser__floating small {
    margin-top: 0.35rem;
    color: var(--privacy-dark-muted);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.55rem;
    line-height: 1.4;
}

.privacy-browser__floating--protected {
    top: 78px;
    left: -52px;
    animation: privacyFloatingOne 5.5s ease-in-out infinite;
}

.privacy-browser__floating--rights {
    top: 47%;
    right: -50px;
    display: block;
    animation: privacyFloatingTwo 6.5s ease-in-out infinite;
}

.privacy-browser__floating--rights strong {
    color: transparent;
    background: var(--privacy-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.15rem;
}

.privacy-browser__floating--form {
    bottom: 0;
    left: -28px;
    animation: privacyFloatingThree 7s ease-in-out infinite;
}

.privacy-browser__floating--form > span {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    color: #ffffff;
    border-radius: 11px;
    background: var(--privacy-gradient);
    box-shadow: 0 10px 24px rgba(47, 103, 255, 0.27);
}

.privacy-browser__floating-dot {
    position: relative;
    z-index: 2;
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--privacy-green);
    box-shadow:
        0 0 0 5px rgba(66, 236, 165, 0.08),
        0 0 16px rgba(66, 236, 165, 0.8);
}

@keyframes privacyFloatingOne {
    0%,
    100% {
        transform:
            translate3d(0, 0, 55px)
            rotate(-1deg);
    }

    50% {
        transform:
            translate3d(9px, -10px, 75px)
            rotate(1deg);
    }
}

@keyframes privacyFloatingTwo {
    0%,
    100% {
        transform:
            translate3d(0, 0, 60px)
            rotate(1deg);
    }

    50% {
        transform:
            translate3d(-9px, 12px, 80px)
            rotate(-1deg);
    }
}

@keyframes privacyFloatingThree {
    0%,
    100% {
        transform:
            translate3d(0, 0, 48px)
            rotate(0.5deg);
    }

    50% {
        transform:
            translate3d(12px, -8px, 70px)
            rotate(-1deg);
    }
}

/* =========================================================
   LUZ INFERIOR
========================================================= */

.privacy-browser__floor-light {
    position: absolute;
    z-index: -1;
    right: 4%;
    bottom: -8%;
    left: 4%;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse,
        rgba(51, 124, 255, 0.2),
        rgba(119, 50, 255, 0.12) 40%,
        transparent 72%
    );
    filter: blur(25px);
    transform: rotateX(70deg);
    animation: privacyFloorLight 6s ease-in-out infinite;
}

@keyframes privacyFloorLight {
    50% {
        opacity: 0.65;
        transform:
            rotateX(70deg)
            scaleX(1.12);
    }
}

/* =========================================================
   PARTE 3 — ÁREA DO DOCUMENTO
========================================================= */

.privacy-content {
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(0, 169, 255, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 93% 40%,
            rgba(122, 48, 255, 0.075),
            transparent 30%
        );
}

.privacy-content::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 5%;
    left: -20%;
    width: 55%;
    aspect-ratio: 1;
    border: 1px solid rgba(48, 149, 255, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.privacy-content::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -18%;
    bottom: 12%;
    width: 50%;
    aspect-ratio: 1;
    border: 1px solid rgba(141, 66, 255, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.privacy-content__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(230px, 0.28fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 8rem);
}

/* =========================================================
   NAVEGAÇÃO LATERAL
========================================================= */

.privacy-sidebar {
    position: relative;
    min-width: 0;
}

.privacy-sidebar__inner {
    position: sticky;
    top: 135px;
    padding: 1.3rem;
    overflow: hidden;
    border: 1px solid var(--privacy-border);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(8, 20, 40, 0.87),
            rgba(6, 9, 24, 0.94)
        );
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.privacy-sidebar__inner::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(92, 58, 255, 0.16),
        transparent 70%
    );
    pointer-events: none;
}

.privacy-sidebar__label {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0.3rem 0.5rem 1.1rem;
    color: var(--privacy-dark-muted);
    border-bottom: 1px solid var(--privacy-border-light);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.privacy-sidebar__navigation {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 0.2rem;
    margin-top: 0.8rem;
}

.privacy-sidebar__navigation a {
    position: relative;
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    align-items: center;
    gap: 0.5rem;
    min-height: 40px;
    padding: 0.55rem 0.6rem;
    color: var(--privacy-muted);
    border: 1px solid transparent;
    border-radius: 10px;
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.71rem;
    line-height: 1.35;
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.privacy-sidebar__navigation a span {
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.55rem;
    font-weight: 700;
}

.privacy-sidebar__navigation a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.7rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--privacy-blue);
    box-shadow: 0 0 10px var(--privacy-blue);
    opacity: 0;
    transform: translateY(-50%) scale(0);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.privacy-sidebar__navigation a:hover,
.privacy-sidebar__navigation a.is-active {
    color: var(--privacy-white);
    border-color: rgba(60, 133, 255, 0.22);
    background: rgba(18, 54, 91, 0.27);
    transform: translateX(3px);
}

.privacy-sidebar__navigation a.is-active {
    padding-right: 1.7rem;
}

.privacy-sidebar__navigation a.is-active::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.privacy-sidebar__help {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    padding: 1rem 0.6rem 0.3rem;
    border-top: 1px solid var(--privacy-border-light);
}

.privacy-sidebar__help > span {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--privacy-dark-muted);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.59rem;
}

.privacy-sidebar__help a {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.6rem;
    overflow-wrap: anywhere;
    color: var(--privacy-white);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.65rem;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-sidebar__help a:hover {
    color: var(--privacy-blue);
}

.privacy-sidebar__help i {
    flex: 0 0 auto;
    color: var(--privacy-blue);
    font-style: normal;
}

/* =========================================================
   DOCUMENTO
========================================================= */

.privacy-document {
    min-width: 0;
    max-width: 1080px;
}

.privacy-document__header {
    position: relative;
    padding-bottom: clamp(4rem, 7vw, 6.5rem);
}

.privacy-document__introduction {
    max-width: 790px;
    margin: 2.4rem 0 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.9;
}

.privacy-document__notice {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    max-width: 820px;
    margin-top: 2rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(47, 156, 255, 0.25);
    border-radius: 15px;
    background:
        linear-gradient(
            110deg,
            rgba(10, 54, 88, 0.3),
            rgba(31, 19, 83, 0.2)
        );
}

.privacy-document__notice-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--privacy-blue);
    border: 1px solid rgba(44, 173, 255, 0.35);
    border-radius: 50%;
    background: rgba(7, 31, 57, 0.66);
    font-family: var(--font-editorial, "Playfair Display", serif);
    font-size: 1rem;
    font-style: italic;
}

.privacy-document__notice p {
    margin: 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.78rem;
    line-height: 1.7;
}

/* =========================================================
   ARTIGOS DA POLÍTICA
========================================================= */

.privacy-article {
    position: relative;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
    min-width: 0;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    border-top: 1px solid var(--privacy-border-light);
    scroll-margin-top: 130px;
}

.privacy-article::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--privacy-gradient);
    box-shadow: 0 0 14px rgba(34, 180, 255, 0.65);
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.privacy-article.is-active::before,
.privacy-article:hover::before {
    width: min(100%, 410px);
}

.privacy-article__number {
    position: sticky;
    top: 150px;
    align-self: start;
    color: transparent;
    background: var(--privacy-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.06em;
}

.privacy-article__content {
    min-width: 0;
}

.privacy-article__category {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.privacy-article h3 {
    max-width: 820px;
    margin: 0;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: clamp(2rem, 3.5vw, 3.55rem);
    font-weight: 580;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.privacy-article h4 {
    margin: 3rem 0 1rem;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.privacy-article__content > p {
    max-width: 850px;
    margin: 1.4rem 0 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.94rem;
    line-height: 1.9;
}

.privacy-article__content > p a {
    color: var(--privacy-blue);
    text-decoration: underline;
    text-decoration-color: rgba(27, 197, 255, 0.35);
    text-underline-offset: 4px;
}

.privacy-article__content > p a:hover {
    color: #ffffff;
}

/* =========================================================
   CARTÃO DE INFORMAÇÕES
========================================================= */

.privacy-information-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    max-width: 850px;
    margin-top: 2rem;
    overflow: hidden;
    border: 1px solid var(--privacy-border);
    border-radius: 20px;
    background: var(--privacy-border);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.privacy-information-card > div {
    min-width: 0;
    padding: 1.4rem;
    background:
        linear-gradient(
            145deg,
            rgba(9, 21, 42, 0.96),
            rgba(6, 10, 25, 0.98)
        );
    transition: background 0.35s ease;
}

.privacy-information-card > div:hover {
    background:
        linear-gradient(
            145deg,
            rgba(11, 38, 67, 0.98),
            rgba(13, 12, 43, 0.98)
        );
}

.privacy-information-card span,
.privacy-information-card strong,
.privacy-information-card a {
    display: block;
}

.privacy-information-card span {
    margin-bottom: 0.5rem;
    color: var(--privacy-dark-muted);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.61rem;
}

.privacy-information-card strong,
.privacy-information-card a {
    overflow-wrap: anywhere;
    color: var(--privacy-white);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.privacy-information-card a:hover {
    color: var(--privacy-blue);
}

/* =========================================================
   CARTÕES DOS DADOS RECOLHIDOS
========================================================= */

.privacy-data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin-top: 2.2rem;
}

.privacy-data-card {
    position: relative;
    display: grid;
    grid-template-columns: 47px minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    min-width: 0;
    min-height: 145px;
    padding: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--privacy-border);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(8, 20, 40, 0.84),
            rgba(6, 9, 24, 0.94)
        );
    transition:
        border-color 0.35s ease,
        transform 0.45s ease,
        box-shadow 0.4s ease;
}

.privacy-data-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(96, 54, 255, 0.14),
        transparent 70%
    );
    transition: transform 0.55s ease;
}

.privacy-data-card:hover {
    border-color: rgba(49, 167, 255, 0.46);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.25),
        0 0 26px rgba(45, 112, 255, 0.07);
    transform: translateY(-7px);
}

.privacy-data-card:hover::before {
    transform: scale(1.3) translate(-8%, 8%);
}

.privacy-data-card__icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    color: var(--privacy-blue);
    border: 1px solid rgba(43, 165, 255, 0.32);
    border-radius: 13px;
    background: rgba(10, 44, 75, 0.63);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.61rem;
    font-weight: 700;
}

.privacy-data-card > div {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.privacy-data-card strong {
    display: block;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.94rem;
    font-weight: 600;
}

.privacy-data-card p {
    margin: 0.55rem 0 0;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.76rem;
    line-height: 1.65;
}

/* =========================================================
   DESTAQUES
========================================================= */

.privacy-article__highlight {
    position: relative;
    max-width: 850px;
    margin-top: 2rem;
    padding: 1.2rem 1.3rem 1.2rem 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(44, 162, 255, 0.25);
    border-radius: 15px;
    background:
        linear-gradient(
            110deg,
            rgba(9, 53, 88, 0.27),
            rgba(31, 18, 79, 0.19)
        );
}

.privacy-article__highlight::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 2px;
    background: var(--privacy-gradient);
    box-shadow: 0 0 14px var(--privacy-blue);
}

.privacy-article__highlight strong {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.83rem;
}

.privacy-article__highlight p {
    margin: 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.76rem;
    line-height: 1.7;
}

/* =========================================================
   LISTA DE FINALIDADES
========================================================= */

.privacy-purpose-list {
    display: grid;
    gap: 0;
    max-width: 900px;
    margin: 2.2rem 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--privacy-border-light);
}

.privacy-purpose-list li {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    align-items: start;
    gap: 1.2rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--privacy-border-light);
    transition:
        padding 0.35s ease,
        background 0.35s ease;
}

.privacy-purpose-list li:hover {
    padding-right: 1rem;
    padding-left: 1rem;
    background: linear-gradient(
        90deg,
        rgba(10, 54, 89, 0.17),
        rgba(25, 16, 67, 0.1),
        transparent
    );
}

.privacy-purpose-list li > span {
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.privacy-purpose-list strong {
    display: block;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
}

.privacy-purpose-list p {
    margin: 0.5rem 0 0;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.76rem;
    line-height: 1.65;
}

/* =========================================================
   PARTE 4 — FUNDAMENTOS LEGAIS
========================================================= */

.privacy-legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 920px;
    margin-top: 2.2rem;
}

.privacy-legal-card {
    position: relative;
    min-width: 0;
    min-height: 190px;
    padding: 1.35rem;
    overflow: hidden;
    border: 1px solid var(--privacy-border);
    border-radius: 19px;
    background: linear-gradient(
        145deg,
        rgba(8, 20, 40, 0.86),
        rgba(6, 9, 24, 0.95)
    );
    transition:
        border-color 0.35s ease,
        transform 0.45s ease,
        box-shadow 0.4s ease;
}

.privacy-legal-card::before {
    content: "";
    position: absolute;
    top: -85px;
    right: -85px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(104, 54, 255, 0.15),
        transparent 70%
    );
    transition: transform 0.6s ease;
}

.privacy-legal-card::after {
    content: "";
    position: absolute;
    right: 1.3rem;
    bottom: 1.3rem;
    width: 26px;
    height: 1px;
    background: var(--privacy-gradient);
    box-shadow: 0 0 10px rgba(36, 176, 255, 0.65);
    transition: width 0.4s ease;
}

.privacy-legal-card:hover {
    border-color: rgba(45, 169, 255, 0.45);
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.27),
        0 0 30px rgba(45, 106, 255, 0.07);
    transform: translateY(-7px);
}

.privacy-legal-card:hover::before {
    transform: scale(1.3) translate(-10%, 10%);
}

.privacy-legal-card:hover::after {
    width: 52px;
}

.privacy-legal-card > span,
.privacy-legal-card strong,
.privacy-legal-card p {
    position: relative;
    z-index: 2;
}

.privacy-legal-card > span {
    display: block;
    margin-bottom: 2.7rem;
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.privacy-legal-card strong {
    display: block;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 1rem;
    font-weight: 600;
}

.privacy-legal-card p {
    margin: 0.65rem 0 0;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.75rem;
    line-height: 1.65;
}

/* Último cartão ocupa a largura inteira */
.privacy-legal-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: 165px;
}

/* =========================================================
   FORNECEDORES
========================================================= */

.privacy-provider-list {
    display: grid;
    gap: 1rem;
    max-width: 920px;
    margin-top: 2.2rem;
}

.privacy-provider {
    position: relative;
    padding: clamp(1.25rem, 2.5vw, 1.8rem);
    overflow: hidden;
    border: 1px solid var(--privacy-border);
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(108, 48, 245, 0.1),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(8, 20, 40, 0.88),
            rgba(6, 9, 24, 0.96)
        );
    transition:
        border-color 0.35s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.privacy-provider::after {
    content: "";
    position: absolute;
    top: -80%;
    left: -25%;
    width: 30%;
    height: 250%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(34, 184, 255, 0.065),
        transparent
    );
    transform: rotate(18deg);
    transition: transform 0.9s ease;
}

.privacy-provider:hover {
    border-color: rgba(49, 166, 255, 0.43);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.27),
        0 0 35px rgba(50, 104, 255, 0.07);
    transform: translateY(-6px);
}

.privacy-provider:hover::after {
    transform:
        translateX(520%)
        rotate(18deg);
}

.privacy-provider__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.privacy-provider__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.privacy-provider__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    color: transparent;
    border: 1px solid rgba(51, 151, 255, 0.32);
    border-radius: 14px;
    background:
        var(--privacy-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: inset 0 0 22px rgba(37, 139, 255, 0.06);
}

.privacy-provider__identity strong,
.privacy-provider__identity small {
    display: block;
}

.privacy-provider__identity strong {
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 1rem;
    font-weight: 600;
}

.privacy-provider__identity small {
    margin-top: 0.35rem;
    color: var(--privacy-dark-muted);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.64rem;
}

.privacy-provider__top > a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex: 0 0 auto;
    padding: 0.65rem 0.8rem;
    color: var(--privacy-blue);
    border: 1px solid rgba(44, 163, 255, 0.25);
    border-radius: 11px;
    background: rgba(7, 35, 62, 0.55);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.63rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.privacy-provider__top > a:hover {
    color: #ffffff;
    border-color: transparent;
    background: var(--privacy-gradient);
    transform: translateY(-3px);
}

.privacy-provider > p {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 1.2rem 0 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.78rem;
    line-height: 1.75;
}

.privacy-provider__tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.1rem;
}

.privacy-provider__tags span {
    padding: 0.42rem 0.65rem;
    color: var(--privacy-dark-muted);
    border: 1px solid rgba(69, 106, 190, 0.17);
    border-radius: 999px;
    background: rgba(5, 11, 25, 0.55);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.57rem;
}

/* =========================================================
   CONSERVAÇÃO — LINHA CRONOLÓGICA
========================================================= */

.privacy-retention {
    position: relative;
    display: grid;
    max-width: 900px;
    margin-top: 2.3rem;
}

.privacy-retention::before {
    content: "";
    position: absolute;
    top: 29px;
    bottom: 29px;
    left: 24px;
    width: 1px;
    background: linear-gradient(
        180deg,
        var(--privacy-blue),
        var(--privacy-violet),
        rgba(136, 72, 255, 0.15)
    );
    box-shadow: 0 0 10px rgba(39, 167, 255, 0.35);
}

.privacy-retention__item {
    position: relative;
    display: grid;
    grid-template-columns: 49px minmax(0, 1fr);
    align-items: start;
    gap: 1.2rem;
    min-width: 0;
    padding: 0 0 2rem;
}

.privacy-retention__item:last-child {
    padding-bottom: 0;
}

.privacy-retention__number {
    position: relative;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 49px;
    height: 49px;
    color: var(--privacy-blue);
    border: 1px solid rgba(42, 166, 255, 0.35);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(10, 43, 74, 0.98),
            rgba(10, 12, 36, 0.98)
        );
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.25),
        0 0 18px rgba(36, 141, 255, 0.07);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.62rem;
    font-weight: 700;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.4s ease;
}

.privacy-retention__item:hover
.privacy-retention__number {
    color: #ffffff;
    border-color: transparent;
    background: var(--privacy-gradient);
    transform: rotate(-6deg) scale(1.07);
}

.privacy-retention__item > div:last-child {
    min-width: 0;
    padding: 1rem 1.2rem;
    border: 1px solid var(--privacy-border);
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        rgba(8, 20, 40, 0.77),
        rgba(6, 9, 24, 0.9)
    );
    transition:
        border-color 0.35s ease,
        transform 0.4s ease;
}

.privacy-retention__item:hover
> div:last-child {
    border-color: rgba(45, 162, 255, 0.4);
    transform: translateX(7px);
}

.privacy-retention strong {
    display: block;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.91rem;
    font-weight: 600;
}

.privacy-retention p {
    margin: 0.5rem 0 0;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.75rem;
    line-height: 1.65;
}

.privacy-retention__line {
    display: none;
}

/* =========================================================
   PAINEL DE COOKIES
========================================================= */

.privacy-cookie-panel {
    position: relative;
    display: grid;
    grid-template-columns: 165px minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin-top: 2.2rem;
    padding: 1.6rem;
    overflow: hidden;
    border: 1px solid var(--privacy-border);
    border-radius: 21px;
    background:
        radial-gradient(
            circle at 0 50%,
            rgba(11, 142, 211, 0.12),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            rgba(8, 20, 40, 0.9),
            rgba(7, 9, 25, 0.97)
        );
}

.privacy-cookie-panel::after {
    content: "";
    position: absolute;
    right: -15%;
    bottom: -90%;
    width: 55%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(114, 46, 236, 0.16),
        transparent 70%
    );
}

.privacy-cookie-panel__visual {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    min-height: 150px;
}

.privacy-cookie-panel__circle {
    position: relative;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    border: 1px solid rgba(42, 166, 255, 0.28);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(27, 145, 255, 0.13),
            rgba(12, 18, 45, 0.4)
        );
    animation: privacyCookieFloat 5s ease-in-out infinite;
}

.privacy-cookie-panel__circle::before,
.privacy-cookie-panel__circle::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(85, 91, 255, 0.15);
    border-radius: 50%;
    animation: privacyCookieRing 5s ease-in-out infinite;
}

.privacy-cookie-panel__circle::before {
    inset: -13px;
}

.privacy-cookie-panel__circle::after {
    inset: -27px;
    animation-delay: -2.5s;
}

.privacy-cookie-panel__circle > span {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--privacy-gradient);
    box-shadow:
        0 0 12px var(--privacy-blue),
        0 0 27px rgba(129, 63, 255, 0.65);
}

.privacy-cookie-panel__circle > span:nth-child(1) {
    top: 30%;
    left: 30%;
}

.privacy-cookie-panel__circle > span:nth-child(2) {
    top: 53%;
    right: 27%;
    width: 9px;
    height: 9px;
}

.privacy-cookie-panel__circle > span:nth-child(3) {
    right: 46%;
    bottom: 25%;
    width: 7px;
    height: 7px;
}

@keyframes privacyCookieFloat {
    50% {
        transform:
            translateY(-7px)
            rotate(5deg);
    }
}

@keyframes privacyCookieRing {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.94);
    }

    50% {
        opacity: 0.75;
        transform: scale(1.06);
    }
}

.privacy-cookie-panel__content {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.privacy-cookie-panel__label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--privacy-green);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.privacy-cookie-panel__content strong {
    display: block;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.privacy-cookie-panel__content p {
    margin: 0.7rem 0 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.76rem;
    line-height: 1.7;
}

/* =========================================================
   CARTÕES DE COOKIES
========================================================= */

.privacy-cookie-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    max-width: 900px;
    margin-top: 1rem;
}

.privacy-cookie-card {
    position: relative;
    min-width: 0;
    min-height: 180px;
    padding: 1.2rem;
    overflow: hidden;
    border: 1px solid var(--privacy-border);
    border-radius: 17px;
    background: linear-gradient(
        145deg,
        rgba(8, 20, 40, 0.82),
        rgba(6, 9, 24, 0.94)
    );
    transition:
        border-color 0.35s ease,
        transform 0.4s ease;
}

.privacy-cookie-card:hover {
    border-color: rgba(47, 166, 255, 0.43);
    transform: translateY(-6px);
}

.privacy-cookie-card > span {
    display: block;
    margin-bottom: 2.3rem;
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.6rem;
    font-weight: 700;
}

.privacy-cookie-card strong {
    display: block;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
}

.privacy-cookie-card p {
    margin: 0.55rem 0 0;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.7rem;
    line-height: 1.6;
}

/* =========================================================
   PARTE 5 — DIREITOS RGPD
========================================================= */

.privacy-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 920px;
    margin-top: 2.2rem;
}

.privacy-right-card {
    position: relative;
    min-width: 0;
    min-height: 165px;
    padding: 1.3rem;
    overflow: hidden;
    border: 1px solid var(--privacy-border);
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(8, 20, 40, 0.85),
        rgba(6, 9, 24, 0.95)
    );
    transition:
        border-color 0.35s ease,
        transform 0.45s ease,
        box-shadow 0.4s ease;
}

.privacy-right-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(99, 55, 255, 0.14),
        transparent 70%
    );
    transition: transform 0.55s ease;
}

.privacy-right-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 12%;
    width: 76%;
    height: 1px;
    background: var(--privacy-gradient);
    box-shadow: 0 0 10px rgba(33, 178, 255, 0.6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.45s ease;
}

.privacy-right-card:hover {
    border-color: rgba(47, 169, 255, 0.45);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.25),
        0 0 28px rgba(48, 106, 255, 0.07);
    transform: translateY(-7px);
}

.privacy-right-card:hover::before {
    transform: scale(1.3) translate(-10%, 10%);
}

.privacy-right-card:hover::after {
    transform: scaleX(1);
}

.privacy-right-card__number,
.privacy-right-card strong,
.privacy-right-card p {
    position: relative;
    z-index: 2;
}

.privacy-right-card__number {
    display: block;
    margin-bottom: 2.1rem;
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.privacy-right-card strong {
    display: block;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.96rem;
    font-weight: 600;
}

.privacy-right-card p {
    margin: 0.55rem 0 0;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.73rem;
    line-height: 1.65;
}

/* =========================================================
   PEDIDO DE EXERCÍCIO DE DIREITOS
========================================================= */

.privacy-request-card {
    position: relative;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    max-width: 900px;
    margin-top: 2rem;
    padding: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(48, 160, 255, 0.3);
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 0 50%,
            rgba(12, 145, 218, 0.13),
            transparent 32%
        ),
        linear-gradient(
            110deg,
            rgba(9, 36, 65, 0.86),
            rgba(22, 13, 61, 0.86)
        );
}

.privacy-request-card::before {
    content: "";
    position: absolute;
    top: -80%;
    left: -25%;
    width: 28%;
    height: 250%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(41, 185, 255, 0.08),
        transparent
    );
    transform: rotate(18deg);
    animation: privacyRequestLight 7s ease-in-out infinite;
}

@keyframes privacyRequestLight {
    0%,
    35% {
        transform:
            translateX(-120%)
            rotate(18deg);
    }

    80%,
    100% {
        transform:
            translateX(520%)
            rotate(18deg);
    }
}

.privacy-request-card__icon {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--privacy-blue);
    border: 1px solid rgba(44, 165, 255, 0.33);
    border-radius: 14px;
    background: rgba(7, 39, 68, 0.66);
    font-size: 1rem;
}

.privacy-request-card > div:nth-child(2) {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.privacy-request-card span,
.privacy-request-card strong {
    display: block;
}

.privacy-request-card > div:nth-child(2) span {
    margin-bottom: 0.35rem;
    color: var(--privacy-dark-muted);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.61rem;
}

.privacy-request-card strong {
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.45;
}

.privacy-request-card > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 44px;
    padding: 0.7rem 0.9rem;
    color: #ffffff;
    border: 1px solid rgba(52, 149, 255, 0.35);
    border-radius: 12px;
    background: rgba(11, 54, 94, 0.65);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.65rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.privacy-request-card > a:hover {
    border-color: transparent;
    background: var(--privacy-gradient);
    box-shadow: 0 12px 28px rgba(47, 102, 255, 0.23);
    transform: translateY(-3px);
}

/* =========================================================
   AUTORIDADE DE CONTROLO
========================================================= */

.privacy-authority-card {
    position: relative;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 1rem;
    max-width: 900px;
    margin-top: 1.5rem;
    padding: 1.2rem;
    overflow: hidden;
    color: var(--privacy-white);
    border: 1px solid var(--privacy-border);
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(8, 20, 40, 0.88),
        rgba(7, 9, 25, 0.96)
    );
    text-decoration: none;
    transition:
        border-color 0.35s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.privacy-authority-card:hover {
    border-color: rgba(43, 173, 255, 0.47);
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.27),
        0 0 30px rgba(48, 107, 255, 0.08);
    transform: translateY(-6px);
}

.privacy-authority-card__symbol {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: transparent;
    border: 1px solid rgba(41, 169, 255, 0.31);
    border-radius: 15px;
    background: var(--privacy-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.privacy-authority-card strong,
.privacy-authority-card span {
    display: block;
}

.privacy-authority-card strong {
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.9rem;
    font-weight: 600;
}

.privacy-authority-card span {
    margin-top: 0.35rem;
    color: var(--privacy-dark-muted);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.65rem;
}

.privacy-authority-card i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    justify-self: end;
    color: var(--privacy-blue);
    border: 1px solid rgba(59, 129, 230, 0.23);
    border-radius: 50%;
    font-style: normal;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.4s ease;
}

.privacy-authority-card:hover i {
    color: #ffffff;
    background: var(--privacy-gradient);
    transform: rotate(45deg);
}

/* =========================================================
   SEGURANÇA
========================================================= */

.privacy-security-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 920px;
    margin-top: 2.2rem;
}

.privacy-security-card {
    position: relative;
    min-width: 0;
    min-height: 175px;
    padding: 1.3rem;
    overflow: hidden;
    border: 1px solid var(--privacy-border);
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(8, 20, 40, 0.85),
        rgba(6, 9, 24, 0.95)
    );
    transition:
        border-color 0.35s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.privacy-security-card:hover {
    border-color: rgba(48, 168, 255, 0.46);
    box-shadow:
        0 24px 52px rgba(0, 0, 0, 0.25),
        0 0 28px rgba(44, 108, 255, 0.07);
    transform: translateY(-7px);
}

.privacy-security-card__icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    margin-bottom: 2.1rem;
    color: var(--privacy-blue);
    border: 1px solid rgba(43, 167, 255, 0.31);
    border-radius: 13px;
    background: rgba(8, 41, 71, 0.65);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.61rem;
    font-weight: 700;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.4s ease;
}

.privacy-security-card:hover
.privacy-security-card__icon {
    color: #ffffff;
    border-color: transparent;
    background: var(--privacy-gradient);
    transform: rotate(-6deg) scale(1.06);
}

.privacy-security-card strong {
    display: block;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.94rem;
    font-weight: 600;
}

.privacy-security-card p {
    margin: 0.55rem 0 0;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.72rem;
    line-height: 1.65;
}

/* =========================================================
   AVISO DE SEGURANÇA
========================================================= */

.privacy-security-notice {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    align-items: center;
    gap: 1.7rem;
    max-width: 920px;
    margin-top: 1rem;
    padding: 1.4rem;
    border: 1px solid rgba(142, 77, 255, 0.25);
    border-radius: 19px;
    background:
        radial-gradient(
            circle at 0 50%,
            rgba(101, 55, 218, 0.13),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(10, 17, 40, 0.9),
            rgba(10, 8, 28, 0.96)
        );
}

.privacy-security-notice__animation {
    position: relative;
    display: grid;
    place-items: center;
    width: 105px;
    height: 105px;
}

.privacy-security-notice__animation span {
    position: absolute;
    border: 1px solid rgba(77, 134, 255, 0.2);
    border-radius: 50%;
    animation: privacySecurityWave 3.3s ease-out infinite;
}

.privacy-security-notice__animation span:nth-child(1) {
    width: 24px;
    height: 24px;
    border-color: rgba(40, 189, 255, 0.5);
}

.privacy-security-notice__animation span:nth-child(2) {
    width: 58px;
    height: 58px;
    animation-delay: -1.1s;
}

.privacy-security-notice__animation span:nth-child(3) {
    width: 94px;
    height: 94px;
    animation-delay: -2.2s;
}

.privacy-security-notice__animation::after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--privacy-green);
    box-shadow:
        0 0 11px var(--privacy-green),
        0 0 28px rgba(68, 236, 168, 0.7);
}

@keyframes privacySecurityWave {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    35% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: scale(1.15);
    }
}

.privacy-security-notice strong {
    display: block;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 0.96rem;
    font-weight: 600;
}

.privacy-security-notice p {
    margin: 0.6rem 0 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.75rem;
    line-height: 1.7;
}

/* =========================================================
   CONTACTOS DE PRIVACIDADE
========================================================= */

.privacy-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 920px;
    margin-top: 2.2rem;
}

.privacy-contact-card {
    position: relative;
    min-width: 0;
    min-height: 205px;
    padding: 1.4rem;
    overflow: hidden;
    color: var(--privacy-white);
    border: 1px solid var(--privacy-border);
    border-radius: 19px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(107, 48, 238, 0.13),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(8, 20, 40, 0.88),
            rgba(6, 9, 24, 0.96)
        );
    text-decoration: none;
    transition:
        border-color 0.35s ease,
        transform 0.45s ease,
        box-shadow 0.4s ease;
}

.privacy-contact-card:hover {
    border-color: rgba(44, 172, 255, 0.48);
    box-shadow:
        0 26px 58px rgba(0, 0, 0, 0.28),
        0 0 34px rgba(48, 104, 255, 0.08);
    transform: translateY(-8px);
}

.privacy-contact-card__label {
    display: block;
    margin-bottom: 3.3rem;
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.privacy-contact-card strong {
    display: block;
    overflow-wrap: anywhere;
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    font-weight: 600;
}

.privacy-contact-card p {
    max-width: 330px;
    margin: 0.65rem 0 0;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.72rem;
    line-height: 1.65;
}

.privacy-contact-card i {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--privacy-blue);
    border: 1px solid rgba(59, 129, 230, 0.24);
    border-radius: 50%;
    font-style: normal;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.4s ease;
}

.privacy-contact-card:hover i {
    color: #ffffff;
    background: var(--privacy-gradient);
    transform: rotate(45deg);
}

/* =========================================================
   VERSÃO DA POLÍTICA
========================================================= */

.privacy-version {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
    max-width: 920px;
    margin-top: 2rem;
    padding: 1rem 1.2rem;
    border: 1px solid var(--privacy-border);
    border-radius: 15px;
    background: rgba(7, 15, 31, 0.75);
}

.privacy-version span {
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.privacy-version strong {
    color: transparent;
    background: var(--privacy-gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 1rem;
    font-weight: 600;
}

.privacy-version p {
    margin: 0;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.67rem;
    line-height: 1.5;
}

/* =========================================================
   PARTE 6 — CHAMADA FINAL
========================================================= */

.privacy-final-cta {
    display: grid;
    place-items: center;
    min-height: 720px;
    overflow: hidden;
    isolation: isolate;
}

.privacy-final-cta::before {
    content: "";
    position: absolute;
    z-index: -4;
    inset: 6% 3%;
    border: 1px solid rgba(69, 113, 225, 0.15);
    border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%;
    animation: privacyFinalBorder 15s ease-in-out infinite alternate;
}

.privacy-final-cta::after {
    content: "";
    position: absolute;
    z-index: -5;
    bottom: -58%;
    left: 50%;
    width: min(1300px, 100vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(42, 128, 255, 0.23),
        rgba(105, 52, 255, 0.13) 35%,
        transparent 69%
    );
    filter: blur(18px);
    transform: translateX(-50%);
}

@keyframes privacyFinalBorder {
    from {
        border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%;
        transform:
            rotate(-1deg)
            scale(0.98);
    }

    to {
        border-radius: 55% 45% 56% 44% / 46% 54% 45% 55%;
        transform:
            rotate(1deg)
            scale(1.02);
    }
}

.privacy-final-cta__beam {
    position: absolute;
    z-index: -3;
    top: -50%;
    left: 43%;
    width: 220px;
    height: 190%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(35, 187, 255, 0.13),
        rgba(137, 61, 255, 0.15),
        transparent
    );
    filter: blur(28px);
    transform: rotate(24deg);
    animation: privacyFinalBeam 10s ease-in-out infinite alternate;
}

@keyframes privacyFinalBeam {
    from {
        transform:
            translateX(-300px)
            rotate(24deg);
    }

    to {
        transform:
            translateX(420px)
            rotate(24deg);
    }
}

.privacy-final-cta__orb {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    pointer-events: none;
}

.privacy-final-cta__orb--one {
    top: 17%;
    left: 8%;
    width: 190px;
    aspect-ratio: 1;
    border: 1px solid rgba(27, 187, 255, 0.14);
    background: rgba(14, 109, 188, 0.035);
    animation: privacyFinalOrbOne 9s ease-in-out infinite alternate;
}

.privacy-final-cta__orb--two {
    right: 7%;
    bottom: 13%;
    width: 280px;
    aspect-ratio: 1;
    border: 1px solid rgba(145, 69, 255, 0.14);
    background: rgba(107, 42, 195, 0.035);
    animation: privacyFinalOrbTwo 11s ease-in-out infinite alternate;
}

@keyframes privacyFinalOrbOne {
    to {
        transform:
            translate3d(40px, 35px, 0)
            scale(1.12);
    }
}

@keyframes privacyFinalOrbTwo {
    to {
        transform:
            translate3d(-50px, -30px, 0)
            scale(0.9);
    }
}

.privacy-final-cta__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1240px;
    text-align: center;
}

.privacy-final-cta__content
.section-eyebrow {
    justify-content: center;
}

.privacy-heading--final {
    align-items: center;
    text-align: center;
}

.privacy-heading--final
.privacy-heading__main {
    font-size: clamp(3.1rem, 6.2vw, 7rem);
}

.privacy-heading--final
.privacy-heading__script {
    margin-left: 0;
    font-size: clamp(4.8rem, 9.5vw, 10.5rem);
}

.privacy-final-cta__description {
    max-width: 720px;
    margin: 2rem auto 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: clamp(1rem, 1.3vw, 1.17rem);
    line-height: 1.8;
}

.privacy-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.4rem;
}

.privacy-final-cta__actions
.button {
    min-height: 60px;
}

/* =========================================================
   RODAPÉ
========================================================= */

.privacy-page-body .site-footer {
    position: relative;
    z-index: 4;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(77, 113, 204, 0.15);
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(11, 137, 213, 0.08),
            transparent 27%
        ),
        radial-gradient(
            circle at 88% 22%,
            rgba(111, 46, 255, 0.08),
            transparent 30%
        ),
        #02040b;
}

.privacy-page-body .site-footer__glow {
    position: absolute;
    top: -170px;
    left: 50%;
    width: min(900px, 90vw);
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse,
        rgba(31, 124, 255, 0.12),
        rgba(118, 43, 255, 0.055) 45%,
        transparent 72%
    );
    filter: blur(30px);
    transform: translateX(-50%);
    pointer-events: none;
}

.privacy-page-body
.site-footer__container {
    position: relative;
    z-index: 2;
    padding-top: clamp(4.5rem, 8vw, 7rem);
    padding-bottom: 2rem;
}

.privacy-page-body
.site-footer__top {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.35fr)
        minmax(150px, 0.65fr)
        minmax(170px, 0.75fr)
        minmax(260px, 1fr);
    gap: clamp(2rem, 5vw, 5.5rem);
}

.privacy-page-body
.site-footer__brand,
.privacy-page-body
.site-footer__column {
    min-width: 0;
}

.privacy-page-body
.site-footer__logo {
    display: inline-flex;
    width: fit-content;
}

.privacy-page-body
.site-footer__logo img {
    display: block;
    width: 125px;
    height: auto;
    object-fit: contain;
}

.privacy-page-body
.site-footer__description {
    max-width: 370px;
    margin: 1.7rem 0 0;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.83rem;
    line-height: 1.8;
}

.privacy-page-body
.site-footer__availability {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.4rem;
    color: var(--privacy-muted);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.7rem;
}

.privacy-page-body
.site-footer__availability-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--privacy-green);
    box-shadow:
        0 0 0 5px rgba(66, 236, 165, 0.07),
        0 0 15px rgba(66, 236, 165, 0.7);
    animation: privacyFooterPulse 2s ease-in-out infinite;
}

@keyframes privacyFooterPulse {
    50% {
        opacity: 0.5;
        transform: scale(0.76);
    }
}

.privacy-page-body
.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.7rem;
}

.privacy-page-body
.site-footer__socials a {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    color: var(--privacy-muted);
    border: 1px solid var(--privacy-border);
    border-radius: 13px;
    background: rgba(8, 15, 31, 0.75);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.64rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.privacy-page-body
.site-footer__socials a:hover {
    color: #ffffff;
    border-color: transparent;
    background: var(--privacy-gradient);
    box-shadow: 0 12px 30px rgba(39, 105, 255, 0.24);
    transform:
        translateY(-5px)
        rotate(-4deg);
}

.privacy-page-body
.site-footer__title {
    margin: 0 0 1.5rem;
    color: var(--privacy-white);
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.privacy-page-body
.site-footer__links {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacy-page-body
.site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.78rem;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.privacy-page-body
.site-footer__links a span {
    color: var(--privacy-blue);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.58rem;
}

.privacy-page-body
.site-footer__links a:hover,
.privacy-page-body
.site-footer__links a[aria-current="page"] {
    color: #ffffff;
    transform: translateX(5px);
}

.privacy-page-body
.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.privacy-page-body
.site-footer__contact-link {
    display: block;
    max-width: 100%;
    margin-bottom: 1.2rem;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.privacy-page-body
.site-footer__contact-link span,
.privacy-page-body
.site-footer__contact-link strong {
    display: block;
}

.privacy-page-body
.site-footer__contact-link span {
    margin-bottom: 0.35rem;
    color: var(--privacy-dark-muted);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.63rem;
}

.privacy-page-body
.site-footer__contact-link strong {
    color: var(--privacy-white);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: clamp(0.76rem, 1vw, 0.88rem);
    font-weight: 550;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.privacy-page-body
.site-footer__contact-link:hover strong {
    color: var(--privacy-blue);
}

.privacy-page-body
.site-footer__location {
    margin: 0.1rem 0 1.4rem;
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.76rem;
}

.privacy-page-body
.site-footer__message-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    min-width: 190px;
    min-height: 49px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    border: 1px solid rgba(53, 141, 255, 0.42);
    border-radius: 14px;
    background: linear-gradient(
        110deg,
        rgba(14, 102, 190, 0.22),
        rgba(63, 40, 166, 0.22)
    );
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.privacy-page-body
.site-footer__message-button:hover {
    border-color: transparent;
    background: var(--privacy-gradient);
    box-shadow: 0 16px 40px rgba(47, 102, 255, 0.24);
    transform: translateY(-4px);
}

.privacy-page-body
.site-footer__divider {
    position: relative;
    width: 100%;
    height: 1px;
    margin: clamp(3.5rem, 6vw, 5.5rem) 0 1.8rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
}

.privacy-page-body
.site-footer__divider span {
    position: absolute;
    top: 0;
    left: -20%;
    width: 22%;
    height: 100%;
    background: var(--privacy-gradient);
    box-shadow: 0 0 15px rgba(40, 149, 255, 0.7);
    animation: privacyFooterLine 8s linear infinite;
}

@keyframes privacyFooterLine {
    to {
        left: 105%;
    }
}

.privacy-page-body
.site-footer__bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.privacy-page-body
.site-footer__bottom p {
    margin: 0;
    color: var(--privacy-dark-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.68rem;
}

.privacy-page-body
.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.3rem;
}

.privacy-page-body
.site-footer__legal a,
.privacy-page-body
.site-footer__signature {
    color: var(--privacy-muted);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.68rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-page-body
.site-footer__legal a:hover,
.privacy-page-body
.site-footer__signature:hover {
    color: var(--privacy-blue);
}

.privacy-page-body
.site-footer__signature {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    text-align: right;
}

/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.privacy-page-body
.floating-whatsapp {
    position: fixed;
    z-index: 900;
    right: 1.6rem;
    bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 55px;
    padding: 0.8rem 1.15rem;
    color: #51f0ad;
    border: 1px solid rgba(46, 222, 146, 0.44);
    border-radius: 17px;
    background: rgba(3, 21, 21, 0.9);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    font-family: var(--font-clean, "Manrope", sans-serif);
    font-size: 0.73rem;
    font-weight: 750;
    text-decoration: none;
    isolation: isolate;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.privacy-page-body
.floating-whatsapp:hover {
    color: #ffffff;
    border-color: rgba(68, 241, 172, 0.78);
    background: rgba(5, 39, 34, 0.96);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.45),
        0 0 28px rgba(44, 235, 158, 0.16);
    transform: translateY(-5px);
}

.privacy-page-body
.floating-whatsapp__icon {
    display: grid;
    place-items: center;
}

.privacy-page-body
.floating-whatsapp__pulse {
    position: absolute;
    z-index: -1;
    inset: -1px;
    border: 1px solid rgba(65, 241, 173, 0.32);
    border-radius: inherit;
    animation: privacyWhatsappPulse 2.8s ease-out infinite;
}

@keyframes privacyWhatsappPulse {
    from {
        opacity: 0.75;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(1.17, 1.32);
    }
}

.privacy-page-body
.floating-whatsapp__status {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 10px;
    height: 10px;
    border: 2px solid #062018;
    border-radius: 50%;
    background: var(--privacy-green);
    box-shadow:
        0 0 0 3px rgba(67, 239, 169, 0.15),
        0 0 12px rgba(67, 239, 169, 0.85);
}

/* =========================================================
   VOLTAR AO TOPO
========================================================= */

.privacy-page-body .back-to-top {
    position: fixed;
    z-index: 899;
    right: 1.6rem;
    bottom: 5.8rem;
    display: grid;
    place-items: center;
    width: 49px;
    height: 49px;
    overflow: hidden;
    color: var(--privacy-blue);
    border: 1px solid rgba(62, 128, 241, 0.35);
    border-radius: 15px;
    background: rgba(5, 14, 30, 0.88);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease,
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}

.privacy-page-body
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.privacy-page-body
.back-to-top:hover {
    color: #ffffff;
    border-color: transparent;
    background: var(--privacy-gradient);
    transform: translateY(-4px);
}

.privacy-page-body
.back-to-top__progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--privacy-gradient);
    transform: scaleX(0);
    transform-origin: left;
}

/* =========================================================
   PARTE 7 — RESPONSIVIDADE
========================================================= */

@media (max-width: 1240px) {
    .privacy-page-body .container {
        width: min(100% - 48px, 1180px);
    }

    .privacy-hero__container {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(430px, 0.78fr);
        gap: 3.5rem;
    }

    .privacy-hero__visual {
        padding-right: 3.3rem;
        padding-left: 3.3rem;
    }

    .privacy-content__layout {
        grid-template-columns:
            minmax(220px, 0.25fr)
            minmax(0, 1fr);
        gap: 4rem;
    }

    .privacy-page-body
    .site-footer__top {
        grid-template-columns:
            1.15fr
            0.65fr
            0.7fr
            1fr;
        gap: 2.5rem;
    }
}

/* =========================================================
   TABLETS
========================================================= */

@media (max-width: 1024px) {
    .privacy-page-body .section {
        padding: 6.5rem 0;
    }

    .privacy-hero {
        min-height: auto;
        padding-top: 10rem;
        padding-bottom: 7rem;
    }

    .privacy-hero__container {
        grid-template-columns: 1fr;
        gap: 5rem;
        min-height: auto;
    }

    .privacy-hero__content {
        max-width: 900px;
    }

    .privacy-hero__description {
        max-width: 720px;
    }

    .privacy-hero__visual {
        width: min(100%, 850px);
        margin-inline: auto;
        padding-right: 5rem;
        padding-left: 5rem;
    }

    .privacy-browser {
        width: 100%;
        max-width: 720px;
    }

    .privacy-hero__scroll {
        display: none;
    }

    .privacy-content__layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .privacy-sidebar__inner {
        position: relative;
        top: auto;
    }

    .privacy-sidebar__navigation {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 0.35rem;
    }

    .privacy-sidebar__help {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .privacy-document {
        max-width: none;
    }

    .privacy-page-body
    .site-footer__top {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 3.5rem;
    }

    .privacy-page-body
    .site-footer__bottom {
        grid-template-columns: 1fr 1fr;
    }

    .privacy-page-body
    .site-footer__legal {
        justify-content: flex-end;
    }

    .privacy-page-body
    .site-footer__signature {
        grid-column: 1 / -1;
        justify-content: center;
        text-align: center;
    }
}

/* =========================================================
   TELEMÓVEIS
========================================================= */

@media (max-width: 767px) {
    .privacy-page-body {
        overflow-x: hidden;
    }

    .privacy-page-body .container {
        width: min(100% - 32px, 680px);
    }

    .privacy-page-body .section {
        padding: 5rem 0;
    }

    /* Evita animações laterais fora do ecrã */
    .privacy-page-body
    .reveal-element[data-animation="fade-left"]:not(.is-visible),
    .privacy-page-body
    .reveal-element[data-animation="fade-right"]:not(.is-visible) {
        transform: translate3d(0, 36px, 0);
    }

    /* =====================================================
       MENU
    ===================================================== */

    .privacy-page-body
    .site-header__nav,
    .privacy-page-body
    .site-header__cta {
        display: none;
    }

    .privacy-page-body
    .site-header__menu-button {
        position: relative;
        z-index: 1002;
        display: inline-flex;
    }

    .privacy-page-body
    .mobile-menu {
        z-index: 1000;
    }

    .privacy-page-body
    .mobile-menu__close {
        position: relative;
        z-index: 1003;
    }

    /* =====================================================
       TÍTULOS
    ===================================================== */

    .privacy-page-body
    .section-eyebrow {
        justify-content: center;
        margin-inline: auto;
        font-size: 0.61rem;
        letter-spacing: 0.2em;
        text-align: center;
    }

    .privacy-heading,
    .privacy-heading--final {
        align-items: center;
        text-align: center;
        line-height: 0.94;
    }

    .privacy-heading__main,
    .privacy-heading--final
    .privacy-heading__main {
        width: 100%;
        font-size: clamp(2.25rem, 10vw, 3.7rem);
        letter-spacing: -0.055em;
    }

    .privacy-heading__script,
    .privacy-heading--final
    .privacy-heading__script {
        margin: 0.02em 0 -0.02em;
        padding: 0 0.12em;
        font-size: clamp(3.7rem, 17vw, 6.1rem);
        line-height: 0.82;
    }

    .privacy-heading__editorial {
        width: 100%;
        margin-left: 0;
        font-size: clamp(2.15rem, 9.5vw, 3.5rem);
    }

    /* =====================================================
       HERO
    ===================================================== */

    .privacy-hero {
        min-height: auto;
        padding: 8.5rem 0 5rem;
        overflow: hidden;
    }

    .privacy-hero__container {
        display: block;
    }

    .privacy-hero__content {
        width: 100%;
        text-align: center;
    }

    .privacy-hero__title {
        align-items: center;
        width: 100%;
        text-align: center;
        line-height: 0.94;
    }

    .privacy-hero__title-main {
        width: 100%;
        font-size: clamp(2.5rem, 12vw, 4.2rem);
        letter-spacing: -0.06em;
    }

    .privacy-hero__title-script {
        margin: 0;
        padding: 0 0.12em;
        font-size: clamp(4.4rem, 21vw, 7.3rem);
        line-height: 0.8;
    }

    .privacy-hero__title-editorial {
        width: 100%;
        margin-left: 0;
        font-size: clamp(2.3rem, 10.5vw, 3.9rem);
    }

    .privacy-hero__description {
        margin: 1.8rem auto 0;
        font-size: 0.93rem;
        line-height: 1.75;
        text-align: center;
    }

    .privacy-hero__actions {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
    }

    .privacy-hero__actions .button {
        width: 100%;
        max-width: 420px;
    }

    .privacy-hero__metadata {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 420px;
        margin: 2.4rem auto 0;
    }

    .privacy-hero__metadata > div {
        padding: 1rem;
        border-top: 1px solid var(--privacy-border-light);
        border-left: 0;
        text-align: center;
    }

    .privacy-hero__metadata > div:first-child {
        padding: 1rem;
        border-top: 0;
    }

    .privacy-hero__visual {
        width: 100%;
        margin-top: 4rem;
        padding: 2rem 12px 4rem;
        overflow: visible;
    }

    .privacy-browser {
        width: 100%;
        padding: 1rem 0 3.5rem;
    }

    .privacy-browser__window {
        min-height: 0;
        border-radius: 22px;
        transform: none;
        animation: privacyBrowserMobileFloat 7s ease-in-out infinite;
    }

    @keyframes privacyBrowserMobileFloat {
        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-7px);
        }
    }

    .privacy-browser__toolbar {
        min-height: 51px;
        gap: 0.6rem;
        padding: 0 0.85rem;
        border-radius: 21px 21px 0 0;
    }

    .privacy-browser__address {
        padding: 0 0.65rem;
        font-size: 0.56rem;
    }

    .privacy-browser__options {
        display: none;
    }

    .privacy-browser__page {
        min-height: 0;
        border-radius: 0 0 21px 21px;
    }

    .privacy-browser__page-header {
        padding: 1rem;
    }

    .privacy-browser__page-header span,
    .privacy-browser__page-header small {
        font-size: 0.48rem;
    }

    .privacy-browser__security {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }

    .privacy-browser__shield {
        width: 155px;
        height: 155px;
        margin-inline: auto;
    }

    .privacy-browser__security-copy p {
        margin-inline: auto;
    }

    .privacy-browser__data-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem 1.2rem;
    }

    .privacy-browser__data-card {
        min-height: 90px;
    }

    .privacy-browser__data-card > span {
        margin-bottom: 0.8rem;
    }

    .privacy-browser__floating {
        min-width: 135px;
        max-width: 170px;
        padding: 0.8rem;
        border-radius: 15px;
    }

    .privacy-browser__floating--protected {
        top: 78px;
        left: 3px;
    }

    .privacy-browser__floating--rights {
        top: auto;
        right: 3px;
        bottom: 80px;
    }

    .privacy-browser__floating--form {
        bottom: 0;
        left: 15px;
    }

    .privacy-hero__glow {
        top: 16%;
        right: -55%;
        width: 135vw;
    }

    .privacy-hero__ring--one {
        right: -48%;
        width: 120vw;
    }

    .privacy-hero__ring--two {
        right: -20%;
        width: 75vw;
    }

    /* =====================================================
       DOCUMENTO E NAVEGAÇÃO
    ===================================================== */

    .privacy-content__layout {
        display: block;
    }

    .privacy-sidebar {
        margin-bottom: 4rem;
    }

    .privacy-sidebar__inner {
        padding: 1rem;
    }

    .privacy-sidebar__navigation {
        grid-template-columns: 1fr;
    }

    .privacy-sidebar__help {
        display: block;
    }

    .privacy-sidebar__help a {
        margin-top: 0.5rem;
    }

    .privacy-document__header {
        padding-bottom: 4rem;
        text-align: center;
    }

    .privacy-document__introduction {
        margin-inline: auto;
        font-size: 0.92rem;
        line-height: 1.75;
    }

    .privacy-document__notice {
        grid-template-columns: 36px minmax(0, 1fr);
        text-align: left;
    }

    .privacy-document__notice-icon {
        width: 34px;
        height: 34px;
    }

    .privacy-article {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 4rem 0;
        scroll-margin-top: 100px;
    }

    .privacy-article__number {
        position: relative;
        top: auto;
        font-size: 1.7rem;
    }

    .privacy-article__category {
        margin-bottom: 0.8rem;
    }

    .privacy-article h3 {
        font-size: clamp(1.85rem, 9vw, 2.8rem);
    }

    .privacy-article__content > p {
        font-size: 0.88rem;
        line-height: 1.8;
    }

    /* =====================================================
       CARTÕES
    ===================================================== */

    .privacy-information-card,
    .privacy-data-grid,
    .privacy-legal-grid,
    .privacy-rights-grid,
    .privacy-security-grid,
    .privacy-contact-grid {
        grid-template-columns: 1fr;
    }

    .privacy-legal-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .privacy-data-card {
        min-height: 130px;
    }

    .privacy-provider__top {
        align-items: flex-start;
    }

    .privacy-provider__top > a {
        padding: 0.55rem;
    }

    .privacy-retention__item {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 0.8rem;
    }

    .privacy-retention::before {
        left: 21px;
    }

    .privacy-retention__number {
        width: 44px;
        height: 44px;
    }

    .privacy-cookie-panel {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .privacy-cookie-panel__content p {
        margin-inline: auto;
    }

    .privacy-cookie-grid {
        grid-template-columns: 1fr;
    }

    .privacy-cookie-card {
        min-height: 150px;
    }

    .privacy-cookie-card > span {
        margin-bottom: 1.5rem;
    }

    .privacy-request-card {
        grid-template-columns: 45px minmax(0, 1fr);
    }

    .privacy-request-card > a {
        grid-column: 1 / -1;
        justify-content: center;
        width: 100%;
    }

    .privacy-authority-card {
        grid-template-columns: 52px minmax(0, 1fr) 36px;
        padding: 1rem;
    }

    .privacy-authority-card__symbol {
        width: 50px;
        height: 50px;
        font-size: 0.65rem;
    }

    .privacy-security-notice {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .privacy-security-notice__animation {
        margin-inline: auto;
    }

    .privacy-contact-card {
        min-height: 185px;
    }

    .privacy-version {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    /* =====================================================
       CHAMADA FINAL
    ===================================================== */

    .privacy-final-cta {
        min-height: 680px;
    }

    .privacy-final-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .privacy-final-cta__actions .button {
        width: 100%;
        max-width: 440px;
    }

    .privacy-final-cta__orb--one {
        left: -80px;
    }

    .privacy-final-cta__orb--two {
        right: -130px;
    }

    /* =====================================================
       RODAPÉ
    ===================================================== */

    .privacy-page-body
    .site-footer__container {
        padding-top: 4rem;
    }

    .privacy-page-body
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .privacy-page-body
    .site-footer__brand,
    .privacy-page-body
    .site-footer__column,
    .privacy-page-body
    .site-footer__contact {
        align-items: center;
        margin-inline: auto;
    }

    .privacy-page-body
    .site-footer__brand {
        display: flex;
        flex-direction: column;
    }

    .privacy-page-body
    .site-footer__description {
        margin-inline: auto;
    }

    .privacy-page-body
    .site-footer__links {
        justify-items: center;
    }

    .privacy-page-body
    .site-footer__links a:hover,
    .privacy-page-body
    .site-footer__links a[aria-current="page"] {
        transform: translateY(-2px);
    }

    .privacy-page-body
    .site-footer__contact-link {
        text-align: center;
    }

    .privacy-page-body
    .site-footer__bottom {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: center;
    }

    .privacy-page-body
    .site-footer__legal {
        justify-content: center;
    }

    .privacy-page-body
    .site-footer__signature {
        grid-column: auto;
        justify-content: center;
    }

    /* =====================================================
       BOTÕES FLUTUANTES
    ===================================================== */

    .privacy-page-body
    .floating-whatsapp {
        right: 1rem;
        bottom: 1rem;
        width: 55px;
        height: 55px;
        min-height: 55px;
        padding: 0;
        border-radius: 17px;
    }

    .privacy-page-body
    .floating-whatsapp__text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .privacy-page-body
    .back-to-top {
        right: 1rem;
        bottom: 5.3rem;
    }
}

/* =========================================================
   TELEMÓVEIS PEQUENOS
========================================================= */

@media (max-width: 480px) {
    .privacy-page-body .container {
        width: min(100% - 28px, 450px);
    }

    .privacy-page-body .section {
        padding: 4.5rem 0;
    }

    .privacy-hero {
        padding-top: 7.5rem;
        padding-bottom: 4.5rem;
    }

    .privacy-hero__title-main {
        font-size: clamp(2.25rem, 12vw, 3.3rem);
    }

    .privacy-hero__title-script {
        font-size: clamp(3.9rem, 20vw, 5.9rem);
    }

    .privacy-hero__title-editorial {
        font-size: clamp(2rem, 10.5vw, 3.1rem);
    }

    .privacy-browser__floating {
        position: relative;
        inset: auto;
        display: flex;
        width: calc(100% - 24px);
        max-width: none;
        margin: 0.7rem auto 0;
        animation: none;
        transform: none;
    }

    .privacy-browser__floating--rights {
        display: flex;
    }

    .privacy-provider__top {
        display: grid;
        grid-template-columns: 1fr;
    }

    .privacy-provider__top > a {
        width: fit-content;
    }

    .privacy-request-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .privacy-request-card__icon {
        margin-inline: auto;
    }

    .privacy-authority-card {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .privacy-authority-card__symbol {
        width: 44px;
        height: 44px;
    }

    .privacy-authority-card i {
        display: none;
    }

    .privacy-page-body
    .site-footer__legal {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* =========================================================
   ECRÃS MUITO ESTREITOS
========================================================= */

@media (max-width: 360px) {
    .privacy-page-body .container {
        width: min(100% - 22px, 340px);
    }

    .privacy-hero__title-main {
        font-size: 2.1rem;
    }

    .privacy-hero__title-script {
        font-size: 3.65rem;
    }

    .privacy-hero__title-editorial {
        font-size: 1.9rem;
    }

    .privacy-heading__main,
    .privacy-heading--final
    .privacy-heading__main {
        font-size: 1.95rem;
    }

    .privacy-heading__script,
    .privacy-heading--final
    .privacy-heading__script {
        font-size: 3.35rem;
    }

    .privacy-heading__editorial {
        font-size: 1.85rem;
    }

    .privacy-document__notice {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .privacy-document__notice-icon {
        margin-inline: auto;
    }
}

/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {
    .privacy-page-body *,
    .privacy-page-body *::before,
    .privacy-page-body *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .privacy-page-body
    .reveal-element {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================================
   DISPOSITIVOS SEM HOVER
========================================================= */

@media (hover: none) {
    .privacy-data-card:hover,
    .privacy-legal-card:hover,
    .privacy-provider:hover,
    .privacy-right-card:hover,
    .privacy-security-card:hover,
    .privacy-contact-card:hover,
    .privacy-authority-card:hover {
        transform: none;
    }
}

/* =========================================================
   AVISO SEM JAVASCRIPT
========================================================= */

.privacy-page-body .noscript-warning {
    position: fixed;
    z-index: 99999;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    color: #ffffff;
    border: 1px solid rgba(255, 195, 74, 0.45);
    border-radius: 14px;
    background: rgba(38, 27, 5, 0.96);
    font-family: var(--font-body, "Inter", sans-serif);
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: center;
}

/* =========================================================
   IMPRESSÃO
========================================================= */

@media print {
    .privacy-page-body {
        color: #111111;
        background: #ffffff;
    }

    .privacy-page-body .site-header,
    .privacy-page-body .site-background,
    .privacy-page-body .custom-cursor,
    .privacy-page-body .scroll-progress,
    .privacy-page-body .floating-whatsapp,
    .privacy-page-body .back-to-top,
    .privacy-hero__effects,
    .privacy-hero__visual,
    #privacy-waves-canvas,
    .privacy-final-cta,
    .privacy-sidebar {
        display: none !important;
    }

    .privacy-page-body .reveal-element {
        opacity: 1 !important;
        transform: none !important;
    }

    .privacy-content__layout {
        display: block;
    }

    .privacy-article {
        break-inside: avoid;
    }
}


/* Compatibilidade entre o main.js e o menu global */
.privacy-page-body
.mobile-menu.mobile-navigation-active {
    visibility: visible;
    opacity: 1;
}

.privacy-page-body
.mobile-menu.mobile-navigation-active
.mobile-menu__content {
    transform: translateY(0);
}

/* Animação dos círculos do preloader */
.privacy-page-body
.preloader__logo-wrapper {
    animation: privacyPreloaderFloat 3s ease-in-out infinite;
}

.privacy-page-body
.preloader__logo-wrapper::before {
    animation: privacyPreloaderRotate 8s linear infinite;
}

.privacy-page-body
.preloader__logo-wrapper::after {
    animation: privacyPreloaderRotate 3s linear infinite reverse;
}

.privacy-page-body
.preloader__logo {
    animation: privacyPreloaderLogo 2.6s ease-in-out infinite;
}

@keyframes privacyPreloaderRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes privacyPreloaderFloat {
    50% {
        transform: translateY(-7px);
    }
}

@keyframes privacyPreloaderLogo {
    0%,
    100% {
        transform: scale(0.95) rotate(-2deg);
    }

    50% {
        transform: scale(1.05) rotate(2deg);
    }
}