@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-ExtraBold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Be Vietnam Pro";
    src: url("../fonts/BeVietnamPro-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #FAF8FC;
    --color-bg-warm: #F0EBF5;
    --color-bg-accent: #E8E0F0;
    --color-bg-blue: #E8F7F8;
    --color-text: #2A1F3D;
    --color-text-soft: #5A4E6B;
    --color-text-muted: #8A7FA0;
    --color-primary: #5B2D8E;
    --color-primary-dark: #4A2375;
    --color-primary-light: #8B5FBF;
    --color-secondary: #B3E3E5;
    --color-secondary-dark: #7BC8CB;
    --color-white: #FFFFFF;
    --color-border: #DDD4E8;
    --color-green: #4A9B7F;
    --color-green-bg: #EAF5F0;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --max-width: 960px;
    --section-padding: 3rem 1.4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
}

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

/* ── TOPBAR ── */
.topbar {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.topbar span {
    color: var(--color-secondary);
    font-weight: 700;
}

/* ── HERO ── */
.hero {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4.2vw, 2.2rem);
    line-height: 1.2;
    color: var(--color-text);
    max-width: 720px;
    margin: 0 auto 1.5rem;
}

.hero h1 em,
em {
    color: var(--color-primary);
    font-style: italic;
}

.hero__sub {
    font-size: 18px;
    color: var(--color-text-soft);
    max-width: 580px;
    margin: 0 auto 1rem;
    line-height: 1.6;
    animation: fadeUp 0.6s ease both;
    animation-delay: 0.2s;
}

/* ── CTA BUTTON ── */
.cta-btn {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.cta-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(91, 45, 142, 0.3);
}

.cta-sub {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ── SECTION: O QUE TE TRAVA ── */
.travas {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2rem);
    line-height: 1.25;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.trava-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
    max-width: 1250px;
    margin: 0 auto;
}

.trava-card {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 1.5rem 1.8rem;
    border: 1px solid var(--color-border);
}

.trava-card__dor {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.trava-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--color-primary);
}

.trava-card p {
    font-size: 1rem;
    color: var(--color-text-soft);
    line-height: 1.6;
}

/* ── SECTION: O QUE VOCÊ RECEBE ── */
.conteudo {
    padding: var(--section-padding);
}


.modulos {
    max-width: 720px;
    margin: 0 auto;
    margin-top: -1rem;
}

.modulo {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: flex-start;
}

.modulo:last-child {
    border-bottom: none;
}

.modulo__num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-secondary-dark);
    min-width: 3rem;
    line-height: 1;
    padding-top: 2px;
}

.modulo h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.modulo p {
    font-size: 1rem;
    color: var(--color-text-soft);
    line-height: 1.5;
}



/* ── SECTION: DIFERENCIAIS ── */
.diferenciais {
    padding: var(--section-padding);
}

.proof-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

/* ── SECTION: OPORTUNIDADES REAIS ── */
.oportunidades {
    padding: var(--section-padding);
    background: var(--color-bg-blue);
}

.oportunidades__intro {
    text-align: center;
    max-width: 700px;
    margin: -1rem auto 1.5rem;
    font-size: 1.15rem;
    color: var(--color-text-soft);
    line-height: 1.8;
}

.vagas-list {
    max-width: 760px;
    margin: 0 auto 2.5rem;
    display: grid;
    gap: 1rem;
}

.vaga-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.4rem 1.6rem;
    box-shadow: 0 4px 14px rgba(91, 45, 142, 0.05);
}

.vaga-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.vaga-card__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.vaga-card__date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background: var(--color-bg-blue);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-weight: 600;
}

.vaga-card__desc {
    margin: 0;
    color: var(--color-text-soft);
    line-height: 1.6;
}

.oportunidades__urgencia {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-primary-dark);
    font-weight: 700;
}


.oportunidades__prova {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    /* mobile: 1 por linha */
    gap: 1.2rem;
}

.oportunidades__prova img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* telas maiores: 2 imagens por linha */
@media (min-width: 768px) {
    .oportunidades__prova {
        max-width: 900px;
        grid-template-columns: repeat(2, 1fr);
    }
}



.oportunidades__prova img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.oportunidades__prova img+img {
    margin-top: 1.2rem;
}

.proof-placeholder+.proof-placeholder {
    margin-top: 1.2rem;
}

/* ── SECTION: PROVA SOCIAL ── */
.resultados {
    padding: var(--section-padding);
    background: var(--color-bg-warm);
}

/* ── RESULTADOS ───────────────────────────────────────────── */
.resultado-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* 3 colunas em telas maiores */
@media (min-width: 1024px) {
    .resultado-cards {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.resultado-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(91, 45, 142, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resultado-card__quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.12;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    pointer-events: none;
}

/* Espaço para foto da assistente */
.resultado-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 1.25rem;
    border: 3px solid var(--color-bg-blue);
    background: var(--color-bg-blue);
}

.resultado-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder caso ainda não tenha foto */
.resultado-card__avatar--placeholder::before {
    content: "👩";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.75rem;
}

.resultado-card p {
    margin: 0 0 1.5rem;
    line-height: 1.8;
    color: var(--color-text-soft);
    position: relative;
    z-index: 1;
    flex: 1;
}

.resultado-card__author {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.resultado-card__role {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ── SECTION: OFERTA ── */
.oferta {
    padding: 3.5rem 1rem 4.2rem;
    text-align: center;
}

.oferta-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 2.8rem 2.45rem;
    border: none;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F5FC 100%);
    box-shadow:
        0 0 0 0.13rem var(--color-secondary-dark),
        0 0 0 0.44rem var(--color-secondary),
        0 1rem 2.8rem rgba(91, 45, 142, 0.18);
}

.oferta-box h2 {
    font-family: var(--font-display);
    font-size: 1.84rem;
    margin-bottom: 0.5rem;
}

.oferta-box h2::after {
    content: '';
    display: block;
    width: 3.5rem;
    height: 0.175rem;
    background: var(--color-secondary);
    border-radius: 0.09rem;
    margin: 0.7rem auto 1.4rem;
}

/* ── BÔNUS / URGÊNCIA ───────────────────────────────────── */
.oferta-bonus {
    margin: 1.2rem 0 1.6rem;
    padding: 1rem 1.2rem;
    background: var(--color-bg-blue);
    border: 1px solid var(--color-secondary-dark);
    border-radius: 0.85rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-soft);
}

.oferta-bonus strong {
    color: var(--color-primary);
}


/* ── ANCORAGEM DE VALOR ─────────────────────────────────── */
.oferta-value {
    margin: 1.8rem 0 1.4rem;
    padding: 1.25rem 1.4rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0.85rem;
    text-align: left;
}

.oferta-value__label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.9rem;
}

.oferta-value__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    /* ligeiramente maior */
    line-height: 1.6;
    color: var(--color-text-soft);
}

/* ── PREÇO ──────────────────────────────────────────────── */
.oferta-price__from {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--color-text-muted);
}

@media (max-width: 640px) {
    .oferta-value {
        padding: 1.1rem 1.15rem;
    }

    .oferta-value__row {
        font-size: 0.95rem;
    }

    .oferta-price__from {
        font-size: 0.95rem;
    }
}

/* ── O QUE ESTÁ INCLUSO ─────────────────────────────────── */
.oferta-includes {
    text-align: left;
    margin-bottom: 1.4rem;
}

.oferta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--color-text-soft);
    line-height: 1.5;
    padding: 0.7rem 0.875rem;
    background: var(--color-bg-blue);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.oferta-item .check {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.96rem;
    flex-shrink: 0;
}

/* ── ANCORAGEM DE VALOR ─────────────────────────────────── */
.oferta-value {
    margin: 1.6rem 0 1.2rem;
    padding: 1rem 1.2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0.85rem;
    text-align: left;
}

.oferta-value__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.oferta-value__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-soft);
}

.oferta-value__row+.oferta-value__row {
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--color-border);
}

.oferta-value__row strong {
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
}

.oferta-value__details {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text);
}

.oferta-value__details span {
    display: block;
}

.oferta-value__details {
    font-size: 0.9rem;
    color: var(--color-text);
}

.oferta-value__checks {
    display: grid;
    gap: 0.45rem;
    width: 100%;
}

.oferta-value__check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.6;
}

.oferta-value__check .check {
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
}


/* Preço riscado do bônus */
.oferta-value__old-price {
    text-decoration: line-through;
    opacity: 0.65;
    font-weight: 500;
    margin-right: 0.35rem;
}

/* Destaque do bônus */
.oferta-value__bonus-price {
    color: var(--color-green) !important;
    font-weight: 700;
}

/* ── PREÇO ──────────────────────────────────────────────── */
.oferta-price {
    margin: 1.4rem 0 0.5rem;
}

.oferta-price__from {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.oferta-price__value {
    font-family: var(--font-display);
    font-size: 2.975rem;
    color: var(--color-primary);
}

.oferta-price__installment {
    font-size: 1.5rem;
    color: var(--color-text-soft);
    margin-bottom: 1.4rem;
}

/* ── CTA ────────────────────────────────────────────────── */
.cta-btn--large {
    font-size: 1.05rem;
    padding: 1.05rem 2.8rem;
    border-radius: 0.7rem;
    width: 100%;
    max-width: 21rem;
}

/* ── RESPONSIVO ─────────────────────────────────────────── */
@media (max-width: 640px) {
    .oferta-box {
        padding: 2.1rem 1.35rem;
    }

    .oferta-box h2 {
        font-size: 1.5rem;
    }

    .oferta-bonus,
    .oferta-value {
        padding: 1rem;
    }

    .oferta-item {
        font-size: 0.95rem;
    }

    .oferta-value__row {
        font-size: 0.9rem;
    }

    .oferta-value__details {
        font-size: 0.85rem;
    }

    .oferta-price__value {
        font-size: 2.5rem;
    }

    .cta-btn--large {
        max-width: 100%;
    }
}

/* ── ANCORAGEM DE VALOR ─────────────────────────────────── */
.oferta-value {
    margin: 1.8rem 0 1.4rem;
    padding: 1.25rem 1.4rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 0.85rem;
    text-align: left;
}

/* "Hoje você recebe" */
.oferta-value__label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* Linhas principais */
.oferta-value__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.08rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* Valores à direita */
.oferta-value__row strong {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Espaçamento entre linhas */
.oferta-value__row+.oferta-value__row {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--color-border);
}

/* Texto dos checks */
.oferta-value__details {
    font-size: 1rem;
    color: var(--color-text);
}

/* Preço antigo do bônus */
.oferta-value__old-price {
    text-decoration: line-through;
    opacity: 0.65;
    font-weight: 500;
    margin-right: 0.35rem;
}

/* Destaque do bônus */
.oferta-value__bonus-price {
    color: var(--color-green) !important;
    font-weight: 700;
    font-size: 1.05rem;
}

@media (max-width: 640px) {
    .oferta-value {
        padding: 1.1rem 1.15rem;
    }

    .oferta-value__label {
        font-size: 0.85rem;
    }

    .oferta-value__row {
        font-size: 1rem;
    }

    .oferta-value__row strong {
        font-size: 1rem;
    }

    .oferta-value__details {
        font-size: 0.95rem;
    }
}

/* ── GARANTIA ───────────────────────────────────────────── */
.garantia-box {
    margin: 2rem auto 2rem;
    padding: 3.5rem 1rem 4.2rem;
    max-width: 560px;
    text-align: center;
    background: linear-gradient(180deg,
            var(--color-bg-blue) 0%,
            var(--color-white) 100%);
    border-radius: 1.2rem;
    border: 2px solid var(--color-secondary-dark);
}

.garantia-box__icon {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.garantia-box__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.2;
    color: var(--color-primary);
}

.garantia-box__text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-soft);
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 640px) {
    .garantia-box {

        margin-left: 1rem;
        margin-right: 1rem;
        padding: 1.35rem 1.2rem;

    }

    .garantia-box__icon {
        font-size: 2rem;
        margin-bottom: 0.65rem;
    }

    .garantia-box__title {
        font-size: 1.15rem;
    }

    .garantia-box__text {
        font-size: 0.95rem;
    }
}

/* ── SECTION: FAQ ── */
.faq {
    padding: 5rem 1.5rem;
    background: var(--color-bg-warm);
}

.faq-list {
    max-width: 42.5rem;
    margin: 0 auto;
}

.faq-item {
    border-bottom: none;
    margin-bottom: 0.75rem;
}

.faq-item summary {
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--color-white);
    border-radius: 0.75rem;
    border: 1px solid var(--color-border);
    transition: all 0.2s;
}

.faq-item summary:hover {
    border-color: var(--color-secondary-dark);
    box-shadow: 0 2px 12px rgba(91, 45, 142, 0.06);
}

.faq-item[open] summary {
    border-color: var(--color-secondary-dark);
    border-radius: 0.75rem 0.75rem 0 0;
    border-bottom: none;
}

.faq-item .faq-answer {
    padding: 1rem 1.5rem 1.25rem;
    font-size: 1rem;
    color: var(--color-text-soft);
    line-height: 1.7;
    background: var(--color-white);
    border: 1px solid var(--color-secondary-dark);
    border-top: none;
    border-radius: 0 0 0.75rem 0.75rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

/* ── FOOTER ── */
.footer {
    text-align: center;
    padding: 2rem 1.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero__sub {
    animation: fadeUp 0.6s ease both;
}

.hero h1 {
    animation-delay: 0.1s;
}

.hero__sub {
    animation-delay: 0.2s;
}

/* ── WPP FAB ── */
.wpp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.wpp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: #25d366;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .3), 0 2px 4px rgba(0, 0, 0, .1);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease;
    animation: wppEntrada .4s cubic-bezier(.34, 1.56, .64, 1) both;
    animation-delay: .5s;
}

@keyframes wppEntrada {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.wpp-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
}

.wpp-btn:active {
    transform: scale(.95);
}

.wpp-btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.wpp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .5);
    animation: pulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.wpp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #ff3b5c;
    border-radius: 50%;
    border: 2.5px solid #fff;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgePop .4s cubic-bezier(.34, 1.56, .64, 1) both;
    animation-delay: 1.2s;
    opacity: 0;
}

@keyframes badgePop {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wpp-card {
    display: none;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18), 0 2px 8px rgba(0, 0, 0, .08);
    position: relative;
    animation: cardIn .3s cubic-bezier(.34, 1.56, .64, 1) both;
}

.wpp-card.aberto {
    display: block;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: scale(.85) translateY(8px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wpp-card-fechar {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #f0f2f5;
    color: #8e8e9e;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpp-card-fechar:hover {
    background: #e4e6e9;
    color: #333;
}

.wpp-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.wpp-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c47);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wpp-card-avatar svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.wpp-card-nome {
    font-weight: 600;
    font-size: .9rem;
    color: #1a1a2e;
}

.wpp-card-status {
    font-size: .75rem;
    color: #8e8e9e;
    margin-top: 1px;
}

.wpp-card-msg {
    background: #f0f2f5;
    border-radius: 0 12px 12px 12px;
    padding: 10px 14px;
    font-size: .85rem;
    color: #3a3a4a;
    line-height: 1.5;
    margin-bottom: 14px;
}

.wpp-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s ease;
}

.wpp-card-cta:hover {
    background: #1fb855;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
}

.wpp-card-cta svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

@media (max-width: 480px) {
    .wpp-fab {
        bottom: 20px;
        right: 16px;
    }

    .wpp-card {
        width: 260px;
    }

    .wpp-btn {
        width: 56px;
        height: 56px;
    }

    .wpp-btn svg {
        width: 26px;
        height: 26px;
    }
}