/* ================================================
   AGÊNCIA MANDALA — Redesign Editorial
   Referência: landing-page-portfolio-tiktok + dev-leonardo-pires.vercel.app
   Paleta: Dark Editorial + Azul Mandala como acento
   Tipografia: TT Hoves Pro Trial + ClashGrotesk
   ================================================ */

@import url('https://fonts.cdnfonts.com/css/tt-hoves-pro-trial');
@import url('clash-grotesk.css');

/* ------------------------------------------------
   TOKENS — LIGHT (padrão)
   ------------------------------------------------ */
:root {
    --bg: #f5f5f3;
    --bg-1: #ffffff;
    --bg-2: #ebebeb;
    --text: #0a0a0a;
    --text-dim: #5a5a5a;
    --text-faint: #9a9a9a;
    --border: rgba(0, 0, 0, 0.1);
    --border-s: rgba(0, 0, 0, 0.18);
    --blue: #2060ff;
    --blue-dim: #1040cc;
    --blue-glow: rgba(32, 96, 255, 0.1);
    --green: #16a34a;

    --font-display: 'TT Hoves Pro Trial', sans-serif;
    --font-body: 'ClashGrotesk-Regular', sans-serif;
    --font-light: 'ClashGrotesk-Light', sans-serif;
    --font-medium: 'ClashGrotesk-Medium', sans-serif;

    --radius: 16px;
    --radius-pill: 999px;
    --header-h: 76px;
}

/* ------------------------------------------------
   TOKENS — DARK
   ------------------------------------------------ */
[data-theme="dark"] {
    --bg: #0a0a0a;
    --bg-1: #1c1c1c;
    --bg-2: #141414;
    --text: #f0ede6;
    --text-dim: #9c9d9d;
    --text-faint: #5a5a5a;
    --border: rgba(255, 255, 255, 0.08);
    --border-s: rgba(255, 255, 255, 0.15);
    --blue: #2060ff;
    --blue-dim: #1040cc;
    --blue-glow: rgba(32, 96, 255, 0.18);
    --green: #22c55e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: background .3s ease, color .3s ease;
}

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

li {
    list-style: none;
}

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

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 4px;
    opacity: .5;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue-dim);
}

/* ------------------------------------------------
   CONTAINER
   ------------------------------------------------ */
.wrap {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ------------------------------------------------
   WHATSAPP FLUTUANTE
   ------------------------------------------------ */
#whatsappFixed {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    animation: pulseWA 2.5s infinite;
    transition: transform .2s;
}

#whatsappFixed:hover {
    transform: scale(1.08);
}

@keyframes pulseWA {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
    }

    50% {
        box-shadow: 0 4px 36px rgba(37, 211, 102, .75);
    }
}

/* ------------------------------------------------
   HEADER
   ------------------------------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 100;
    background: rgba(245, 245, 243, .9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: border-color .3s, background .3s;
}

[data-theme="dark"] .header {
    background: rgba(10, 10, 10, .9);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    filter: hue-rotate(0deg) saturate(1.2);
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -.03em;
    color: var(--blue);
    text-transform: uppercase;
}

.logo-mark span {
    color: var(--blue);
    opacity: .6;
}

/* Nav desktop */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-light);
    font-size: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--text);
}

/* Theme toggle */
.theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-s);
    background: var(--bg-1);
    color: var(--text-dim);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: background .2s, color .2s, border-color .2s;
    flex-shrink: 0;
}

.theme-toggle:hover {
    color: var(--blue);
    border-color: var(--blue);
}

/* Header CTA */
.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-medium);
    font-size: .85rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--blue);
    padding: .6rem 1.4rem;
    border-radius: var(--radius-pill);
    transition: background .2s, transform .2s;
}

.btn-nav:hover {
    background: var(--blue-dim);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .35s ease, opacity .35s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ------------------------------------------------
   MENU FULLSCREEN
   ------------------------------------------------ */
.menu-fs {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.menu-fs.open {
    opacity: 1;
    pointer-events: all;
}

.menu-fs a {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -.02em;
    color: var(--text);
    transition: color .2s;
}

.menu-fs a:hover {
    color: var(--blue);
}

.menu-fs .btn-fs {
    margin-top: .5rem;
    font-family: var(--font-medium);
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--blue);
    padding: .9rem 2.5rem;
    border-radius: var(--radius-pill);
}

/* ------------------------------------------------
   HERO
   ------------------------------------------------ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 4rem) 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Grade de pontos sutil */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Brilho azul fundo */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--blue-glow);
    filter: blur(120px);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-light);
    font-size: .78rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    border: 1px solid rgba(32, 96, 255, .35);
    background: rgba(32, 96, 255, .08);
    padding: .4rem 1.1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 2rem;
}

.hero-badge i {
    font-size: .7rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.03em;
    text-transform: uppercase;
    color: var(--text);
    max-width: 900px;
    margin-bottom: 1.75rem;
}

.hero-title .accent {
    color: var(--blue);
}

.hero-sub {
    font-family: var(--font-light);
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 520px;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

/* CTA primário */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-medium);
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--text);
    padding: .9rem 2rem;
    border-radius: var(--radius-pill);
    transition: background .2s, transform .2s, color .2s;
}

.btn-primary:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-2px);
}

/* CTA secundário */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-medium);
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-dim);
    border: 1px solid var(--border-s);
    padding: .9rem 2rem;
    border-radius: var(--radius-pill);
    transition: color .2s, border-color .2s;
}

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

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    width: fit-content;
}

.stat {
    padding: 1.25rem 2rem;
    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: none;
}

.stat-n {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.03em;
    line-height: 1;
}

.stat-n .u {
    color: var(--blue);
    font-size: 1.2rem;
}

.stat-l {
    font-family: var(--font-light);
    font-size: .75rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: .3rem;
}

/* ------------------------------------------------
   TICKER
   ------------------------------------------------ */
.ticker-wrap {
    overflow: hidden;
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .8rem 0;
}

.ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker 32s linear infinite;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

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

.ticker-track .t {
    font-family: var(--font-light);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 0 1.5rem;
}

.ticker-track .d {
    color: var(--blue);
    font-size: .5rem;
}

/* ------------------------------------------------
   SEÇÃO BASE
   ------------------------------------------------ */
section {
    padding: 8rem 0;
}

.s-label {
    display: inline-block;
    font-family: var(--font-light);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.25rem;
    padding: .35rem .9rem;
    border: 1px solid rgba(32, 96, 255, .3);
    border-radius: var(--radius-pill);
}

.s-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -.03em;
    text-transform: uppercase;
    line-height: 1.06;
    color: var(--text);
    margin-bottom: 1rem;
}

.s-title .accent {
    color: var(--blue);
}

.s-title .light {
    font-weight: 300;
    color: var(--text-dim);
}

.s-sub {
    font-family: var(--font-light);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 560px;
    margin-bottom: 3rem;
}

.s-sub.c {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ------------------------------------------------
   DESAFIO
   ------------------------------------------------ */
.s-desafio {
    background: var(--bg);
}

.desafio-header {
    text-align: center;
    margin-bottom: 4rem;
}

.desafio-header .s-sub {
    margin: 0 auto;
}

.desafio-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.desafio-card {
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.desafio-card.problema {
    background: var(--bg-1);
}

.desafio-card.solucao {
    background: linear-gradient(135deg, var(--blue) 0%, #0a36cc 100%);
    border-color: transparent;
}

.dc-head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.dc-head h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text);
}

.dc-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.dc-icon.red {
    background: rgba(239, 68, 68, .15);
    color: #ef4444;
}

.dc-icon.white {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.dc-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dc-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-family: var(--font-light);
    font-size: .95rem;
    color: var(--text-dim);
}

.desafio-card.solucao .dc-list li {
    color: rgba(255, 255, 255, .85);
}

.dc-list li i {
    font-size: 1rem;
    flex-shrink: 0;
}

.desafio-card.problema .dc-list li i {
    color: #ef4444;
}

.desafio-card.solucao .dc-list li i {
    color: #86efac;
}

.dc-tagline {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .15);
    font-family: var(--font-light);
    font-size: .82rem;
    font-style: italic;
    color: rgba(255, 255, 255, .6);
}

/* ------------------------------------------------
   NOSSA SOLUÇÃO
   ------------------------------------------------ */
.s-solucao {
    background: var(--bg-1);
}

.solucao-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.solucao-destaque {
    margin-top: 2rem;
    padding: 1.5rem;
    border-left: 3px solid var(--blue);
    background: rgba(32, 96, 255, .06);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.solucao-destaque p {
    font-family: var(--font-light);
    font-size: .85rem;
    color: var(--text-dim);
    margin-bottom: .4rem;
}

.solucao-destaque .frase {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: -.01em;
    line-height: 1.35;
    margin-bottom: .8rem;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
}

.mini-item {
    background: var(--bg);
    padding: 1.75rem;
    transition: background .2s;
}

.mini-item:hover {
    background: var(--bg-1);
}

.mini-item i {
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: .75rem;
    display: block;
}

.mini-item h4 {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: .3rem;
}

.mini-item p {
    font-family: var(--font-light);
    font-size: .82rem;
    color: var(--text-dim);
}

/* ------------------------------------------------
   FRASE TIPOGRÁFICA
   ------------------------------------------------ */
.s-frase {
    background: var(--bg);
    padding: 5rem 0 4rem;
    overflow: hidden;
    user-select: none;
}

.frase-bloco {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.frase-line {
    display: flex;
    align-items: center;
    margin-bottom: -.4em;
}

.frase-line.r {
    justify-content: flex-end;
}

.frase-line.c {
    justify-content: center;
}

.frase-line span {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 800;
    letter-spacing: -.04em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--text);
    white-space: nowrap;
}

.frase-line span.dim {
    color: var(--gray-2);
    font-weight: 300;
}

.frase-line span.ac {
    color: var(--blue);
}

.frase-rule {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .12);
    margin: 0 2rem;
}

/* ------------------------------------------------
   SERVIÇOS
   ------------------------------------------------ */
.s-servicos {
    background: var(--bg-1);
}

.servicos-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 5rem;
}

.servicos-head-r {
    font-family: var(--font-light);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-dim);
}

.servicos-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sv-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 2rem 2.5rem;
    background: var(--bg);
    cursor: default;
    transition: border-color .25s, transform .25s;
}

.sv-item:nth-child(even) {
    margin-left: 5%;
}

.sv-item:hover {
    border-color: var(--blue);
    transform: translateX(6px);
}

.sv-item:nth-child(even):hover {
    transform: translateX(-6px);
}

.sv-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .08);
    line-height: 1;
    min-width: 64px;
    transition: color .25s;
}

.sv-item:hover .sv-num {
    color: var(--blue);
}

.sv-body {
    flex: 1;
}

.sv-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--text);
    margin-bottom: .5rem;
}

.sv-body p {
    font-family: var(--font-light);
    font-size: .9rem;
    color: var(--text-dim);
    line-height: 1.65;
}

.sv-pills {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    align-items: flex-end;
    min-width: 180px;
}

.sv-pills span {
    font-family: var(--font-light);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--blue);
    border: 1px solid rgba(32, 96, 255, .3);
    padding: .25rem .85rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

/* ------------------------------------------------
   PARA QUEM
   ------------------------------------------------ */
.s-para-quem {
    background: var(--bg);
}

.pq-head {
    margin-bottom: 4rem;
    text-align: center;
}

.pq-head .s-sub {
    margin: 0 auto;
}

.pq-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    margin-bottom: 3rem;
}

.pq-cell {
    background: var(--bg-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 1rem;
    transition: background .2s;
    cursor: default;
}

.pq-cell:hover {
    background: var(--bg-2);
}

.pq-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(32, 96, 255, .15);
    border: 1px solid rgba(32, 96, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--blue);
}

.pq-cell span {
    font-family: var(--font-light);
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: center;
}

.pq-footer {
    text-align: center;
    font-family: var(--font-light);
    font-size: 1rem;
    color: var(--text-dim);
    font-style: italic;
}

/* ------------------------------------------------
   DIFERENCIAIS
   ------------------------------------------------ */
.s-dif {
    background: var(--bg-1);
}

.dif-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.dif-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 2rem;
}

.dif-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-family: var(--font-light);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 1.1rem 1.75rem;
    transition: border-color .2s;
}

.dif-list li:hover {
    border-color: var(--blue);
}

.dif-list li i {
    font-size: .9rem;
    color: var(--blue);
    flex-shrink: 0;
}

/* Card direita */
.dif-card {
    background: linear-gradient(140deg, #0e1f4a 0%, var(--blue) 100%);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    position: sticky;
    top: calc(var(--header-h) + 2rem);
}

.dif-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2rem;
}

.dif-card-pre {
    font-family: var(--font-light);
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: .4rem;
}

.dif-card-main {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.dif-card-main em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, .7);
}

.dif-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 1.75rem;
}

.ds {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    padding: 0 .75rem;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.ds:last-child {
    border-right: none;
}

.ds-n {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
}

.ds-l {
    font-family: var(--font-light);
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

/* ------------------------------------------------
   DEPOIMENTOS
   ------------------------------------------------ */
.s-dep {
    background: var(--bg);
}

.dep-head {
    text-align: center;
    margin-bottom: 4rem;
}

.dep-head .s-sub {
    margin: 0 auto;
}

.dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dep-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-1);
    transition: border-color .25s, transform .25s;
}

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

.dep-thumb {
    aspect-ratio: 9/14;
    background: linear-gradient(160deg, #0e1a2e, var(--blue-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-sm {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--blue-dim);
    transition: transform .2s, background .2s;
}

.play-sm:hover {
    transform: scale(1.1);
    background: #fff;
}

.dep-info {
    padding: 1.25rem 1.5rem;
}

.dep-stars {
    color: #f59e0b;
    font-size: .82rem;
    letter-spacing: 2px;
    margin-bottom: .5rem;
}

.dep-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--text);
}

.dep-info span {
    font-family: var(--font-light);
    font-size: .78rem;
    color: var(--text-dim);
}

/* ------------------------------------------------
   CTA FINAL
   ------------------------------------------------ */
.s-cta-final {
    background: var(--bg-1);
    padding: 4rem 0 8rem;
}

.cta-box {
    background: linear-gradient(135deg, #0a0a0a 0%, #0e1f4a 50%, var(--blue) 100%);
    border: 1px solid rgba(32, 96, 255, .3);
    border-radius: var(--radius);
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.cta-box .s-label {
    position: relative;
    color: rgba(255, 255, 255, .7);
    border-color: rgba(255, 255, 255, .2);
}

.cta-box .s-title {
    position: relative;
    max-width: 700px;
    margin: 0 auto 1.25rem;
    color: #fff !important;
}

.cta-box .s-title .accent {
    color: #fff !important;
}

.cta-box .s-sub {
    position: relative;
    text-align: center;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, .7) !important;
}

.cta-box .btn-wpp {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-medium);
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #fff;
    background: #25D366;
    padding: .9rem 2rem;
    border-radius: var(--radius-pill);
    transition: background .2s, transform .2s;
}

.cta-box .btn-wpp:hover {
    background: #1ebe59;
    transform: translateY(-2px);
}

.cta-info {
    position: relative;
    display: block;
    margin-top: 1rem;
    font-family: var(--font-light);
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
.footer {
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand .logo-mark {
    font-size: 1.6rem;
}

.footer-brand p {
    font-family: var(--font-light);
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-top: .75rem;
    max-width: 280px;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-light);
    font-size: .88rem;
    color: var(--text-dim);
    margin-bottom: .75rem;
    transition: color .2s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-col a i {
    font-size: .85rem;
    color: var(--blue);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom p {
    font-family: var(--font-light);
    font-size: .78rem;
    color: var(--text-faint);
}

.footer-bottom .back-top {
    font-family: var(--font-light);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    transition: color .2s;
}

.footer-bottom .back-top:hover {
    color: var(--text);
}

/* ------------------------------------------------
   VÍDEO PRINCIPAL
   ------------------------------------------------ */
.s-video {
    background: var(--bg-1);
    padding: 6rem 0;
}

.video-principal {
    max-width: 760px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
}

.video-principal video {
    width: 100%;
    display: block;
    background: #000;
}

/* ------------------------------------------------
   VÍDEOS NOS DEPOIMENTOS
   ------------------------------------------------ */
.dep-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}