*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background: #050505;
    color: #f5f5f5;
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

:root {
    --mp-green: #5AFF59;
    --mp-green-light: #7aff7a;
    --mp-green-dark: #3de03c;
    --cream: #f0e6c8;
    --dark: #050505;
    --dark-2: #0e0e0e;
    --dark-3: #141414;
    --dark-card: #1a1a1a;
    --text-muted: #b8b8b8;
    --text-body: #d4d4d4;
    --danger: #f87171;
    --danger-bg: rgba(220, 38, 38, 0.08);
    --whatsapp: #25D366;
    --cta-shadow: rgba(90, 255, 89, 0.35);
    --radius: 16px;
    --radius-sm: 10px;
    /* aliases used across components */
    --gold: var(--mp-green);
    --gold-light: var(--mp-green-light);
    --gold-dark: var(--mp-green-dark);
    --navy: var(--dark-card);
    --navy-mid: var(--dark-3);
    --text: var(--text-body);
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* DIVIDER MP */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 22px auto;
    max-width: 420px;
}
.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90,255,89,0.6), transparent);
}
.divider svg { width: 20px; height: 20px; fill: var(--mp-green); flex-shrink: 0; }

/* TOPBAR */
.topbar {
    background: var(--dark-2);
    border-bottom: 1px solid rgba(90,255,89,0.2);
    color: var(--mp-green-light);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 100;
}
.topbar-icon { margin-right: 4px; }
.topbar strong { color: #fff; font-weight: 800; }

/* TAGS */
.tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--mp-green);
    margin-bottom: 16px;
}
.tag-center { display: block; text-align: center; }
.tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--mp-green);
    vertical-align: middle;
    margin-right: 10px;
}
.tag-center::before { display: none; }
.hero .tag::before { display: none; }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 800;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.btn-primary {
    background: var(--mp-green);
    color: #111;
    padding: 18px 32px;
    font-size: 0.88rem;
    box-shadow: 0 6px 28px var(--cta-shadow);
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0%, 70%, 100% { transform: translateX(-100%); }
    85% { transform: translateX(100%); }
}
.btn-primary:hover {
    background: var(--mp-green-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(90,255,89,0.45);
}
.btn-gold {
    background: var(--mp-green);
    color: #111;
    padding: 16px 28px;
    font-size: 0.82rem;
    box-shadow: 0 6px 24px var(--cta-shadow);
}
.btn-gold:hover {
    background: var(--mp-green-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(90,255,89,0.45);
}
.btn-navy {
    background: transparent;
    color: var(--mp-green);
    padding: 16px 28px;
    font-size: 0.82rem;
    border: 2px solid rgba(90,255,89,0.5);
}
.btn-navy:hover {
    background: rgba(90,255,89,0.08);
    border-color: var(--mp-green);
    transform: translateY(-2px);
}
.btn-ghost {
    color: rgba(255,255,255,0.8);
    padding: 16px 24px;
    font-size: 0.82rem;
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); color: #fff; }
.btn-lg { padding: 20px 36px; font-size: 0.92rem; }
.btn-block { width: 100%; }
.btn-micro { font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; display: block; text-align: center; }

/* HERO */
.hero {
    position: relative;
    background: var(--dark) url('Assets/dw-5.webp') center/cover no-repeat;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5,5,5,0.92) 0%, rgba(14,14,14,0.85) 50%, rgba(5,5,5,0.94) 100%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 60px 24px 40px;
    max-width: 760px;
}
.hero-logo { max-width: 160px; margin-bottom: 28px; }
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4.2vw, 2.65rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--mp-green); }
.hero-lead { font-size: 1.05rem; color: var(--text-body); margin-bottom: 12px; max-width: 560px; line-height: 1.75; }
.hero-lead strong { color: #fff; }
.hero-sub { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 16px; max-width: 540px; }
.hero-audience {
    font-size: 0.8rem;
    color: var(--mp-green-light);
    font-weight: 600;
    margin-bottom: 32px;
    padding: 10px 16px;
    background: rgba(90,255,89,0.08);
    border-left: 3px solid var(--mp-green);
    border-radius: 0 8px 8px 0;
    display: inline-block;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.trust-bar {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(90,255,89,0.15);
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 24px;
}
.trust-stat { text-align: center; padding: 8px; }
.trust-num {
    display: block;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    color: var(--cream);
    line-height: 1.1;
}
.trust-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* REAFFIRM BAR */
.reaffirm-bar {
    background: var(--dark-2);
    border-bottom: 1px solid rgba(90,255,89,0.12);
    padding: 18px 0;
}
.reaffirm-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.reaffirm-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--mp-green-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.reaffirm-item svg {
    width: 18px;
    height: 18px;
    fill: var(--mp-green);
    flex-shrink: 0;
}

/* SECTIONS */
.section { padding: 88px 0; }
.section-light { background: var(--dark-2); }
.section-white { background: var(--dark); }
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    max-width: 820px;
    margin: 0 auto 16px;
}
.section-title .highlight { color: var(--mp-green); }
.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.75;
}
.section-sub strong { color: #fff; }

/* CARDS */
.cards-grid { display: grid; gap: 24px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
    background: var(--dark-card);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid rgba(90,255,89,0.2);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(90,255,89,0.5);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.card-icon {
    width: 48px;
    height: 48px;
    background: #15161a;
    border: 1px solid rgba(90,255,89,0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; fill: var(--mp-green); }
.card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--mp-green-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.card-situation { text-align: center; }
.card-situation .card-icon { margin: 0 auto 18px; }

/* STEPS */
.steps-wrap {
    background: var(--dark-card);
    border: 1px solid rgba(90,255,89,0.25);
    border-radius: 20px;
    padding: 52px 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}
.step-card {
    background: rgba(5,5,5,0.6);
    border-radius: var(--radius-sm);
    padding: 28px 22px;
    border: 1px solid rgba(90,255,89,0.12);
    counter-increment: step;
    transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-3px); border-color: rgba(90,255,89,0.3); }
.step-card::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--cream);
    opacity: 0.5;
    margin-bottom: 12px;
    line-height: 1;
}
.step-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--mp-green-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.step-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* SPLIT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.split-left .section-title,
.split-left .section-sub { text-align: left; margin-left: 0; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-body);
}
.checklist li::before {
    content: '✓';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(90,255,89,0.15);
    color: var(--mp-green);
    border: 1px solid rgba(90,255,89,0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

/* PROVE CARD */
.prove-card {
    background: linear-gradient(160deg, #0a0a0a 0%, #111 100%);
    border: 1px solid rgba(90,255,89,0.25);
    border-radius: var(--radius);
    padding: 36px 32px;
    color: #fff;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.prove-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.prove-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(90,255,89,0.15);
    border: 1px solid var(--mp-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.prove-card-icon svg { width: 22px; height: 22px; fill: var(--mp-green); }
.prove-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; }
.prove-card .prove-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.prove-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.prove-list li {
    display: flex;
    gap: 14px;
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.55;
}
.prove-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--mp-green);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
}

/* ADVANTAGE */
.advantage-card { position: relative; padding-top: 36px; }
.advantage-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--mp-green);
    background: rgba(90,255,89,0.1);
    border: 1px solid rgba(90,255,89,0.2);
    padding: 4px 10px;
    border-radius: 20px;
}

/* STATS BAR */
.stats-bar {
    background: var(--dark-2);
    border-top: 1px solid rgba(90,255,89,0.15);
    border-bottom: 1px solid rgba(90,255,89,0.15);
    padding: 48px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
    background: var(--dark-card);
    border: 1px solid rgba(90,255,89,0.25);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s;
}
.stat-card:hover { border-color: var(--mp-green); transform: translateY(-3px); }
.stat-card .stat-num {
    display: block;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--cream);
    line-height: 1;
}
.stat-card .stat-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mp-green-light);
    margin-top: 8px;
}

/* EXCLUSION */
.exclusion-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.exclusion-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.exclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--danger-bg);
    border: 1px solid rgba(248,113,113,0.2);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    font-size: 0.85rem;
    color: #fca5a5;
    font-weight: 500;
}
.exclusion-x {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(220,38,38,0.2);
    color: var(--danger);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}
.cta-sidebar {
    background: linear-gradient(160deg, #0a0a0a, #111);
    border: 1px solid rgba(90,255,89,0.25);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
    position: sticky;
    top: 24px;
}
.cta-sidebar-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    border: 2px solid var(--mp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-sidebar-icon svg { width: 26px; height: 26px; fill: var(--mp-green); }
.cta-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}
.cta-sidebar h3 .gold { color: var(--mp-green); }
.cta-sidebar p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
    background: var(--dark-card);
    border-left: 3px solid var(--mp-green);
    border-bottom: 3px solid var(--mp-green);
    border-radius: 0 12px 0 0;
    padding: 28px 24px;
    position: relative;
}
.testimonial-stars { color: var(--mp-green); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-author { font-size: 0.82rem; font-weight: 700; color: var(--mp-green-light); }
.testimonial-location { font-size: 0.78rem; color: var(--text-muted); }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; }
.faq-sidebar .section-title,
.faq-sidebar .section-sub { text-align: left; margin-left: 0; margin-bottom: 12px; }
.faq-cta-box {
    background: linear-gradient(160deg, #0a0a0a, #111);
    border: 1px solid rgba(90,255,89,0.25);
    border-radius: var(--radius);
    padding: 28px 24px;
    margin-top: 28px;
}
.faq-cta-box h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.faq-cta-box p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 18px; line-height: 1.55; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--mp-green); }
.faq-arrow {
    flex-shrink: 0;
    font-size: 1.4rem;
    color: var(--mp-green);
    transition: transform 0.3s;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
}
.faq-item.active .faq-arrow { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 320px; padding-bottom: 20px; }
.faq-answer p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* FINAL CTA */
.cta-final {
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-2), #12100c, var(--dark-2));
    border-top: 1px solid rgba(90,255,89,0.15);
}
.cta-final .tag { color: var(--mp-green); }
.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    font-weight: 700;
    color: #fff;
    max-width: 720px;
    margin: 0 auto 16px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.cta-final .cta-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 580px;
    margin: 0 auto 12px;
    line-height: 1.7;
}
.cta-final .cta-guarantee {
    font-size: 0.82rem;
    color: var(--mp-green-light);
    margin: 20px auto 0;
    font-weight: 600;
}
.cta-final .btn-primary { margin-top: 32px; }

/* FOOTER */
.footer {
    background: var(--dark);
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer p {
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}
.footer .brand { color: var(--mp-green); font-weight: 700; }

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    background: var(--dark-card);
    border: 1px solid rgba(90,255,89,0.3);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    overflow: hidden;
    transition: transform 0.3s;
    animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.4); }
}
.wa-float:hover { transform: scale(1.05); animation: none; }
.wa-float-text {
    padding: 14px 18px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}
.wa-float-icon {
    width: 52px;
    height: 52px;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wa-float-icon svg { width: 28px; height: 28px; fill: #fff; }

.section-cta { text-align: center; margin-top: 48px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .cards-4, .steps-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-3, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .split, .exclusion-grid, .faq-layout { grid-template-columns: 1fr; }
    .reaffirm-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .cta-sidebar { position: static; }
    .steps-wrap { padding: 36px 24px; }
}
@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .cards-4, .cards-3, .steps-grid, .stats-grid,
    .testimonials-grid, .reaffirm-inner { grid-template-columns: 1fr; }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-inner,
    .hero-content { text-align: center; max-width: none; }
    .hero-logo { margin-left: auto; margin-right: auto; }
    .hero-lead,
    .hero-sub,
    .hero-audience { margin-left: auto; margin-right: auto; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .btn-primary::after { display: none; }
    .btn-primary svg,
    .btn-gold svg { display: none; }
    .topbar { border-bottom: none; }
    .wa-float-text { display: none; }
    .wa-float { border-radius: 50%; border: none; }
    .wa-float-icon { width: 58px; height: 58px; border-radius: 50%; }
    .btn-lg { padding: 18px 24px; font-size: 0.85rem; }
}


/* ═══ LP · botões pulsantes (4.1) ═══ */
@keyframes btn-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.45);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22), 0 0 0 14px rgba(255, 255, 255, 0);
    }
}
.btn-pulse {
    animation: btn-pulse 2s ease-in-out infinite;
}
.btn-pulse:hover {
    animation: none;
    transform: scale(1.02);
}

@keyframes wa-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}
.btn-pulse-wa {
    animation: wa-pulse 2s ease-in-out infinite;
}
.btn-pulse-wa:hover {
    animation: none;
}

