/* ===================================================================
   Proteja Já - Landing Page
   Paleta: preto #141414 · amarelo #F4B400 · branco · cinza · claro #F6F6F4
   Fontes: Poppins (títulos) · Inter (corpo)
=================================================================== */

:root {
    --pj-black: #141414;
    --pj-black-2: #1c1c1c;
    --pj-gold: #F4B400;
    --pj-gold-dark: #d99e00;
    --pj-white: #ffffff;
    --pj-light: #f6f6f4;
    --pj-gray: #6b7280;
    --pj-dark-text: #161616;
    --pj-radius: 14px;
    --pj-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--pj-dark-text);
    background: var(--pj-white);
    line-height: 1.65;
}

h1, h2, h3, h4, .pj-number-value, .pj-step-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* ===================== Botão da marca ===================== */
.btn-pj {
    background: var(--pj-gold);
    color: var(--pj-black);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: .7rem 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 6px 18px rgba(244, 180, 0, .3);
}

.btn-pj:hover,
.btn-pj:focus {
    background: var(--pj-gold-dark);
    color: var(--pj-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(244, 180, 0, .4);
}

.btn-pj.btn-lg {
    padding: .9rem 2.1rem;
    font-size: 1.05rem;
}

.btn-pj i,
.btn-pj svg,
.btn-pj .ico {
    width: 20px;
    height: 20px;
}

/* Ícone WhatsApp (sprite) e ícones Lucide (svg) genéricos */
.ico {
    display: inline-block;
    vertical-align: -.18em;
    fill: currentColor;
}

.ico-wa {
    width: 1.2em;
    height: 1.2em;
}

/* ===================== Microcopy ===================== */
.pj-microcopy {
    display: block;
    color: var(--pj-gold);
    font-size: .9rem;
    font-weight: 600;
    margin-top: .6rem;
}

.pj-microcopy-dark {
    color: var(--pj-gold-dark);
}

/* ===================== Navbar ===================== */
.pj-navbar {
    background: rgba(20, 20, 20, .92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(244, 180, 0, .15);
    padding: .6rem 0;
    transition: transform .35s ease, padding .2s ease, background .2s ease;
    will-change: transform;
}

/* esconde ao rolar para baixo, reaparece ao subir */
.pj-navbar.pj-hidden {
    transform: translateY(-100%);
}

.pj-navbar.pj-scrolled {
    padding: .35rem 0;
    background: rgba(20, 20, 20, .98);
}

/* compacta a navbar no desktop: aproxima logo e CTA do centro */
@media (min-width: 992px) {
    .pj-navbar>.container {
        max-width: 1040px;
    }
}

.pj-logo {
    height: 92px;
    width: auto;
    transition: height .2s ease;
}

.pj-navbar.pj-scrolled .pj-logo {
    height: 70px;
}

.pj-menu {
    gap: .1rem;
}

.pj-navbar .nav-link {
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    padding: .4rem .7rem;
    white-space: nowrap;
}

.pj-navbar .nav-link:hover {
    color: var(--pj-gold);
}

.pj-navbar .nav-link.active {
    color: var(--pj-gold);
    font-weight: 600;
}

/* ===================== Menu mobile (offcanvas) ===================== */
.pj-offcanvas {
    background: var(--pj-black);
    color: #fff;
    width: 86%;
    max-width: 420px;
    border-left: 1px solid rgba(244, 180, 0, .15);
}

.pj-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pj-offcanvas-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.pj-offcanvas-logo {
    height: 62px;
    width: auto;
}

.pj-offcanvas-menulabel {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.pj-offcanvas-close {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s ease, color .2s ease;
}

.pj-offcanvas-close:hover {
    border-color: var(--pj-gold);
    color: var(--pj-gold);
}

.pj-offcanvas-close i,
.pj-offcanvas-close svg {
    width: 24px;
    height: 24px;
}

.pj-offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.pj-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.pj-mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pj-mobile-menu a {
    display: block;
    text-align: center;
    padding: 1.15rem 1rem;
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-weight: 500;
    transition: background .2s ease, color .2s ease;
}

.pj-mobile-menu a:hover,
.pj-mobile-menu a:active {
    background: rgba(244, 180, 0, .08);
    color: var(--pj-gold);
}

.pj-offcanvas-cta {
    margin: 1.5rem 1.3rem 2rem;
    width: auto !important;
}

/* ===================== Hero ===================== */
.pj-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background: #0d0d0d url('../images/hero.webp') center center / cover no-repeat;
    color: var(--pj-white);
    padding: 9rem 0 5rem;
    overflow: hidden;
}

/* camada escura + blur sobre a foto, pra leitura */
.pj-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(13, 13, 13, .74) 0%, rgba(13, 13, 13, .58) 45%, rgba(13, 13, 13, .82) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: none;
}

.pj-hero::before {
    /* brilho dourado sutil */
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 80% 25%, rgba(244, 180, 0, .14), transparent 48%);
    pointer-events: none;
}

.pj-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pj-eyebrow {
    display: inline-block;
    color: var(--pj-gold);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: .85rem;
    margin-bottom: 1rem;
}

.pj-hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.4rem;
}

.pj-hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .82);
    max-width: 640px;
    margin-bottom: 2rem;
}

.pj-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pj-cta-group .pj-microcopy {
    margin-top: 0;
}

.pj-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pj-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(244, 180, 0, .3);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
}

.pj-badge i,
.pj-badge svg {
    width: 18px;
    height: 18px;
    color: var(--pj-gold);
}

/* ===================== Seções (genérico) ===================== */
.pj-section {
    padding: 5.5rem 0;
}

.pj-section-light {
    background: var(--pj-light);
}

.pj-section-alt {
    background: #fff;
}

.pj-section-dark {
    background: var(--pj-black);
    color: rgba(255, 255, 255, .85);
}

.pj-section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.text-center.pj-section-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    background: var(--pj-gold);
    border-radius: 4px;
    margin: 1rem auto 0;
}

/* ===================== Cards de dores ===================== */
.pj-card {
    background: #fff;
    border-radius: var(--pj-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--pj-shadow);
    border-bottom: 3px solid transparent;
    transition: transform .2s ease, border-color .2s ease;
    text-align: center;
}

.pj-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--pj-gold);
}

.pj-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--pj-black);
    color: var(--pj-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: transform .25s ease;
}

.pj-card:hover .pj-card-icon {
    transform: scale(1.12) rotate(-5deg);
}

.pj-card-icon i,
.pj-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--pj-gold);
}

.pj-card-title {
    font-size: 1.1rem;
    margin-bottom: .6rem;
}

.pj-card p {
    color: var(--pj-gray);
    font-size: .95rem;
    margin: 0;
}

/* ===================== Passos ===================== */
.pj-step {
    background: var(--pj-black-2);
    border-radius: var(--pj-radius);
    padding: 2.5rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    transition: border-color .2s ease;
}

.pj-step:hover {
    border-color: rgba(244, 180, 0, .4);
}

.pj-step-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--pj-gold);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
    opacity: .9;
}

.pj-step-title {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: .7rem;
}

.pj-step p {
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

/* ===================== Números ===================== */
.pj-number {
    transition: transform .25s ease;
}

.pj-number:hover {
    transform: translateY(-6px);
}

.pj-number-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--pj-black);
    color: var(--pj-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform .25s ease;
}

.pj-number:hover .pj-number-icon {
    transform: scale(1.12) rotate(5deg);
}

.pj-number-icon i,
.pj-number-icon svg {
    width: 28px;
    height: 28px;
    color: var(--pj-gold);
}

.pj-number-value {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--pj-black);
    line-height: 1;
}

.pj-number p {
    color: var(--pj-gray);
    font-size: .92rem;
    margin: .6rem auto 0;
    max-width: 220px;
}

/* ===================== Sobre ===================== */
.pj-about-img {
    border-radius: var(--pj-radius);
    overflow: hidden;
    box-shadow: var(--pj-shadow);
    aspect-ratio: 4 / 3;
}

.pj-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pj-about-img:hover img {
    transform: scale(1.05);
}

.pj-credentials {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pj-credentials li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .4rem 0;
    font-weight: 500;
}

.pj-credentials i,
.pj-credentials svg {
    width: 22px;
    height: 22px;
    color: #fff;
    background: var(--pj-gold);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
}

/* ===================== Depoimentos ===================== */
.pj-review {
    background: var(--pj-black-2);
    border-radius: var(--pj-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .06);
}

.pj-stars {
    color: var(--pj-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pj-review p {
    color: rgba(255, 255, 255, .85);
    font-style: italic;
}

.pj-review-author {
    color: var(--pj-gold);
    font-weight: 600;
    margin-top: 1rem;
}

/* ===================== FAQ ===================== */
.pj-accordion {
    max-width: 800px;
}

.pj-accordion .accordion-item {
    border: none;
    border-radius: var(--pj-radius) !important;
    margin-bottom: .8rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.pj-accordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--pj-black);
    padding: 1.2rem 1.4rem;
}

.pj-accordion .accordion-button:not(.collapsed) {
    background: var(--pj-black);
    color: var(--pj-gold);
    box-shadow: none;
}

.pj-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.pj-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(5deg);
}

.pj-accordion .accordion-body {
    color: var(--pj-gray);
    padding: 1.2rem 1.4rem;
}

/* abertura instantânea: evita o bug de várias perguntas abertas no hover */
.pj-accordion .accordion-collapse.collapsing {
    transition: none;
}

/* ===================== Formulário ===================== */
.pj-form-sub {
    color: rgba(255, 255, 255, .7);
}

.pj-form .form-label {
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    font-size: .92rem;
}

.pj-form .form-control {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 10px;
    padding: .75rem 1rem;
}

.pj-form .form-control::placeholder {
    color: rgba(255, 255, 255, .4);
}

.pj-form .form-control:focus {
    background: rgba(255, 255, 255, .1);
    border-color: var(--pj-gold);
    box-shadow: 0 0 0 .2rem rgba(244, 180, 0, .2);
    color: #fff;
}

/* ===================== CTA Final ===================== */
.pj-cta-final {
    background:
        linear-gradient(rgba(20, 20, 20, .92), rgba(20, 20, 20, .92)),
        linear-gradient(135deg, #0d0d0d, #262626);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    border-top: 3px solid var(--pj-gold);
}

.pj-cta-final-title {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

/* ===================== Rodapé ===================== */
.pj-footer {
    background: #0d0d0d;
    color: rgba(255, 255, 255, .7);
    padding: 3.5rem 0 1.5rem;
}

.pj-footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 1rem;
}

.pj-footer-text {
    font-size: .92rem;
}

.pj-footer-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Contato: lista plana centralizada (padrão da referência) */
.pj-footer-list-plain {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pj-footer-list-plain li {
    padding: .25rem 0;
    font-size: .95rem;
}

.pj-footer-list-plain a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.pj-footer-list-plain a:hover {
    color: var(--pj-gold);
}

.pj-footer-note {
    font-size: .88rem;
    color: rgba(255, 255, 255, .45);
    margin-top: .8rem;
}

.pj-social {
    display: flex;
    gap: .8rem;
}

.pj-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .2s ease, color .2s ease;
}

.pj-social a:hover {
    background: var(--pj-gold);
    color: var(--pj-black);
}

.pj-social a svg,
.pj-social a i,
.pj-social a .ico {
    width: 22px;
    height: 22px;
}

.pj-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: .88rem;
    color: rgba(255, 255, 255, .5);
}

.pj-footer-bottom p {
    margin: .25rem 0;
}

.pj-footer-bottom a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.pj-footer-bottom a:hover {
    color: var(--pj-gold);
}

.pj-footer-copy {
    white-space: nowrap;
}

.pj-footer-terms {
    margin-top: .6rem !important;
}

/* ===================== WhatsApp flutuante ===================== */
.pj-whats-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .3);
    transition: transform .15s ease;
}

.pj-whats-float:hover {
    color: #fff;
    transform: scale(1.08);
}

.pj-whats-float i,
.pj-whats-float svg,
.pj-whats-float .ico {
    width: 24px;
    height: 24px;
}

/* ===================== Reveal animation ===================== */
.pj-reveal {
    opacity: 0;
    transform: translateY(30px) scale(.94);
    transition: opacity .55s ease, transform .7s cubic-bezier(.34, 1.56, .64, 1);
}

.pj-reveal.pj-visible {
    opacity: 1;
    transform: none;
}

/* ===================== Responsivo ===================== */
@media (max-width: 991px) {
    .pj-navbar {
        background: rgba(20, 20, 20, .98);
        padding: .4rem 0;
    }

    .pj-logo {
        height: 58px;
    }

    .pj-navbar.pj-scrolled .pj-logo {
        height: 48px;
    }

    .pj-hero {
        padding: 7.5rem 0 4rem;
        text-align: center;
    }

    .pj-cta-group {
        flex-direction: column;
        align-items: center;
        gap: .8rem;
    }

    .pj-hero-badges {
        justify-content: center;
    }

    .pj-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575px) {
    .pj-section {
        padding: 4rem 0;
    }

    .pj-logo {
        height: 52px;
    }

    /* CTAs ocupam a largura (alvo de toque maior) */
    .btn-pj.btn-lg {
        width: 100%;
        max-width: 340px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pj-hero-title {
        font-size: 2rem;
    }

    .pj-badge {
        font-size: .8rem;
        padding: .45rem .8rem;
    }

    .pj-section-title {
        font-size: 1.5rem;
    }

    /* rodapé: respiro entre colunas empilhadas */
    .pj-footer-brand,
    .pj-footer-contact {
        margin-bottom: 1.5rem;
    }
}

/* ===================== Cookie banner (LGPD) ===================== */
.pj-cookie {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: rgba(20, 20, 20, .97);
    border-top: 1px solid rgba(244, 180, 0, .25);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .25);
}

.pj-cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.pj-cookie-text {
    margin: 0;
    font-size: .92rem;
    color: rgba(255, 255, 255, .85);
    flex: 1 1 320px;
}

.pj-cookie-text a {
    color: var(--pj-gold);
}

.pj-cookie .btn-pj {
    flex-shrink: 0;
}

/* sobe o WhatsApp flutuante enquanto o banner está aberto */
body.pj-cookie-open .pj-whats-float {
    bottom: 96px;
}

@media (max-width: 575px) {
    .pj-cookie-inner {
        justify-content: center;
        text-align: center;
    }
}

/* ===================== Páginas legais (Termos / Política) ===================== */
.pj-legal-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1c1c1c 60%, #262626 100%);
    color: #fff;
    padding: 9rem 0 3.5rem;
    text-align: center;
    border-bottom: 3px solid var(--pj-gold);
}

.pj-legal-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
}

.pj-legal-hero p {
    color: rgba(255, 255, 255, .6);
    margin: .6rem 0 0;
    font-size: .95rem;
}

.pj-legal-body {
    background: var(--pj-light);
    padding: 4rem 0;
}

.pj-legal-content {
    background: #fff;
    border-radius: var(--pj-radius);
    box-shadow: var(--pj-shadow);
    padding: 2.5rem;
    max-width: 880px;
    margin: 0 auto;
}

.pj-legal-content h2 {
    font-size: 1.3rem;
    margin: 2rem 0 .8rem;
    color: var(--pj-black);
}

.pj-legal-content h2:first-child {
    margin-top: 0;
}

.pj-legal-content p,
.pj-legal-content li {
    color: #3a3a3a;
    font-size: .98rem;
}

.pj-legal-content a {
    color: var(--pj-gold-dark);
    font-weight: 600;
}

.pj-legal-content ul {
    padding-left: 1.2rem;
}

.pj-legal-content li {
    margin-bottom: .4rem;
}

@media (max-width: 575px) {
    .pj-legal-content {
        padding: 1.6rem;
    }
}

/* ===================== Popup de orçamento (lead) ===================== */
.pj-lead-modal .modal-content {
    background: var(--pj-black);
    color: #fff;
    border: 1px solid rgba(244, 180, 0, .2);
    border-radius: 16px;
}

.pj-lead-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 1.2rem 1.4rem;
}

.pj-lead-modal .modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
}

.pj-lead-modal .modal-body {
    padding: 1.4rem;
}

.pj-lead-sub {
    color: rgba(255, 255, 255, .65);
    font-size: .92rem;
    margin-bottom: 1.2rem;
}

.pj-lead-modal .form-label {
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
    font-size: .9rem;
}

.pj-lead-modal .form-control,
.pj-lead-modal .form-select {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 10px;
    padding: .7rem 1rem;
}

.pj-lead-modal .form-control::placeholder {
    color: rgba(255, 255, 255, .4);
}

.pj-lead-modal .form-control:focus,
.pj-lead-modal .form-select:focus {
    background: rgba(255, 255, 255, .1);
    border-color: var(--pj-gold);
    box-shadow: 0 0 0 .2rem rgba(244, 180, 0, .2);
    color: #fff;
}

/* opções da lista aparecem sobre fundo claro no navegador */
.pj-lead-modal .form-select option {
    color: #161616;
}

.pj-lead-consent {
    margin: .9rem 0 0;
    text-align: center;
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
}

.pj-lead-consent a {
    color: var(--pj-gold);
    text-decoration: underline;
}

/* ===================== Galeria / Nossos trabalhos ===================== */
.pj-section-sub {
    color: var(--pj-gray);
    max-width: 620px;
    margin: 0 auto 1rem;
}

.pj-gallery-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 2.8rem 0 1.4rem;
    text-align: center;
}

.pj-gallery-subtitle::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: var(--pj-gold);
    border-radius: 3px;
    margin: .8rem auto 0;
}

/* Antes e depois */
.pj-ba-card {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.pj-ba-item {
    position: relative;
    margin: 0;
    border-radius: var(--pj-radius);
    overflow: hidden;
    box-shadow: var(--pj-shadow);
}

.pj-ba-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.pj-ba-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: rgba(20, 20, 20, .85);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .25rem .7rem;
    border-radius: 50px;
}

.pj-ba-tag-after {
    background: var(--pj-gold);
    color: var(--pj-black);
}

/* Grade da galeria */
.pj-gallery-item {
    display: block;
    border-radius: var(--pj-radius);
    overflow: hidden;
    box-shadow: var(--pj-shadow);
    cursor: pointer;
}

.pj-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .35s ease;
}

.pj-gallery-item:hover img {
    transform: scale(1.06);
}

/* Detalhe do depoimento */
.pj-review-meta {
    display: block;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
    font-size: .82rem;
    margin-top: .2rem;
}

/* ===================== Lightbox ===================== */
.pj-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.pj-lightbox.pj-open {
    display: flex;
}

.pj-lightbox img {
    max-width: 92%;
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
}

.pj-lightbox-close {
    position: absolute;
    top: 16px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
}

.pj-lightbox-close:hover {
    color: var(--pj-gold);
}

/* ===================== Carrossel infinito de depoimentos ===================== */
.pj-reviews-marquee {
    overflow: hidden;
    margin-top: 2.5rem;
    padding: .5rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.pj-reviews-track {
    display: flex;
    align-items: stretch;
    width: max-content;
    animation: pj-marquee 55s linear infinite;
}

.pj-reviews-marquee:hover .pj-reviews-track {
    animation-play-state: paused;
}

.pj-review-slide {
    flex: 0 0 360px;
    width: 360px;
    margin-right: 1.5rem;
}

.pj-review-slide .pj-review {
    height: 100%;
}

@keyframes pj-marquee {
    from {
        transform: translateX(0);
    }

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

@media (max-width: 575px) {
    .pj-review-slide {
        flex-basis: 290px;
        width: 290px;
    }
}

/* acessibilidade: sem animação para quem prefere movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .pj-reviews-track {
        animation: none;
    }

    .pj-reviews-marquee {
        overflow-x: auto;
    }
}

/* ===================== Animações ===================== */
@keyframes pj-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* entrada escalonada do conteúdo do hero ao carregar */
.pj-hero .pj-eyebrow,
.pj-hero .pj-hero-title,
.pj-hero .pj-hero-desc,
.pj-hero .pj-cta-group,
.pj-hero .pj-hero-badges {
    animation: pj-fade-up .7s ease both;
}

.pj-hero .pj-eyebrow {
    animation-delay: .05s;
}

.pj-hero .pj-hero-title {
    animation-delay: .15s;
}

.pj-hero .pj-hero-desc {
    animation-delay: .3s;
}

.pj-hero .pj-cta-group {
    animation-delay: .45s;
}

.pj-hero .pj-hero-badges {
    animation-delay: .6s;
}

/* pulso sutil no botão flutuante do WhatsApp */
.pj-whats-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: pj-whats-pulse 2.4s ease-out infinite;
}

@keyframes pj-whats-pulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {

    .pj-hero .pj-eyebrow,
    .pj-hero .pj-hero-title,
    .pj-hero .pj-hero-desc,
    .pj-hero .pj-cta-group,
    .pj-hero .pj-hero-badges {
        animation: none;
    }

    .pj-whats-float::before {
        animation: none;
        display: none;
    }

    .pj-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
