/* ===========================================
   KRIARE LANDING PAGE V2
   Design: V1 style (rounded, clean, premium)
   Copy: Premium provocador
   =========================================== */

/* --- TOKENS --- */
:root {
    --bg: #0a0a0b;
    --bg-elevated: #111113;
    --bg-card: #161618;
    --bg-card-hover: #1c1c1f;
    --text: #e8e8ec;
    --text-muted: #8b8b94;
    --text-dim: #5c5c66;
    --accent: #c8a04a;
    --accent-light: #dbb85c;
    --accent-glow: rgba(200, 160, 74, 0.15);
    --border: #222225;
    --border-light: #2a2a2e;
    --white: #ffffff;
    --success: #34d399;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-y: clamp(80px, 10vw, 140px);
    --container: min(1200px, 90%);
}

/* --- RESET --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.accent {
    color: var(--accent);
}

/* --- SECTION DEFAULTS --- */
.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 640px;
    line-height: 1.7;
}

.accent-text {
    color: var(--accent);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn--primary {
    background: var(--accent);
    color: var(--bg);
}

.btn--primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 14px 24px;
}

.btn--ghost:hover {
    color: var(--white);
}

.btn--outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}

.btn--outline:hover {
    background: var(--accent-glow);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* --- FADE ANIMATION --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}

.nav--scrolled {
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav__container {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav__links a:hover {
    color: var(--white);
}

.nav__cta {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: var(--bg) !important;
    background: var(--accent) !important;
    padding: 10px 24px !important;
    border-radius: 8px;
    transition: all 0.2s !important;
}

.nav__cta:hover {
    background: var(--accent-light) !important;
    transform: translateY(-1px);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero__container {
    width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__tag {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
}

.hero__title--accent {
    color: var(--accent);
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero__subtitle strong {
    color: var(--accent);
    font-weight: 600;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero__proof {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.hero__stat-label {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-top: 2px;
    display: block;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* HERO VISUAL */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.hero__ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(200, 160, 74, 0.2);
    pointer-events: none;
}

.hero__ring--1 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 6s ease-in-out infinite;
}

.hero__ring--2 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(200, 160, 74, 0.12);
    animation: pulse-ring 6s ease-in-out infinite 1s;
}

.hero__ring--3 {
    width: 650px;
    height: 650px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(200, 160, 74, 0.06);
    animation: pulse-ring 6s ease-in-out infinite 2s;
}

@keyframes pulse-ring {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.hero__dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.3;
    animation: blink 3s ease-in-out infinite;
}

.hero__dot--1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.hero__dot--2 {
    top: 70%;
    right: 15%;
    animation-delay: 1s;
}

.hero__dot--3 {
    bottom: 20%;
    left: 35%;
    animation-delay: 2s;
}

.hero__dot--4 {
    top: 40%;
    right: 30%;
    animation-delay: 1.5s;
}

@keyframes blink {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }
}

/* --- QUEM SOMOS --- */
.quem-somos {
    padding: var(--section-y) 0;
    background: var(--bg-elevated);
}

.quem-somos__content {
    max-width: 700px;
}

.quem-somos__intro {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.quem-somos__body {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.quem-somos__pilares {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.pilar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 28px;
    border-left: 3px solid var(--accent);
    transition: border-color 0.3s, transform 0.3s;
}

.pilar:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.pilar p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
}

.pilar strong {
    color: var(--accent);
    font-weight: 600;
}

.quem-somos__closing {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
}

/* --- MÉTODO --- */
.metodo {
    padding: var(--section-y) 0;
}

.metodo .section-title {
    margin-bottom: 16px;
}

.metodo__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.metodo__step {
    position: relative;
}

.metodo__step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 16px;
}

.metodo__step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.metodo__step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* --- PRA QUEM --- */
.paraquem {
    padding: var(--section-y) 0;
    background: var(--bg-elevated);
}

.paraquem__triade {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    margin-bottom: 24px;
}

.triade__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: border-color 0.3s, transform 0.3s;
}

.triade__item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.triade__num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 16px;
}

.triade__item p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
}

.triade__item strong {
    color: var(--white);
}

.paraquem__segmentos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.paraquem__segmentos span {
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    transition: border-color 0.3s, background 0.3s;
}

.paraquem__segmentos span:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

/* --- RESULTADO --- */
.resultado {
    padding: var(--section-y) 0;
}

.resultado__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.resultado__entregaveis {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px;
}

.resultado__entregaveis h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.resultado__entregaveis li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.resultado__entregaveis li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

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

.resultado__prova {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prova__numero {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}

.resultado__prova>p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 24px;
}

.prova__destaque {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    background: var(--accent-glow);
    border-radius: 12px;
    padding: 20px 24px;
    border-left: 3px solid var(--accent);
}

/* --- POR QUÊ --- */
.porque {
    padding: var(--section-y) 0;
    background: var(--bg-elevated);
}

.porque__box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.porque__box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.porque__box>p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.porque__escolha {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.porque__escolha strong {
    color: var(--accent);
}

/* --- MARQUEE --- */
.marquee {
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee__track {
    display: flex;
    gap: 24px;
    animation: scroll-marquee 30s linear infinite;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-dim);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- GARANTIA --- */
.garantia {
    padding: var(--section-y) 0;
}

.garantia__box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 56px 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.garantia__content h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.garantia__content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.garantia__content strong {
    color: var(--accent);
}

.garantia__small {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-dim);
    font-style: italic;
}

/* --- DEPOIMENTOS --- */
.depoimentos {
    padding: var(--section-y) 0;
    background: var(--bg-elevated);
}

.depoimentos .section-title {
    margin-bottom: 48px;
}

.depoimentos__videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.depoimentos__video-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.depoimentos__video-card:hover {
    border-color: var(--border-light);
}

.depoimentos__video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.video__placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg) 0%, rgba(200, 160, 74, 0.05) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.video__play {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.5;
}

.video__placeholder p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.video__info {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.video__info strong {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white);
}

.video__info span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.depoimentos__textos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.depoimentos__texto-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s, transform 0.3s;
}

.depoimentos__texto-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.depoimento__quote {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    flex-grow: 1;
}

.depoimento__autor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depoimento__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bg);
    flex-shrink: 0;
}

.depoimento__avatar::after {
    content: attr(data-initials);
}

.depoimento__info {
    display: flex;
    flex-direction: column;
}

.depoimento__info strong {
    font-size: 0.9rem;
    color: var(--white);
}

.depoimento__info span {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* --- DIAGNÓSTICO --- */
.diagnostico {
    padding: var(--section-y) 0;
}

.diagnostico__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.diagnostico__content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px;
}

.diagnostico__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.diagnostico__desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.diagnostico__lista {
    margin-bottom: 24px;
}

.diagnostico__lista li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.diagnostico__urgencia {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

.diagnostico__form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.diagnostico__form h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.diagnostico__form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.diagnostico__form label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.diagnostico__form input,
.diagnostico__form select {
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
    appearance: none;
}

.diagnostico__form input::placeholder {
    color: var(--text-dim);
}

.diagnostico__form input:focus,
.diagnostico__form select:focus {
    outline: none;
    border-color: var(--accent);
}

.diagnostico__form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238b8b94' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.diagnostico__form select option {
    background: var(--bg-card);
}

.diagnostico__form-note {
    font-size: 0.82rem;
    color: var(--text-dim);
    text-align: center;
    font-style: italic;
    margin-top: 4px;
}

/* --- FOOTER --- */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

.footer__brand p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.footer__tagline {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-style: italic;
    max-width: 360px;
}

.footer__links {
    display: flex;
    gap: 28px;
}

.footer__links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.footer__bottom p {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* --- PRIVACY PAGE --- */
.privacy-page {
    background:
        linear-gradient(180deg, #111113 0%, var(--bg) 36%, var(--bg) 100%);
}

.privacy {
    padding-top: 72px;
}

.privacy__hero {
    padding: 104px 0 64px;
    background:
        linear-gradient(135deg, rgba(200, 160, 74, 0.1) 0%, rgba(200, 160, 74, 0) 42%),
        var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.privacy__hero--compact {
    padding-bottom: 72px;
}

.privacy__hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
    pointer-events: none;
}

.privacy__hero-grid,
.privacy__summary {
    position: relative;
    z-index: 1;
}

.privacy__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: clamp(32px, 6vw, 88px);
    align-items: start;
}

.privacy__hero-copy {
    max-width: 820px;
}

.privacy__hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: 0;
}

.privacy__hero p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.78;
    margin-top: 16px;
}

.privacy__lead {
    max-width: 740px;
    color: var(--text) !important;
    font-size: clamp(1.08rem, 1.6vw, 1.3rem) !important;
    line-height: 1.65 !important;
}

.privacy__updated {
    color: var(--accent) !important;
    font-weight: 600;
}

.privacy__hero-panel {
    padding: 28px;
    background: rgba(22, 22, 24, 0.84);
    border: 1px solid rgba(200, 160, 74, 0.2);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.privacy__panel-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.privacy__hero-panel > strong {
    display: block;
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.45rem;
    line-height: 1.2;
}

.privacy__panel-row {
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid var(--border-light);
}

.privacy__panel-row span {
    display: block;
    color: var(--text-dim);
    font-size: 0.78rem;
    margin-bottom: 4px;
}

.privacy__panel-row strong {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.45;
}

.privacy__summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 56px;
}

.privacy__summary-card {
    padding: 24px;
    background: rgba(10, 10, 11, 0.48);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.privacy__summary-card span {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.privacy__summary-card strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.privacy__summary-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
}

.privacy__content {
    padding: 72px 0 104px;
}

.privacy__grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 860px);
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
    justify-content: center;
}

.privacy__index {
    position: sticky;
    top: 96px;
    padding: 22px;
    background: rgba(17, 17, 19, 0.72);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.privacy__index h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.privacy__index ol {
    list-style: none;
    padding-left: 0;
    counter-reset: privacy-index;
}

.privacy__index li {
    margin-bottom: 6px;
    font-size: 0.86rem;
    line-height: 1.45;
    counter-increment: privacy-index;
}

.privacy__index a {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 8px;
    border-radius: 6px;
    color: var(--text-muted);
    transition: color 0.2s, background 0.2s;
}

.privacy__index a::before {
    content: counter(privacy-index, decimal-leading-zero);
    color: var(--text-dim);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.6;
}

.privacy__index a:hover {
    color: var(--accent);
    background: rgba(200, 160, 74, 0.08);
}

.privacy__article {
    min-width: 0;
    padding: 8px 0 0;
}

.privacy__section {
    scroll-margin-top: 110px;
    padding: 42px 0;
    border-bottom: 1px solid var(--border);
}

.privacy__section:first-child {
    padding-top: 0;
}

.privacy__section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.7vw, 2.35rem);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 18px;
    max-width: 760px;
}

.privacy__section h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--accent);
    margin: 30px 0 12px;
}

.privacy__section p,
.privacy__section li {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.82;
}

.privacy__section p + p {
    margin-top: 14px;
}

.privacy__section ul {
    list-style: disc;
    padding-left: 0;
    margin: 18px 0 0;
    list-style-position: inside;
}

.privacy__section li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.privacy__section strong {
    color: var(--text);
    font-weight: 600;
}

.privacy__info {
    display: grid;
    gap: 8px;
    padding: 24px;
    margin-top: 22px;
    background:
        linear-gradient(135deg, rgba(200, 160, 74, 0.08), rgba(200, 160, 74, 0) 42%),
        var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.privacy__info p {
    margin: 0;
}

.privacy__table-wrap {
    overflow-x: auto;
    margin-top: 24px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
}

.privacy__table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: var(--bg-card);
}

.privacy__table th,
.privacy__table td {
    padding: 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.62;
}

.privacy__table th {
    color: var(--white);
    font-weight: 600;
    background: var(--bg-card-hover);
}

.privacy__table tr:last-child td {
    border-bottom: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .nav__links a:not(.nav__cta) {
        display: none;
    }

    .hero__container {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        display: none;
    }

    .metodo__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .paraquem__triade {
        grid-template-columns: 1fr;
    }

    .resultado__grid {
        grid-template-columns: 1fr;
    }

    .diagnostico__wrapper {
        grid-template-columns: 1fr;
    }

    .depoimentos__videos {
        grid-template-columns: 1fr;
    }

    .depoimentos__textos {
        grid-template-columns: 1fr;
    }

    .privacy__grid {
        grid-template-columns: 1fr;
    }

    .privacy__index {
        position: static;
    }

    .privacy__hero-grid {
        grid-template-columns: 1fr;
    }

    .privacy__hero-panel {
        max-width: 520px;
    }

    .privacy__summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero__proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

    .metodo__steps {
        grid-template-columns: 1fr;
    }

    .footer__content {
        flex-direction: column;
        gap: 24px;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .garantia__box {
        padding: 36px 28px;
    }

    .diagnostico__content,
    .diagnostico__form {
        padding: 36px 28px;
    }

    .resultado__entregaveis,
    .resultado__prova {
        padding: 36px 28px;
    }

    .privacy {
        padding-top: 64px;
    }

    .privacy__hero {
        padding: 64px 0 44px;
    }

    .privacy__hero h1 {
        font-size: clamp(2.45rem, 14vw, 3.5rem);
    }

    .privacy__hero-panel,
    .privacy__summary-card {
        padding: 22px;
    }

    .privacy__content {
        padding: 44px 0 72px;
    }

    .privacy__index,
    .privacy__info {
        padding: 20px;
    }

    .privacy__section {
        padding: 34px 0;
    }

    .privacy__table {
        min-width: 640px;
    }
}
