
:root {
    --brand: #E05562;
    --ok: #22c55e;
    --text: #1f2937;
    --muted: #6b7280;
    --bg: #f6f7f8;
    --card: #ffffff;
    --stroke: #e5e7eb;
    --shadow: 0 8px 20px rgba(0, 0, 0, .08);
    --radius: 14px;
}

.link-discreto-2 {
    display: block;
    font-size: 12px;
    color: #999; /* cinza neutro */
    text-align: center;
    text-decoration: none;
    padding: 15px 0 0 0;
}


.btn-pagar {
    appearance: auto;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-variant-alternates: normal;
    font-variant-position: normal;
    font-variant-emoji: normal;

    font-stretch: normal;

    font-family: inherit;
    font-optical-sizing: auto;
    font-size-adjust: none;
    font-kerning: auto;
    font-feature-settings: normal;
    font-variation-settings: normal;
    text-rendering: auto;

    letter-spacing: normal;
    word-spacing: normal;
    line-height: normal;
    text-transform: none;
    text-indent: 0px;
    text-shadow: none;

    text-align: center;

    box-sizing: border-box;
    text-decoration: none;
    margin: 0;
    padding-block: 1px;
    padding-inline: 6px;
}
body {
    margin: 0;
    background: var(--bg);
    font-family: Inter, sans-serif;
    color: var(--text)
}

header.top {
    background: #fff;
    border-bottom: 1px solid var(--stroke)
}

header.top .in {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    justify-content: space-between
}

header.top img {
    height: 34px
}

.wrap {
    max-width: 500px;
    margin: 0 auto;
    padding: 16px
}

.card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 35px;
}

.pad {
    padding: 18px
}

.title {
    font-weight: 800;
    font-size: 20px;
    margin: 0 0 6px
}

.sub {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 10px
}

/* Mídia (foto + badges + preço) */
.media {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0
}

.avatar {
    width: 100%;
    max-height: 450px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid var(--stroke)
}

.badge {
    font-size: 15px;
    padding: 5px 7px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--stroke);
    font-weight: 600
}

.badges {
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
}

.price {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand);
    margin-top: 6px
}

/* PREVIEW DE VÍDEO */
.preview {
    margin-top: 8px
}

.preview-video {

    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid var(--stroke);
    object-fit: cover;
    display: block
}

.preview-tip {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px
}

.pix-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center
}

.qr {
    width: 200px;
    height: 200px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff;
    padding: 8px
}

.copy {
    display: flex;
    gap: 8px;
    width: 100%
}

.copy input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    font-size: 14px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-weight: 800;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 8px 16px rgba(224, 85, 98, .25);
    font-size: 18px;
    padding: 10px;
}

.btn-outline {
    background: #fff;
    color: var(--brand);
    border: 2px solid var(--brand)
}

.list {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px
}

.list li {
    display: flex;
    gap: 8px;
    align-items: flex-start
}

.ok {
    width: 18px;
    height: 18px;
    background: var(--ok);
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
    margin-top: 2px
}

.trust {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px
}

.trust > div {
    background: #fff;
    border: 1px dashed var(--stroke);
    border-radius: 12px;
    padding: 10px;
    text-align: center
}

.trust small {
    display: block;
    color: var(--muted);
    font-size: 12px
}

.sum {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--stroke);
    padding: 16px;
    margin-top: 10px
}

.sum .line {
    display: flex;
    justify-content: space-between;
    margin: 8px 0
}

.sum .total {
    font-weight: 800;
    font-size: 20px
}

/* FAQ */
.faq details {
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: #fff;
    padding: 12px;
    margin-top: 8px
}

.faq summary {
    cursor: pointer;
    font-weight: 600
}

.faq p {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted)
}

/* Botão fixo no mobile */
.bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-top: 1px solid var(--stroke);
    padding: 10px 12px;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, .08);
    display: none
}

.bar .btn-primary {
    width: 100%;
    font-size: 16px
}

@media (max-width: 768px) {
    .bar {
        display: block
    }
}

.fala-massagista {
    background: #fff0f3; /* tom suave ligado à marca */
    border: 2px solid #E05562;
    border-radius: 14px;
    padding: 14px 18px;
    position: relative;
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    color: #E05562;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    margin-top: 14px;
}
.price, .duvidas {
    display: inline-block;
}

.price {
    float: left;
}

.duvidas {
    float: right;
    font-size: 14px;
    color: var(--muted);
    cursor: pointer;
    margin-top: 10px;
}
