:root {
    --primary: #8b5cf6; /* Roxo Lúdico e Criativo */
    --primary-dark: #4c1d95; /* Roxo Litúrgico Profundo (Passa Autoridade) */
    --accent: #ff7a00; /* Laranja Solar Quente */
    --accent-hover: #ea580c; /* Laranja de Destaque */
    --success: #10b981; /* Verde Conversão */
    --text-main: #2e1065; /* Roxo Escuro Quase Preto */
    --text-muted: #7c3aed; /* Roxo Médio Acolhedor */
    --bg-light: #fffdf9; /* Creme Aconchegante */
    --bg-white: #ffffff;
    --danger: #ef4444;
}

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

h1, h2, h3, .section-title, .main-title, .plan-title, .modal-title, .cta-main, .seal-number {
    font-family: 'Nunito', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-bg {
    background-color: var(--bg-white);
}

/* Typography */
.section-title {
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 3px 5px rgba(0,0,0,0.1);
}
.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Top Bar */
.top-bar {
    background: #fef3c7;
    color: #b45309;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding: 60px 0 80px;
    text-align: center;
    /* Fundo duplo: Gradiente creme/rosa quente e imagem de crianças e atividades com desfoque de fundo */
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.93) 0%, rgba(255, 238, 242, 0.94) 100%), 
                url('https://images.unsplash.com/photo-1564981797816-1043d01bf53d?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
/* Adicionando bolinhas lúdicas e divertidas ao fundo do Hero */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(236, 72, 153, 0.12);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: rgba(139, 92, 246, 0.12);
    border-radius: 50%;
}
.main-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.highlight {
    color: var(--accent);
}
.subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-image-mockup {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.hero-image-mockup img {
    width: 100%;
    display: block;
}

/* Buttons (3D Aggressive) */
.cta-wrapper {
    margin-bottom: 15px;
}
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%);
    color: #fff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 0 #b45309, 0 15px 20px rgba(0,0,0,0.2);
    transition: 0.2s;
    border: 2px solid #fff;
}
.cta-button:active {
    transform: translateY(10px);
    box-shadow: 0 0 0 #b45309, 0 5px 10px rgba(0,0,0,0.2);
}
.cta-main {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.cta-sub {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 5px;
}
.secure-checkout {
    font-size: 15px;
    color: var(--success);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}
.pulse {
    animation: pulse 2s infinite;
}

/* Deliverables Section */
.deliverables {
    padding: 60px 0;
    background: #fffdf5; /* Creme solar bem leve */
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.benefit-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}
.benefit-card .icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}
.benefit-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}
.benefit-card p {
    color: var(--text-muted);
}

/* Before / After */
.comparison {
    padding: 60px 0;
    background: #fff7ed; /* Laranja/Pêssego pastel leve */
}
.comparison-grid {
    display: flex;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.comp-box {
    flex: 1;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.comp-before {
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.comp-after {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.comp-header {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.comp-before .comp-header { color: var(--danger); }
.comp-after .comp-header { color: var(--success); }
.comp-box ul {
    list-style: none;
}
.comp-box li {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.comp-before li { color: #991b1b; }
.comp-after li { color: #166534; }

/* New Bonus Section Style (Evangelho Kids style) */
.bonus-section {
    padding: 80px 0;
    background: #ffffff; /* Fundo limpo e branco idêntico ao print */
    color: var(--text-dark);
}
.bonus-section .section-title {
    color: #991b1b; /* Vermelho escuro/vinho elegante para o título dos bônus */
}
.bonus-section .section-subtitle {
    color: var(--text-muted);
}
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.premium-bonus {
    background: #fffdf5; /* Creme quente idêntico ao print */
    border: 4px solid #eab308; /* Borda dourada grossa e arredondada */
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(234, 179, 8, 0.08);
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.premium-bonus:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(234, 179, 8, 0.15);
}
.bonus-img-container {
    background: none; /* Removemos o fundo cinza antigo */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}
.bonus-img-container img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /* Sombras sutis nas capas para parecer livro real flutuando */
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.15)); 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.premium-bonus:hover .bonus-img-container img {
    transform: scale(1.05);
}
.bonus-num {
    color: #d97706; /* Amarelo/Laranja queimado para o número do bônus */
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.bonus-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 12px;
    max-width: 280px;
}
.bonus-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}
.bonus-price-tag {
    background: #fef3c7;
    padding: 10px 18px;
    border-radius: 10px;
    color: #b45309;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
}
.exclusivity-seal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 50px;
    border: 2px solid #fff;
    box-shadow: 0 6px 15px rgba(217, 119, 6, 0.3);
    z-index: 10;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transform: rotate(4deg);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.premium-bonus:hover .exclusivity-seal {
    transform: rotate(0deg) scale(1.08);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.45);
}
.strike-price {
    text-decoration: line-through;
    opacity: 0.7;
}
.free-price {
    color: #16a34a;
    font-size: 18px;
    font-weight: 900;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: #fff;
}
.countdown-container {
    text-align: center;
    margin-bottom: 40px;
}
.countdown-container p {
    color: var(--danger);
    font-weight: 700;
    font-size: 16px;
}
.timer {
    font-size: 36px;
    font-weight: 900;
    color: var(--danger);
    background: #fef2f2;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 10px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}
.pricing-card {
    background: #fff;
    border: 3px solid #ddd6fe;
    border-radius: 24px;
    padding: 40px 30px;
    flex: 1;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(76, 29, 149, 0.08);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pricing-card:hover {
    transform: translateY(-5px);
}
.pricing-card.premium {
    background: var(--primary-dark);
    border: 4px solid var(--accent);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(76, 29, 149, 0.35);
}
.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    white-space: nowrap;
}
.plan-name {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.plan-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}
.price-box {
    margin-bottom: 10px;
}
.old-price {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
}
.new-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-dark);
}
.payment-type {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}
.plan-features li {
    padding: 10px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.plan-features li i {
    color: var(--success);
}
.plan-features li.disabled {
    opacity: 0.5;
}
.plan-features li.disabled i {
    color: var(--danger);
}

.btn-outline {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 0 #5b21b6, 0 15px 20px rgba(0,0,0,0.15);
    border: 2px solid #fff;
    transition: 0.2s;
    width: 100%;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.btn-outline:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 #5b21b6, 0 5px 10px rgba(0,0,0,0.15);
}
.btn-solid {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 0 #047857, 0 15px 20px rgba(0,0,0,0.2);
    border: 2px solid #fff;
    outline: 3px solid #b5893d;
    outline-offset: 3px;
    transition: 0.2s;
    width: calc(100% - 12px); /* adjust width slightly to account for outline-offset space */
    margin: 6px auto;
}
.btn-solid:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 #047857, 0 5px 10px rgba(0,0,0,0.2);
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: #fffdf5;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(76, 29, 149, 0.05);
    border: 2px solid #ddd6fe;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.stars {
    color: #facc15;
    margin-bottom: 15px;
    font-size: 18px;
}
.testi-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}
.author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}
.testi-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);
}
.author-info {
    display: flex;
    flex-direction: column;
}
.testi-card .author strong {
    font-size: 16px;
    color: var(--primary-dark);
    font-weight: 800;
}
.testi-card .author span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: #f0fdf4;
    border-top: 2px solid #bbf7d0;
    border-bottom: 2px solid #bbf7d0;
}
.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 3px solid #86efac;
    box-shadow: 0 15px 35px rgba(22, 101, 52, 0.08);
}
.guarantee-badge-container {
    flex-shrink: 0;
}
.badge-seal {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: 5px double #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}
.seal-number {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}
.seal-days {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}
.guarantee-content {
    flex: 1;
}
.guarantee-ribbon {
    display: inline-block;
    background: #dcfce7;
    color: #15803d;
    font-size: 12px;
    font-weight: 900;
    padding: 6px 15px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.guarantee-title {
    font-size: 28px;
    font-weight: 900;
    color: #166534;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.guarantee-description {
    font-size: 16px;
    color: #14532d;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #fff;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 2px solid #ddd6fe;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-question {
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f8fafc;
    transition: 0.3s;
}
.faq-question:hover {
    background: #f1f5f9;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}
.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Upsell Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #fef3c7;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 3px solid #f59e0b;
    animation: modalPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #92400e;
    cursor: pointer;
    line-height: 1;
}

.modal-ribbon {
    background: #dc2626;
    color: #fff;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-top: -60px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.4);
    font-size: 14px;
}

.modal-title {
    font-size: 26px;
    font-weight: 900;
    color: #92400e;
    line-height: 1.2;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 16px;
    color: #b45309;
    margin-bottom: 20px;
}

.modal-price-box {
    margin-bottom: 20px;
}
.modal-old-price {
    font-size: 20px;
    color: #b45309;
    text-decoration: line-through;
    opacity: 0.7;
    display: inline-block;
    margin-right: 10px;
}
.modal-new-price {
    font-size: 50px;
    font-weight: 900;
    color: #d97706;
    line-height: 1;
}

.modal-features {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto 30px;
}
.modal-features li {
    padding: 6px 0;
    font-weight: 600;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal-features li i {
    color: #16a34a;
}

.modal-cta {
    display: block;
    background: #d97706;
    color: #fff;
    padding: 18px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(217, 119, 6, 0.3);
}

.modal-decline {
    display: block;
    color: #b45309;
    font-size: 14px;
    text-decoration: underline;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title { font-size: 32px; }
    .subtitle { font-size: 16px; }
    .cta-button { font-size: 18px; padding: 15px 30px; }
    
    .comparison-grid {
        flex-direction: column;
    }
    .pricing-grid {
        flex-direction: column;
    }
    .pricing-card.premium {
        transform: scale(1);
    }
    
    /* Bônus Carrossel no Celular (Nativo e Ultra Fluido) */
    .bonus-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 10px 15px 30px;
        margin: 0 -15px; /* Estende ligeiramente além das margens do container para affordance visual de swipe */
        scroll-padding: 15px;
    }
    .premium-bonus {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    /* Ocultar barra de rolagem para manter layout limpo */
    .bonus-grid::-webkit-scrollbar {
        display: none;
    }
    .bonus-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* WhatsApp Floating Button (Premium Visuals) */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-float i {
    animation: wppWobble 2.5s ease-in-out infinite;
}

/* Pulse wave animation around button */
.wpp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: wppPulseWave 2s infinite;
    opacity: 0;
}

/* Premium Tooltip showing support state */
.wpp-tooltip {
    position: absolute;
    right: 75px;
    background: #1e293b;
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: all 0.3s ease;
}
.wpp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1e293b;
}
.whatsapp-float:hover .wpp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Animations */
@keyframes wppWobble {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    45% { transform: rotate(-10deg); }
    60% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
    90% { transform: rotate(5deg); }
}

@keyframes wppPulseWave {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Mobile adjustment to avoid overlapping checkout buttons */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    .wpp-tooltip {
        display: none; /* Hide tooltip on tiny mobile screens to avoid coverups */
    }
}
