:root {
    --bg-main: #c6824b; /* Cor Principal (Warm Brown/Copper) */
    --bg-panel: #ffffff; /* Fundo dos Cards/Painéis */
    --bg-alt: #eae2d6; /* Light Beige / Cream para detalhes */
    
    --text-on-main: #ffffff; /* Texto branco sobre a cor principal */
    --text-muted-main: #eae2d6; /* Texto secundário sobre a cor principal */
    
    --text-on-panel: #3a2a22; /* Texto escuro dentro dos painéis brancos */
    --text-muted-panel: #ba8e7a; /* Muted Rose / Taupe para detalhes de texto em painel */
    
    --accent-1: #c6824b; /* Main */
    --accent-2: #b6a37c; /* Khaki / Gold-ish */
    --white: #ffffff;
    
    --wpp-green: #25D366;
    --wpp-dark: #128C7E;
    
    --accent-viral: #ef4444;
    
    --glow-green: rgba(37, 211, 102, 0.3);
    --panel-border: rgba(234, 226, 214, 0.5); /* Bordas bege claro */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-on-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 85% 30%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    padding-bottom: 80px; 
}

.page-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 24px 20px;
    position: relative;
    z-index: 10;
}

/* Typography */
h1 {
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-on-panel);
}

h1 span {
    background: linear-gradient(135deg, var(--wpp-green) 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

h2 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--white);
    text-align: center;
}

/* Subheadline adapts to where it is */
.subheadline {
    text-align: center;
    color: var(--text-muted-panel);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Panels */
.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    color: var(--text-on-panel);
}

/* Top Logo */
.top-logo-container {
    text-align: center;
    margin-bottom: 2rem;
    padding: 10px 0;
}

.site-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12); /* Gives an intended card look to the logo background */
    border: 2px solid var(--white);
}

/* CTAs - Core design */
.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 18px 24px;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.primary-cta {
    background: linear-gradient(135deg, var(--wpp-green) 0%, var(--wpp-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px var(--glow-green);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.secondary-cta {
    background: var(--white);
    color: var(--wpp-green);
    border: 2px solid var(--wpp-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: scale(0.97);
}

.cta-button i {
    font-size: 1.5rem;
}

.pulse {
    animation: pulsar 2.5s infinite;
}

@keyframes pulsar {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.microcopy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted-panel);
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}
.microcopy i {
    font-size: 0.9rem;
    color: var(--wpp-green);
    opacity: 0.8;
}

.microcopy-alt {
    color: var(--bg-alt);
    margin-top: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Social Proof */
.social-proof {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--bg-alt);
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--panel-border);
}

.avatars {
    display: flex;
}
.avatars img, .avatar-count {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
    background: var(--bg-panel);
    object-fit: cover;
}
.avatars img {
    filter: blur(2.5px);
}
.avatars img:first-child { margin-left: 0; }
.avatar-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--wpp-green) 0%, var(--wpp-dark) 100%);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--white);
    z-index: 5;
}

.proof-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-on-panel);
}
.proof-text strong {
    color: var(--accent-1);
}
.glow-text {
    color: var(--wpp-dark);
    font-weight: 800;
}

/* Benefits */
.benefits {
    margin: 3rem 0;
}
.benefit-list {
    list-style: none;
    margin-top: 1.5rem;
}
.benefit-list li {
    background: var(--white);
    border: 1px solid var(--panel-border);
    margin-bottom: 12px;
    padding: 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-on-panel);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.benefit-list li i {
    color: var(--wpp-green);
    font-size: 1.3rem;
    filter: drop-shadow(0 0 2px rgba(37, 211, 102, 0.2));
}

/* Product Showcase */
.showcase {
    margin-bottom: 3rem;
}
/* Secret Coupon Element */
.secret-coupon {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px dashed var(--accent-1);
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
}
.secret-coupon:active {
    transform: scale(0.98);
}
.coupon-label {
    font-weight: 900;
    color: var(--text-on-panel);
    font-size: 0.85rem;
    margin-right: 8px;
    text-transform: uppercase;
}
.coupon-code {
    font-family: monospace;
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--accent-1);
    letter-spacing: 2px;
}
.coupon-code .blurred {
    filter: blur(4px);
    user-select: none;
    opacity: 0.4;
    transition: filter 0.4s ease, opacity 0.4s ease;
}
.secret-coupon.revealed .blurred {
    filter: blur(0);
    opacity: 1;
    user-select: text;
}
.reveal-overlay {
    position: absolute;
    right: 0; 
    top: 0;
    bottom: 0;
    background: var(--wpp-green);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: -20px 0 20px var(--white); /* Fades over the code smoothly */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}
.secret-coupon.revealed .reveal-overlay {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.product-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 2rem;
}

.card {
    padding: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--panel-border);
    background: var(--white);
    transform: translateZ(0); 
}
.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
}
.viral { background: rgba(239, 68, 68, 0.95); box-shadow: 0 4px 15px rgba(239,68,68,0.3); }
.promo { background: rgba(182, 163, 124, 0.95); box-shadow: 0 4px 15px rgba(182,163,124,0.3); } /* Using #b6a37c khaki */
.escasso { background: var(--wpp-dark); box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3); color: var(--white); }

.card-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--bg-alt);
}

.card-content {
    padding: 22px;
    background: var(--bg-alt);
    position: relative;
}
.card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    font-weight: 900;
    color: var(--accent-1);
}
.card-content p {
    color: var(--text-on-panel);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 500;
}
.availability {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--wpp-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.15);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.3);
}
.availability::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wpp-green);
    box-shadow: 0 0 6px var(--wpp-green);
}

/* WhatsApp Scroll Mockup */
.wpp-mockup-wrapper {
    margin: 3rem 0;
    width: 100%;
}

.wpp-mockup-title {
    text-align: center;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.whatsapp-mockup {
    background: #0b141a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--panel-border);
    max-width: 330px;
    margin: 0 auto;
}

.wpp-mockup-header {
    background: #202c33;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #111b21;
    position: relative;
    z-index: 10;
}

.wpp-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    background: #ffffff;
}

.wpp-header-info {
    display: flex;
    flex-direction: column;
}

.wpp-header-info strong {
    color: #e9edef;
    font-size: 0.95rem;
    font-weight: 600;
}

.wpp-header-info span {
    color: #8696a0;
    font-size: 0.75rem;
}

.wpp-mockup-body {
    background: linear-gradient(rgba(11, 20, 26, 0.94), rgba(11, 20, 26, 0.94)), url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
    height: 560px;
    position: relative;
    overflow: hidden;
}

.wpp-mockup-body::before, .wpp-mockup-body::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 5;
    pointer-events: none;
}
.wpp-mockup-body::before {
    top: 0;
    background: linear-gradient(to bottom, #0b141a, transparent);
}
.wpp-mockup-body::after {
    bottom: 0;
    background: linear-gradient(to top, #0b141a, transparent);
}

.wpp-scroll-track {
    display: flex;
    flex-direction: column;
    animation: wppScrollUp 75s linear infinite;
}

.wpp-mockup-body:hover .wpp-scroll-track,
.wpp-mockup-body:active .wpp-scroll-track {
    animation-play-state: paused;
}

.wpp-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

@keyframes wppScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } 
}

.wpp-msg-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wpp-msg-sender {
    color: var(--accent-1);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2px;
    margin-left: 2px;
}

.wpp-msg-bubble {
    background: #202c33;
    padding: 8px 8px 6px 8px;
    border-radius: 8px;
    border-top-left-radius: 0;
    max-width: 95%;
    color: #e9edef;
    font-size: 0.85rem;
    box-shadow: 0 1px 1px rgba(0,0,0,0.2);
    position: relative;
    line-height: 1.4;
}

.wpp-msg-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-right-color: #202c33;
    border-top-color: #202c33;
}

.wpp-msg-forwarded {
    color: #8696a0;
    font-size: 0.70rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-style: italic;
}

.wpp-msg-img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
}

.wpp-msg-bubble p {
    margin-bottom: 4px;
}

.wpp-msg-bubble p:last-child {
    margin-bottom: 0;
}

.wpp-highlight {
    color: var(--wpp-green);
    font-weight: 800;
    font-size: 1rem;
}

.wpp-text-link {
    color: var(--wpp-green);
    text-decoration: none;
    word-break: break-all;
    font-size: 0.95rem;
    font-weight: 600;
}

.wpp-text-link:hover,
.wpp-text-link:active {
    text-decoration: underline;
}

.wpp-bubble-time {
    display: block;
    text-align: right;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
    font-weight: 500;
}

.wpp-system-msg {
    display: flex;
    justify-content: center;
    margin: 14px 0;
    width: 100%;
}

.wpp-system-msg span {
    background: rgba(32, 44, 51, 0.85);
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    padding: 6px 14px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.3;
    max-width: 90%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Urgency Section */
.urgency-section {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-color: var(--accent-2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.alert-icon {
    font-size: 2.5rem;
    color: var(--accent-1);
}
.alert-content h3 {
    color: var(--accent-1);
    margin-bottom: 6px;
    font-weight: 800;
}
.alert-content p {
    font-size: 0.95rem;
    color: var(--text-on-panel);
    font-weight: 500;
}

/* Caixa super evidente do contador de pessoas */
.live-counter-box {
    background: rgba(239, 68, 68, 0.08); /* Fundo vermelho bem claro */
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 14px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
}

.counter-number {
    font-size: 1.35rem;
    color: var(--accent-viral);
    font-weight: 900;
}

.counter-text {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-on-panel);
    text-transform: uppercase;
    white-space: nowrap;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background-color: var(--wpp-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.alert-content strong {
    color: var(--accent-1);
}

/* WhatsApp Testimonials Carousel */
.testimonials {
    margin-bottom: 4rem;
}
.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 25px;
    padding-left: 5px;
    padding-right: 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-1) transparent;
    cursor: grab;
}
.testimonials-carousel:active {
    cursor: grabbing;
}
.testimonials-carousel::-webkit-scrollbar {
    height: 8px;
}
.testimonials-carousel::-webkit-scrollbar-thumb {
    background-color: var(--accent-1);
    border-radius: 4px;
}
.whatsapp-chat {
    flex: 0 0 88%; /* Leaves a hint of the next item visible to encourage swiping */
    max-width: 320px;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: #e5ddd5;
    border-radius: 16px;
    border: 1px solid var(--panel-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.chat-header {
    background: #008069;
    color: var(--white);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.chat-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: #ccc;
    object-fit: cover;
    filter: blur(3px);
}
.chat-name {
    font-weight: 600;
    font-size: 1.1rem;
    filter: blur(4px);
    user-select: none;
}
.chat-body {
    padding: 20px 15px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    gap: 6px;
    background-color: #e5ddd5;
    background-size: cover;
}
.message {
    display: flex;
    justify-content: flex-start;
}
.msg-bubble, .msg-image {
    background: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    max-width: 85%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    color: #111;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    border-top-left-radius: 0;
}
.message:not(:first-child) .msg-bubble,
.message:not(:first-child) .msg-image {
    border-top-left-radius: 8px;
}
.msg-bubble::before, .msg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-right-color: var(--white);
    border-top-color: var(--white);
}
.message:not(:first-child) .msg-bubble::before,
.message:not(:first-child) .msg-image::before {
    display: none;
}
.msg-image {
    padding: 5px;
}
.msg-image img {
    width: 100%;
    max-width: 250px;
    border-radius: 6px;
    display: block;
    margin-bottom: 2px;
}
.msg-time {
    display: block; /* fixed lint */
    float: right;
    font-size: 0.70rem;
    color: #667781;
    margin-left: 10px;
    margin-top: 6px;
    line-height: 1;
}
.msg-checks {
    font-size: 0.70rem;
    color: #8fa0a9;
    margin-left: 2px;
}
.msg-checks.read {
    color: #53bdeb; /* Blue double check */
}
.msg-sent {
    justify-content: flex-end;
    margin-top: 5px;
}
.msg-sent .msg-bubble {
    background: #dcf8c6;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 0 !important;
}
.msg-sent .msg-bubble::before {
    left: auto;
    right: -8px;
    border-right-color: transparent !important;
    border-left-color: #dcf8c6 !important;
    border-top-color: #dcf8c6 !important;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

footer {
    text-align: center;
    padding: 20px 0 40px;
    color: var(--bg-alt);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--bg-alt);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, opacity 0.2s;
    opacity: 0.8;
}

.footer-link:hover, .footer-link:active {
    color: var(--white);
    opacity: 1;
}

.footer-link i {
    font-size: 1.1rem;
}

/* Team Section Footer */
.team-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    background: var(--bg-alt);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--panel-border);
    width: 100%;
    max-width: 350px;
}

.team-title {
    color: var(--text-on-panel);
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5px;
}

.team-video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--accent-1);
}

.team-video {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--panel-border);
    z-index: 1000;
    transform: translateY(120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
}
.sticky-footer.visible {
    transform: translateY(0);
}

.sticky-button {
    background: var(--white);
    color: var(--wpp-dark);
    border: 2px solid var(--wpp-green);
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.15);
    animation: none;
}
.sticky-button i {
    color: var(--wpp-green);
}

@media (min-width: 501px) {
    body {
        display: flex;
        justify-content: center;
        background-color: var(--bg-alt);
        background-image: none;
    }
    .page-wrapper {
        background-color: var(--bg-main);
        min-height: 100vh;
        border-left: 1px solid var(--glass-border);
        border-right: 1px solid var(--glass-border);
        box-shadow: 0 0 50px rgba(0,0,0,0.2);
        background-image: radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                          radial-gradient(circle at 85% 30%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    }
    .sticky-footer {
        max-width: 500px;
        left: 50%;
        margin-left: -250px;
        border-left: 1px solid var(--glass-border);
        border-right: 1px solid var(--glass-border);
    }
}

/* FOMO Notification / Social Proof Popup */
.fomo-popup {
    position: fixed;
    top: 24px;
    left: 24px;
    background: var(--white);
    border: 1px solid var(--panel-border);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    transform: translateY(-150px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    max-width: 300px;
}

.fomo-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.fomo-icon {
    width: 36px;
    height: 36px;
    background: var(--wpp-green);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.fomo-text {
    font-size: 0.85rem;
    color: var(--text-on-panel);
    line-height: 1.3;
}

.fomo-text strong {
    color: var(--wpp-dark);
}

.fomo-time {
    display: block;
    font-size: 0.7rem;
    color: #888;
    margin-top: 4px;
}

/* Responsividade do modal FOMO em telas menores */
@media (max-width: 500px) {
    .fomo-popup {
        top: 20px;
        left: 50%;
        transform: translate(-50%, -150px);
        width: 90%;
        max-width: 350px;
    }
    .fomo-popup.show {
        transform: translate(-50%, 0);
    }
}

/* Exit Intent Popup */
.exit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.exit-modal {
    background: var(--white);
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    border: 2px solid var(--accent-1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.85);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exit-overlay.show .exit-modal {
    transform: scale(1);
    opacity: 1;
}

.close-modal-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted-panel);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.close-modal-btn:hover {
    opacity: 1;
    color: var(--text-on-panel);
}

.exit-icon {
    font-size: 3.5rem;
    color: var(--accent-1);
    margin-bottom: 16px;
}

.exit-title {
    color: var(--text-on-panel);
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 900;
    line-height: 1.2;
}

.exit-text {
    color: var(--text-on-panel);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.exit-subtext {
    color: var(--accent-viral);
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .cta-button {
        font-size: 0.95rem;
        padding: 14px 16px;
        gap: 8px;
    }
    .cta-button i {
        font-size: 1.3rem;
    }
    .whatsapp-mockup {
        max-width: 100%;
        border-radius: 12px;
        border-left: none;
        border-right: none;
    }
    .wpp-mockup-body {
        height: 400px;
    }
}
