.trust-email-group .input-with-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(2,6,23,0.25);
    padding: 0.7rem 0.85rem;
}

.trust-email-group .input-icon {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.trust-email-group input[type="email"] {
    background: transparent;
    border: none;
    outline: none;
    color: #0B1220;
    width: 100%;
    font-weight: 600;
}

.trust-hint {
    display: block;
    margin-top: 0.35rem;
    color: rgba(203,213,225,0.95);
    font-size: 0.85rem;
}
:root {
    --primary-color: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #60A5FA;
    --background-color: #F7FAFC;
    --text-color: #2D3748;
    --white: #FFFFFF;
    --success-color: #2563EB;
    --success-dark: #1D4ED8;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: #0B1220;
    color: #E5E7EB;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 480px;
}

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

.header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.timer-container {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: 12px;
}

.timer {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.timer-text {
    color: var(--white);
    font-size: 0.9rem;
}

.price-tag {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #E5E7EB;
    font-weight: 700;
}

input[type="text"], input[type="email"], input[type="tel"] {
    border: 2px solid rgba(59,130,246,0.35);
    border-radius: 10px;
    background: #0F172A;
    font-size: 1.05em;
    padding: 0.85rem 0.9rem;
    color: #E5E7EB;
    margin-bottom: 0.2em;
    box-shadow: 0 8px 24px rgba(2,6,23,0.35);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
    min-width: 0;
    display: block;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
    border-color: #60A5FA;
    background: #0B1220;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}

input:disabled {
    background-color: #F7FAFC;
    cursor: not-allowed;
}

input[type="tel"][disabled] {
    background: #e6fffa;
    border: 2.5px solid #38A169;
    color: #22543d;
    font-family: 'Fira Mono', monospace;
    font-size: 1.08em;
    font-weight: 700;
    padding: 0.85rem 0.9rem 0.85rem 2.2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(56, 161, 105, 0.08);
    letter-spacing: 1px;
    position: relative;
    opacity: 1;
}

.input-phone-verified {
    position: relative;
}

.input-phone-verified .phone-verified-icon {
    position: absolute;
    left: 0.7em;
    top: 50%;
    transform: translateY(-50%);
    color: #38A169;
    font-size: 1.3em;
    pointer-events: none;
    opacity: 0.85;
}

.invite-note {
    display: block;
    margin-top: 0.5rem;
    color: #718096;
    font-size: 0.875rem;
}

.cta-button {
    width: 100%;
    padding: 1.35rem;
    background: var(--success-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.28rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 0 rgba(0,0,0,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite, rotate 3s infinite;
    transform-origin: center center;
}

.cta-button:hover {
    background: var(--success-dark);
    transform: translateY(-2px) rotate(0deg) scale(1.01);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    animation: none;
}

.cta-button:active {
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button:disabled {
    background: #CBD5E0;
    cursor: not-allowed;
    animation: none;
    transform: none;
    box-shadow: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(72, 187, 120, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(-2deg);
    }
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.875rem;
}

.product-image {
    text-align: center;
    width: 100%;
    margin: 0 auto 0.5rem auto;
    padding: 0;
    background: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-product {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    background: #fff;
    display: block;
}

.main-product:hover {
    transform: scale(1.02);
}

.social-proof {
    margin: 2rem 0;
    text-align: center;
}

.social-proof h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.proof-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.proof-image {
    max-width: 45%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.proof-image:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .card {
        padding: 1.5rem;
    }

    .header h1 {
        font-size: 2rem;
    }

    .timer {
        font-size: 2rem;
    }

    .price {
        font-size: 1.75rem;
    }

    .product-image {
        margin: 1rem 0;
        padding: 0.5rem;
    }

    .proof-image {
        max-width: 100%;
    }

    .proof-images {
        flex-direction: column;
        align-items: center;
    }

    .main-product {
        max-width: 90vw;
    }
}

.promo-timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
    width: 100%;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.image-timer-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}

.image-timer-wrapper .main-product {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    background: #fff;
    display: block;
}

.timer-overlay {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    background: #a78bfa;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.13);
    padding: 0.7rem 1.2rem 0.7rem 1.2rem;
    min-width: 180px;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-overlay .timer {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.timer-overlay .timer-text {
    color: #f3e8ff;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 480px) {
    .image-timer-wrapper {
        max-width: 95vw;
    }
    .timer-overlay {
        min-width: 120px;
        padding: 0.5rem 0.5rem;
        font-size: 0.95rem;
    }
    .timer-overlay .timer {
        font-size: 1.3rem;
    }
}

.promo-text {
    background: linear-gradient(90deg, #f7fafc 60%, #e6fffa 100%);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    margin-bottom: 2rem;
    font-size: 1.08rem;
    color: var(--text-color);
    text-align: center;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.07);
    font-family: 'Inter', sans-serif;
    position: relative;
}

.promo-valor {
    color: #38A169;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Fira Mono', monospace;
    background: #e6fffa;
    padding: 0.1em 0.5em;
    border-radius: 6px;
    margin-right: 0.2em;
}

.promo-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.garantia {
    color: #48BB78;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.5px;
}

.typewriter {
    display: block;
    margin-top: 1.1rem;
    font-family: 'Fira Mono', monospace;
    color: #38A169;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    min-height: 1.5em;
    background: #f0fff4;
    border-radius: 6px;
    padding: 0.2em 0.7em;
    box-shadow: 0 1px 4px rgba(56, 161, 105, 0.08);
}

@media (max-width: 480px) {
    .promo-timer-block {
        gap: 0.7rem;
        padding: 1rem 0.3rem 1rem 0.3rem;
    }
    .promo-timer-block .main-product {
        max-width: 90vw;
    }
    .promo-text {
        font-size: 0.98rem;
        padding: 1rem 0.5rem;
    }
    .promo-valor {
        font-size: 1.1rem;
    }
    .typewriter {
        font-size: 1rem;
        padding: 0.2em 0.4em;
    }
}

.lp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(107, 70, 193, 0.08), 0 1.5px 6px rgba(72, 187, 120, 0.07);
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    margin: 2rem auto 1.2rem auto;
    max-width: 420px;
}

.lp-product-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
}

.lp-product-img .main-product {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    background: #fff;
    display: block;
}

.lp-offer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.lp-price {
    font-size: 2rem;
    font-weight: 700;
    color: #38A169;
    font-family: 'Fira Mono', monospace;
    background: #e6fffa;
    border-radius: 8px;
    padding: 0.2em 1em;
    margin-bottom: 0.2em;
    box-shadow: 0 2px 8px rgba(56, 161, 105, 0.07);
}

.lp-timer-block {
    display: flex;
    align-items: center;
    gap: 0.7em;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
    padding: 0.5em 1.2em;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.13);
}

.lp-timer-icon {
    font-size: 1.3em;
    margin-right: 0.2em;
}

.lp-timer {
    font-family: 'Fira Mono', monospace;
    font-size: 1.3em;
    font-weight: 700;
    margin-right: 0.5em;
}

.lp-timer-label {
    font-size: 0.95em;
    color: #f3e8ff;
    margin-left: 0.5em;
    font-weight: 400;
}

.lp-form-card {
    background: #0F172A;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.35);
    margin: 10px;
    border-left: 1px solid rgba(59,130,246,0.15);
    border-right: 1px solid rgba(59,130,246,0.15);
}

.lp-form-title {
    font-size: 1.3rem;
    color: var(--primary-color, #6B46C1);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.lp-form-desc {
    color: #c7d2fe;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

/* ===== Offer Highlight (Topo) ===== */
.offer-highlight {
    width: 100%;
    max-width: 440px;
    margin: 0.6rem auto 0.6rem auto;
    background: linear-gradient(90deg, #DBEAFE 0%, #E0F2FE 100%);
    border: 2px solid #93C5FD;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.10);
    padding: 0.8rem 1rem;
    text-align: center;
}

.offer-title {
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: 0.3px;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.offer-sub {
    color: #1e3a8a;
    font-size: 0.98rem;
    margin-top: 0.2rem;
}

.offer-highlight strong {
    color: var(--primary-dark);
}

.lp-form-price-confirm {
    margin: 1.2rem 0 1.5rem 0;
    font-size: 1.1rem;
    color: #2D3748;
    background: #e6fffa;
    border-radius: 8px;
    padding: 0.5em 1em;
    font-weight: 600;
    text-align: center;
    font-family: 'Fira Mono', monospace;
}

.cta-button {
    width: 100%;
    padding: 1.15rem;
    background: var(--success-color, #48BB78);
    color: var(--white, #fff);
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite, rotate 3s infinite;
    transform-origin: center center;
    margin-top: 0.5rem;
}

.cta-button:hover {
    background: var(--success-dark, #38A169);
    transform: translateY(-2px) rotate(0deg);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    animation: none;
}

.cta-button:active {
    transform: translateY(0) rotate(0deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button:disabled {
    background: #CBD5E0;
    cursor: not-allowed;
    animation: none;
    transform: none;
    box-shadow: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(72, 187, 120, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
    100% {
        transform: rotate(-2deg);
    }
}

@media (max-width: 600px) {
    .lp-header, .lp-form-card {
        max-width: 98vw;
        padding: 1.2rem 0.3rem 1.2rem 0.3rem;
    }
    .lp-product-img .main-product {
        max-width: 90vw;
    }
    .lp-timer-block {
        font-size: 1rem;
        padding: 0.4em 0.7em;
    }
    .lp-price {
        font-size: 1.3rem;
        padding: 0.2em 0.7em;
    }
    .lp-form-price-confirm {
        font-size: 1rem;
        padding: 0.4em 0.7em;
    }
    input[type="text"], input[type="email"], input[type="tel"] {
        font-size: 1em;
        padding: 0.7rem 0.7rem;
    }
    .lp-form-card, form {
        max-width: 99vw;
        padding-left: 0.1em;
        padding-right: 0.1em;
    }
}

.lp-hero {
    width: 95vw;
    max-width: 440px;
    margin: 2rem auto 1.5rem auto;
    background: #0F172A;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.lp-hero .lp-timer-block {
    width: 100%;
    border-radius: 22px 22px 0 0;
    box-sizing: border-box;
    margin: 0;
    border-bottom: 1px solid rgba(59,130,246,0.25);
    justify-content: center;
}

.lp-hero .lp-product-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0F172A;
    border-radius: 0 0 22px 22px;
    box-sizing: border-box;
    padding: 0 0 1.2rem 0;
}

.lp-hero .main-product {
    width: 92%;
    max-width: 340px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(2,6,23,0.35);
    background: #0B1220;
    display: block;
}

/* CTA pulsante abaixo da imagem */
.cta-pulse {
    width: 92%;
    max-width: 340px;
    margin: 0.5rem auto 0.2rem auto;
    text-align: center;
    background: linear-gradient(90deg, rgba(59,130,246,0.18), rgba(16,185,129,0.18));
    border: 2px solid rgba(59,130,246,0.45);
    border-radius: 14px;
    color: #E5E7EB;
    padding: 0.6rem 0.7rem;
    box-shadow: 0 0 0 0 rgba(59,130,246,0.6);
    animation: pulseRing 1.8s infinite ease-out, blinkText 1.4s infinite;
}

.cta-pulse-text {
    font-weight: 900;
    letter-spacing: 0.6px;
    font-size: 1.05rem;
    text-transform: uppercase;
}
.cta-pulse-sub {
    font-size: 0.92rem;
    opacity: 0.9;
}
.cta-arrows { font-size: 1.2rem; margin-top: 0.2rem; }

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(59,130,246,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(59,130,246,0); }
    100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}
@keyframes blinkText {
    0%, 60% { opacity: 1; }
    80% { opacity: 0.4; }
    100% { opacity: 1; }
}

@media (max-width: 600px) {
    .lp-hero {
        width: 98vw;
        max-width: 99vw;
        margin: 1.2rem auto 1rem auto;
        border-radius: 14px;
    }
    .lp-hero .lp-timer-block {
        border-radius: 14px 14px 0 0;
        font-size: 0.98rem;
    }
    .lp-hero .lp-product-img {
        border-radius: 0 0 14px 14px;
        padding-bottom: 0.7rem;
    }
    .lp-hero .main-product {
        border-radius: 12px;
        max-width: 98vw;
        width: 97%;
    }
}

.lp-benefits-block {
    width: 100%;
    background: linear-gradient(90deg, #f7fafc 60%, #e6fffa 100%);
    border-radius: 12px;
    padding: 1.1rem 1rem 1.1rem 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.07);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.lp-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.7em;
    font-size: 1.08rem;
    color: #2D3748;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.lp-benefit-icon {
    font-size: 1.5em;
    flex-shrink: 0;
    margin-top: 0.05em;
}

.lp-benefit-text strong {
    color: #6B46C1;
    font-weight: 700;
}

.lp-benefit-text {
    font-size: 1.08rem;
}

@media (max-width: 600px) {
    .lp-benefits-block {
        padding: 0.8rem 0.4rem 0.8rem 0.4rem;
        font-size: 0.98rem;
    }
    .lp-benefit {
        font-size: 0.98rem;
    }
    .lp-benefit-icon {
        font-size: 1.2em;
    }
}

.pix-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 41, 70, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.pix-modal-content {
    background: #0F172A;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(2,6,23,0.5);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 350px;
    width: 95vw;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pix-modal-content h3 {
    color: #93C5FD;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.pix-qrcode {
    width: 180px;
    height: 180px;
    margin: 1rem auto 1rem auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.10);
    background: #f7fafc;
    display: block;
}

.pix-copiaecola-block {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 1.2rem 0 0.2rem 0;
    width: 100%;
}

.pix-copiaecola {
    flex: 1;
    font-size: 1.08rem;
    padding: 0.7em 1em;
    border: 2px solid #a78bfa;
    border-radius: 8px;
    background: #f7fafc;
    color: #6B46C1;
    font-family: 'Fira Mono', monospace;
    outline: none;
    font-weight: 600;
    width: 100%;
}

.copy-pix-btn {
    width: 100%;
    margin: 0.7rem 0 0.2rem 0;
    background: #48BB78;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1em 0;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.10);
    letter-spacing: 1px;
    display: block;
}

.copy-pix-btn:hover {
    background: #38A169;
}

.pix-steps {
    width: 95vw;
    max-width: 440px;
    margin: 1.2rem auto 2rem auto;
    background: #0F172A;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.35);
    padding: 0.8rem 0.7rem 0.8rem 0.7rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
}

.pix-steps h4 {
    color: #93C5FD;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    text-align: left;
}

.pix-steps ol {
    list-style: none;
    counter-reset: pixstep;
    padding: 0;
    margin: 0;
}

.pix-steps li {
    counter-increment: pixstep;
    margin-bottom: 0.35em;
    font-size: 0.97rem;
    display: flex;
    align-items: center;
    gap: 0.4em;
    position: relative;
}

.pix-steps li:before {
    content: counter(pixstep) ".";
    color: #a78bfa;
    font-weight: 700;
    margin-right: 0.3em;
    font-size: 1em;
}

.pix-step-icon {
    font-size: 1em;
    margin-right: 0.2em;
}

@media (max-width: 600px) {
    .pix-steps {
        width: 98vw;
        max-width: 99vw;
        padding: 0.5rem 0.2rem 0.5rem 0.2rem;
        font-size: 0.93rem;
    }
    .pix-steps h4 {
        font-size: 0.93rem;
    }
    .pix-steps li {
        font-size: 0.93rem;
    }
    .pix-step-icon {
        font-size: 0.9em;
    }
}

.pix-modal-instructions {
    color: #2D3748;
    font-size: 1rem;
    margin: 1rem 0 0.5rem 0;
}

.close-pix-modal {
    background: #a78bfa;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5em 1.2em;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.7rem;
    transition: background 0.2s;
}

.close-pix-modal:hover {
    background: #6B46C1;
}

@media (max-width: 600px) {
    .pix-modal-content {
        padding: 1.2rem 0.3rem 1.2rem 0.3rem;
        max-width: 98vw;
    }
    .pix-qrcode {
        width: 120px;
        height: 120px;
    }
}

.pix-block {
    width: 95vw;
    max-width: 440px;
    margin: 2rem auto 1.5rem auto;
    background: #0F172A;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(2, 6, 23, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    animation: fadeIn 0.4s;
}

.pix-block .lp-timer-block {
    width: 100%;
    border-radius: 22px 22px 0 0;
    box-sizing: border-box;
    margin: 0;
    border-bottom: 1px solid rgba(59,130,246,0.25);
    justify-content: center;
}

.pix-block-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0 1.2rem 0;
}

.pix-block-content h3 {
    color: #93C5FD;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.pix-block .pix-qrcode {
    width: 180px;
    height: 180px;
    margin: 1rem auto 1rem auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.10);
    background: #f7fafc;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .pix-block {
        width: 98vw;
        max-width: 99vw;
        margin: 1.2rem auto 1rem auto;
        border-radius: 14px;
    }
    .pix-block .lp-timer-block {
        border-radius: 14px 14px 0 0;
        font-size: 0.98rem;
    }
    .pix-block-content {
        padding: 0.7rem 0 0.7rem 0;
    }
    .pix-block .pix-qrcode {
        width: 120px;
        height: 120px;
    }
}

.pix-payment-info {
    width: 100%;
    background: #f7fafc;
    border-radius: 10px;
    padding: 0.7rem 1rem 0.7rem 1rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 1px 4px rgba(107, 70, 193, 0.07);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 1.08rem;
    color: #2D3748;
    font-family: 'Inter', sans-serif;
}

.pix-status-pendente {
    color: #b7791f;
    font-weight: 700;
    background: #fefcbf;
    border-radius: 5px;
    padding: 0.1em 0.6em;
    font-size: 0.98em;
    letter-spacing: 1px;
}

.pix-status-pendente.loading-dots {
    animation: blink-pendente 1.2s steps(1, end) infinite;
}

@keyframes blink-pendente {
    0%, 60% { opacity: 1; }
    70%, 100% { opacity: 0.25; }
}

.pix-status-pendente.loading-dots::after {
    content: ' .';
    animation: dots 1.2s steps(3, end) infinite;
}

@keyframes dots {
    0%, 20% { color: #b7791f; content: ' .'; }
    40% { color: #b7791f; content: ' ..'; }
    60% { color: #b7791f; content: ' ...'; }
    100% { color: #b7791f; content: ' .'; }
}

.pix-block .pix-qrcode {
    width: 240px;
    height: 240px;
    margin: 1.2rem auto 1.2rem auto;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(107, 70, 193, 0.13);
    background: #f7fafc;
    display: block;
}

.pix-copiaecola-block {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 1.2rem 0 0.2rem 0;
    width: 100%;
}

.pix-copiaecola {
    flex: 1;
    font-size: 1.08rem;
    padding: 0.7em 1em;
    border: 2px solid #a78bfa;
    border-radius: 8px;
    background: #f7fafc;
    color: #6B46C1;
    font-family: 'Fira Mono', monospace;
    outline: none;
    font-weight: 600;
    width: 100%;
}

.copy-pix-btn {
    width: 100%;
    margin: 0.7rem 0 0.2rem 0;
    background: #48BB78;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1em 0;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.10);
    letter-spacing: 1px;
    display: block;
}

.copy-pix-btn:hover {
    background: #38A169;
}

.pix-steps {
    width: 95vw;
    max-width: 440px;
    margin: 1.2rem auto 2rem auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.08);
    padding: 0.8rem 0.7rem 0.8rem 0.7rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.97rem;
}

.pix-steps h4 {
    color: #6B46C1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    text-align: left;
}

.pix-steps ol {
    list-style: none;
    counter-reset: pixstep;
    padding: 0;
    margin: 0;
}

.pix-steps li {
    counter-increment: pixstep;
    margin-bottom: 0.35em;
    font-size: 0.97rem;
    display: flex;
    align-items: center;
    gap: 0.4em;
    position: relative;
}

.pix-steps li:before {
    content: counter(pixstep) ".";
    color: #a78bfa;
    font-weight: 700;
    margin-right: 0.3em;
    font-size: 1em;
}

.pix-step-icon {
    font-size: 1em;
    margin-right: 0.2em;
}

@media (max-width: 600px) {
    .pix-steps {
        width: 98vw;
        max-width: 99vw;
        padding: 0.5rem 0.2rem 0.5rem 0.2rem;
        font-size: 0.93rem;
    }
    .pix-steps h4 {
        font-size: 0.93rem;
    }
    .pix-steps li {
        font-size: 0.93rem;
    }
    .pix-step-icon {
        font-size: 0.9em;
    }
}

.pix-polaroid-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #6B46C1;
    letter-spacing: 1.5px;
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.pix-polaroid-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 0 0 1.2rem 0;
    width: 100%;
}

.polaroid {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    width: 100%;
    min-width: 0;
    transform: none;
    transition: none;
    position: relative;
}

.polaroid img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 0.4rem;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.10);
}

.polaroid-caption {
    font-size: 1rem;
    color: #6B46C1;
    font-weight: 500;
    text-align: center;
    margin-top: 0.1rem;
    margin-bottom: 0.7rem;
}

@media (max-width: 900px) {
    .pix-polaroid-gallery {
        gap: 1.2rem;
    }
    .polaroid img {
        max-width: 98vw;
    }
}
@media (max-width: 600px) {
    .pix-polaroid-gallery {
        display: flex;
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
    }
    .polaroid img {
        max-width: 99vw;
    }
    .polaroid-caption {
        font-size: 0.93rem;
    }
    .pix-polaroid-title {
        font-size: 1.05rem;
        margin: 1.2rem 0 0.7rem 0;
    }
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    width: 100%;
    padding-left: 0.2rem;
}

.testimonial-avatar {
    position: static;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.10);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.testimonial-name {
    font-size: 1.05rem;
    color: #6B46C1;
    font-weight: 700;
    margin-bottom: 0.1em;
}

.testimonial-comment {
    font-size: 1.01rem;
    color: #2D3748;
    background: #f7fafc;
    border-radius: 16px 16px 16px 4px;
    padding: 0.7em 1em;
    text-align: left;
    font-style: italic;
    box-shadow: 0 1px 4px rgba(107, 70, 193, 0.07);
    margin: 0;
    max-width: 90%;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .testimonial-avatar {
        width: 30px;
        height: 30px;
    }
    .testimonial-comment {
        font-size: 0.97rem;
        padding: 0.5em 0.7em;
        max-width: 100%;
    }
    .testimonial-header {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
}
@media (max-width: 600px) {
    .testimonial-avatar {
        width: 24px;
        height: 24px;
    }
    .testimonial-comment {
        font-size: 0.93rem;
        padding: 0.4em 0.5em;
    }
    .testimonial-header {
        gap: 0.3rem;
        margin-bottom: 0.3rem;
    }
}

.pending-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 7px;
    border-radius: 50%;
    background: #b7791f;
    vertical-align: middle;
    animation: pending-bounce 0.8s infinite alternate;
    box-shadow: 0 0 0 0 #fefcbf;
}

@keyframes pending-bounce {
    0% { transform: scale(0.7); opacity: 0.7; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.7); opacity: 0.7; }
}

.live-notifications {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    margin: 0.7rem 0 0.7rem 0;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.live-notification {
    background: #FFFFFF;
    padding: 10px 14px;
    border-radius: 14px;
    margin-bottom: 10px;
    animation: slideIn 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0B1220;
    width: 100%;
    max-width: 420px;
    overflow: visible;
    box-shadow: 0 10px 24px rgba(2,6,23,0.25);
    border: 1px solid #E5E7EB;
    border-left: 4px solid var(--primary-color);
}

.local-notification {
    background: rgba(255, 255, 255, 0.15);
    border-left: 3px solid #8B5CF6;
}

.notif-icon {
    color: var(--primary-dark);
    font-size: 1.2em;
}

.notif-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.notif-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 8px;
}

.notif-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    margin-bottom: 0.1em;
}

.notif-name {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.01em;
    margin-right: 2px;
    line-height: 1.1;
}

.notif-city {
    color: #3B82F6;
    font-weight: 500;
    font-size: 0.95em;
    margin-right: auto;
    margin-left: 2px;
}

.notif-time {
    color: rgba(44,44,44,0.6);
    font-size: 0.75em;
    font-style: italic;
    font-weight: 300;
    white-space: nowrap;
    margin-left: 8px;
}

.notif-message {
    color: #2D174D;
    font-size: 0.93em;
    margin-bottom: 0.1em;
    margin-top: 0.1em;
}

.notif-profit {
    color: #38A169;
    font-size: 0.97em;
    font-weight: 600;
    margin-top: 0.1em;
}

.profit-value {
    color: #38A169;
    font-family: 'Fira Mono', monospace;
    font-size: 1.05em;
    font-weight: 700;
    margin-left: 2px;
    background: none;
    border-radius: 6px;
    padding: 0.05em 0.4em;
    transition: background 0.4s;
}

.profit-glow {
    background: linear-gradient(90deg, #e6fffa 60%, #c6f6d5 100%);
    box-shadow: 0 0 8px 2px #a0eac5;
    animation: profitGlowAnim 1.7s ease-out;
}

@keyframes profitGlowAnim {
    0% { background: #c6f6d5; box-shadow: 0 0 16px 4px #a0eac5; }
    60% { background: #e6fffa; box-shadow: 0 0 8px 2px #a0eac5; }
    100% { background: none; box-shadow: none; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-footer {
    text-align: center;
    color: #93C5FD;
    background: none;
    font-size: 0.8em;
    padding: 0.6em 0 0.2em 0;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
    letter-spacing: 0.2px;
}

.site-footer-small {
    font-size: 0.7em;
    color: #888;
    margin-top: 0.2em;
    opacity: 0.7;
}

.site-footer-mini { color: #90CAF9; font-size: 0.85em; }

/* Security row */
.security-row {
    width: 95vw;
    max-width: 440px;
    margin: 0.6rem auto 0.2rem auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    background: #0F172A;
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 10px;
    padding: 0.4rem 0.6rem;
    box-shadow: 0 4px 12px rgba(2,6,23,0.35);
}
.security-item { color: #E5E7EB; font-size: 0.78rem; display: flex; align-items: center; gap: 0.25rem; white-space: nowrap; }
.sec-icon { color: #60A5FA; }

@media (max-width: 600px) {
    .security-row { width: 98vw; max-width: 99vw; font-size: 0.75rem; }
}

/* ===== Futebol Background Layer ===== */
.football-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(900px 500px at 60% -10%, rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 0) 60%),
                radial-gradient(700px 380px at 100% 20%, rgba(30, 64, 175, 0.35), rgba(2, 6, 23, 0) 60%),
                linear-gradient(180deg, #0B1220 0%, #0F172A 100%);
}

.football-ball {
    position: absolute;
    width: 88px;
    height: 88px;
    bottom: 6%;
    right: 4%;
    opacity: 0.7;
}
.football-ball.ball-2 { bottom: 20%; right: 12%; width: 64px; height: 64px; opacity: 0.55; }
.football-ball.ball-3 { top: 10%; right: 8%; width: 56px; height: 56px; opacity: 0.45; }

.football-goal {
    position: absolute;
    width: 180px;
    height: 110px;
    top: 5%;
    left: 3%;
    opacity: 0.5;
}
.football-goal.goal-2 { bottom: 3%; left: 50%; transform: translateX(-50%); width: 140px; height: 90px; opacity: 0.35; }

.football-flag {
    position: absolute;
    width: 60px;
    height: 180px;
    bottom: 9%;
    left: 6%;
    opacity: 0.6;
}
.football-flag.flag-2 { top: 8%; right: 6%; width: 50px; height: 160px; opacity: 0.45; }

@media (max-width: 600px) {
    .football-ball { width: 72px; height: 72px; right: 2%; bottom: 5%; }
    .football-goal { width: 150px; height: 95px; top: 3%; left: 2%; }
    .football-flag { width: 50px; height: 160px; bottom: 7%; left: 3%; }
}

.promo-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f7fafc 60%, #e6fffa 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.07);
    padding: 1.1em 0.7em 0.7em 0.7em;
    margin-bottom: 1.2em;
    margin-top: 0.2em;
    position: relative;
}
.promo-discount {
    display: inline-block;
    position: absolute;
    top: -0.9em;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    background: #e53e3e;
    color: #fff;
    font-size: 0.98em;
    font-weight: 900;
    padding: 0.13em 1.1em;
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.13);
    z-index: 2;
    letter-spacing: 2px;
    opacity: 0.93;
    pointer-events: none;
    border: 2px solid #fff0f0;
}
.promo-prices-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.2em;
    margin-bottom: 0.1em;
    width: 100%;
    min-height: 3.2em;
    position: relative;
}
.old-price {
    color: #e53e3e;
    opacity: 0.55;
    font-size: 2em;
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 1px;
}
.promo-price {
    color: #38A169;
    font-size: 2.3em;
    font-weight: 900;
    font-family: 'Fira Mono', monospace;
    letter-spacing: 1px;
    background: #e6fffa;
    border-radius: 8px;
    padding: 0.1em 0.7em;
    box-shadow: 0 1px 4px rgba(56, 161, 105, 0.08);
}
.promo-price-label {
    color: #6B46C1;
    font-size: 1em;
    font-weight: 600;
    margin-top: 0.2em;
    text-align: center;
    letter-spacing: 0.2px;
}

.credibility-block {
    width: 100%;
    max-width: 440px;
    margin: 2rem auto 1.5rem auto;
    background: #0F172A;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(2,6,23,0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 1.2rem 1rem 1.2rem 1rem;
}
.credibility-img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(107, 70, 193, 0.10);
    margin-bottom: 0.8rem;
    background: #f7fafc;
    display: block;
}
.credibility-caption {
    color: #2D174D;
    font-size: 1.08rem;
    text-align: center;
    margin-bottom: 0.2rem;
}
.credibility-caption strong {
    color: #38A169;
    font-weight: 700;
}
.credibility-small {
    color: #6B46C1;
    font-size: 0.93em;
    font-style: italic;
    display: block;
    margin-top: 0.2em;
}

.phone-verified-badge {
    display: flex;
    align-items: center;
    gap: 0.7em;
    background: linear-gradient(90deg, #e6fffa 60%, #ede9fe 100%);
    border: 2.5px solid #38A169;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(56, 161, 105, 0.08);
    padding: 0.7em 1.2em;
    margin-bottom: 0.2em;
    margin-top: 0.1em;
    font-family: 'Fira Mono', monospace;
    font-size: 1.08em;
    font-weight: 700;
    color: #22543d;
    letter-spacing: 1px;
    position: relative;
    min-height: 2.5em;
    transition: box-shadow 0.3s, background 0.3s;
}
.phone-verified-icon {
    color: #38A169;
    font-size: 1.3em;
    margin-right: 0.2em;
    flex-shrink: 0;
}
.phone-verified-text {
    color: #22543d;
    font-family: 'Fira Mono', monospace;
    font-size: 1.08em;
    font-weight: 700;
}
.phone-glow {
    background: linear-gradient(90deg, #c6f6d5 60%, #ede9fe 100%);
    box-shadow: 0 0 16px 4px #a0eac5;
    animation: phoneGlowAnim 1.7s ease-out;
}
@keyframes phoneGlowAnim {
    0% { background: #c6f6d5; box-shadow: 0 0 16px 4px #a0eac5; }
    60% { background: #e6fffa; box-shadow: 0 0 8px 2px #a0eac5; }
    100% { background: linear-gradient(90deg, #e6fffa 60%, #ede9fe 100%); box-shadow: none; }
} 