/**
 * TeixeiraZap Ofertas - Card Styles (Shared)
 * Estilos base para cards de ofertas e encartes, usados tanto no feed quanto nas relacionadas.
 */

.oferta-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--gz-radius-sm);
    -webkit-border-radius: var(--gz-radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    height: 100%;
}

.oferta-card:hover {
    transform: translateY(-4px);
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--gz-primary);
}

.oferta-link-overlay {
    text-decoration: none !important;
    color: inherit !important;
    outline: none;
}

.oferta-link-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.oferta-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.oferta-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px) brightness(0.85);
    -webkit-filter: blur(20px) brightness(0.85);
    transform: scale(1.25);
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    opacity: 0.7;
    transition: transform 0.6s ease;
    -webkit-transition: transform 0.6s ease;
    -moz-transition: transform 0.6s ease;
    -o-transition: transform 0.6s ease;
}

.oferta-card:hover .oferta-image-background {
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
}

.oferta-image-foreground {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 92% !important;
    height: 92% !important;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    -webkit-filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    -moz-transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Efeito de hover na imagem frontal */
.oferta-card:hover .oferta-image-foreground {
    transform: translate(-50%, -52%) scale(1.05);
    -webkit-transform: translate(-50%, -52%) scale(1.05);
    -ms-transform: translate(-50%, -52%) scale(1.05);
}

.oferta-image-contain .oferta-image-foreground {
    width: 95% !important;
    height: 95% !important;
}

.oferta-content {
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    padding: 12px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    gap: 6px;
    background: #fff;
    position: relative;
    z-index: 15;
}

.oferta-categoria-badge-top {
    font-size: 10px;
    font-weight: 800;
    color: var(--gz-text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.oferta-title {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #111b21;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6em; /* Força 2 linhas para alinhamento */
}

.oferta-title a {
    text-decoration: none !important;
    color: #1a1a1a !important;
}

.oferta-title a:hover {
    color: var(--gz-primary) !important;
}

/* Estabelecimento no Card */
.oferta-estabelecimento-wrapper {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    gap: 6px;
    margin-top: 2px;
    margin-bottom: 6px;
    text-decoration: none !important;
    color: #4b5563 !important;
    position: relative;
    z-index: 11;
    min-height: 24px; /* Garante alinhamento mesmo com logos de alturas diferentes */
}

.loja-logo-container {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.loja-mini-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loja-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.loja-nome {
    font-size: 12px;
    font-weight: 600;
    color: var(--gz-primary);
}

.loja-endereco-curto {
    font-size: 10px;
    color: #999;
}

/* Preços */
.oferta-preco {
    margin: 10px 0;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: baseline;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    gap: 6px;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}

.preco-desconto {
    font-size: 20px;
    font-weight: 800;
    color: #d63638;
}

.preco-original {
    font-size: 13px;
    text-decoration: line-through;
    color: #999;
}

.preco-simples {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.percentual-badge {
    background: #fff0f0;
    color: #d63638;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
}

.oferta-validade {
    font-size: 10px;
    color: #666;
    margin-bottom: 4px;
}

/* Smart Snippet Contexto de Busca */
.oferta-smart-snippet {
    background: #f8fafc;
    border: 1px dashed var(--gz-primary);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    padding: 8px 12px;
    margin: 8px 0;
    font-size: 12px;
    color: #334155;
    position: relative;
    z-index: 12;
}

.oferta-smart-snippet strong {
    color: var(--gz-primary);
}

.snippet-price {
    display: block;
    font-weight: 800;
    font-size: 14px;
    color: #d63638;
}

/* Footer do Card com Botão */
.oferta-footer {
    padding: 10px 12px 12px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.btn-ver-oferta {
    display: block;
    width: 100%;
    padding: 9px;
    background: var(--gz-primary);
    color: white;
    text-align: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
    transition: var(--gz-transition);
    -webkit-transition: var(--gz-transition);
    -moz-transition: var(--gz-transition);
    -o-transition: var(--gz-transition);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
    -webkit-box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.btn-ver-oferta:hover {
    background: var(--gz-secondary);
    transform: translateY(-1px);
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    -webkit-box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .oferta-card {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        min-height: 260px;
    }

    .oferta-content {
        padding: 10px;
        gap: 4px;
    }

    .oferta-title {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .loja-logo-container {
        width: 18px;
        height: 18px;
    }

    .loja-nome {
        font-size: 11px;
    }

    .loja-endereco-curto {
        font-size: 9px;
    }

    .preco-desconto {
        font-size: 17px;
    }

    .btn-ver-oferta {
        padding: 8px;
        font-size: 12px;
    }
}

/* =========================================
   GROWTH BAIT: Banner Isca de WhatsApp (Full Width)
   ========================================= */
.banner-whatsapp-feed {
    background-color: #DCF8C6 !important;
    border: 1px solid #25D366 !important;
    min-height: auto;
    grid-column: 1 / -1 !important;
    width: 100%;
    margin: 20px 0;

    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.growth-content {
    padding: 20px 32px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    width: 100%;
    gap: 24px;
    position: relative;
    z-index: 5;
}

.growth-header-wrapper {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    gap: 8px;
    flex: 1.5;
    -webkit-box-flex: 1.5;
    -ms-flex: 1.5;
}

.growth-steps {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    gap: 24px;
    margin: 0;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex: 2;
    -webkit-box-flex: 2;
    -ms-flex: 2;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.growth-step {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    gap: 10px;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.step-badge {
    width: 32px;
    height: 32px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    font-weight: 800;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(7, 94, 84, 0.15);
    -webkit-box-shadow: 0 4px 6px rgba(7, 94, 84, 0.15);
    -moz-box-shadow: 0 4px 6px rgba(7, 94, 84, 0.15);
}

.growth-cta-btn {
    background: #25D366;
    color: white !important;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    font-weight: 800;
    padding: 12px 24px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    gap: 10px;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    -webkit-box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    -moz-box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
    cursor: pointer;
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
}

.growth-cta-btn:hover {
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    background: #128C7E;
    box-shadow: 0 6px 16px rgba(18, 140, 126, 0.4);
    -webkit-box-shadow: 0 6px 16px rgba(18, 140, 126, 0.4);
    -moz-box-shadow: 0 6px 16px rgba(18, 140, 126, 0.4);
}

.growth-watermark {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.1;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.growth-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    color: #075E54;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Responsivo Mobile */
@media (max-width: 850px) {
    .banner-whatsapp-feed {
        margin: 12px 0;
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        border-radius: 16px;
        -webkit-border-radius: 16px;
    }

    .growth-content {
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        gap: 12px;
        padding: 16px 20px;
        text-align: center;
    }

    .growth-header-wrapper {
        width: 100%;
        text-align: center;
        gap: 4px;
        /* Reduzido de 8px */
    }

    .growth-close-btn {
        top: 8px;
        right: 8px;
    }

    .growth-title {
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 2px;
        color: #075E54;
    }

    .growth-subtitle {
        font-size: 13.5px;
        line-height: 1.35;
        opacity: 0.85;
    }

    .growth-steps {
        width: 100%;
        display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        flex-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        gap: 10px;
        justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        align-items: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        margin: 4px 0;
    }

    .growth-step {
        flex: 1;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        background: rgba(255, 255, 255, 0.45);
        padding: 10px 8px;
        /* Reduzido para compactar */
        border-radius: 12px;
        -webkit-border-radius: 12px;
        display: flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        /* Reduzido */
        border: 1px solid rgba(37, 211, 102, 0.2);
    }

    .growth-step .step-badge {
        width: 26px;
        /* Reduzido ligeiramente */
        height: 26px;
        font-size: 13px;
    }

    .growth-step .step-text {
        font-size: 11.5px;
        line-height: 1.15;
        font-weight: 600;
    }

    .growth-cta-btn {
        width: 100%;
        max-width: 260px;
        padding: 12px 18px;
        /* Reduzido de 14px 20px */
        font-size: 15px;
        margin-top: 2px;
        /* Reduzido */
        flex: none;
        -webkit-box-flex: 0;
        -ms-flex: none;
    }
}



/* ========================================
   BANNER FOOTER WHATSAPP (Premium Desktop UX)
   ======================================== */

.banner-zap-footer {
    background: -webkit-linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    background: -moz-linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    background: -o-linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-top: 2px solid #a7f3d0;
    border-bottom: 1px solid #e5e7eb;
    padding: 28px 0;
    width: 100%;
    position: relative;
}

.banner-zap-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: -webkit-linear-gradient(0deg, #10b981, #25D366, #10b981);
    /* 90deg maps to 0deg in some legacy webkit */
    background: -moz-linear-gradient(90deg, #10b981, #25D366, #10b981);
    background: -o-linear-gradient(90deg, #10b981, #25D366, #10b981);
    background: linear-gradient(90deg, #10b981, #25D366, #10b981);
    opacity: 0.4;
}

.banner-zap-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    gap: 32px;
}

.banner-zap-icon {
    flex-shrink: 0;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
    -webkit-box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
    -moz-box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.banner-zap-icon svg {
    filter: drop-shadow(0 2px 4px rgba(37, 211, 102, 0.2));
    -webkit-filter: drop-shadow(0 2px 4px rgba(37, 211, 102, 0.2));
}

.banner-zap-content {
    flex: 1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
}

.banner-zap-content .banner-zap-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 6px;
    line-height: 1.2;
}

.banner-zap-content .highlight {
    color: #059669;
    font-weight: 700;
}

.banner-zap-content .banner-zap-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.banner-zap-action {
    flex-shrink: 0;
}

.btn-zap-footer {
    background: -webkit-linear-gradient(135deg, #10b981 0%, #059669 100%);
    background: -moz-linear-gradient(135deg, #10b981 0%, #059669 100%);
    background: -o-linear-gradient(135deg, #10b981 0%, #059669 100%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    -webkit-box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    -moz-box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-zap-footer:hover {
    background: -webkit-linear-gradient(135deg, #059669 0%, #047857 100%);
    background: -moz-linear-gradient(135deg, #059669 0%, #047857 100%);
    background: -o-linear-gradient(135deg, #059669 0%, #047857 100%);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    -webkit-box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    -moz-box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-zap-footer:active {
    transform: translateY(0);
}

.btn-zap-footer svg {
    flex-shrink: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .banner-zap-footer {
        padding: 24px 0;
    }

    .banner-zap-footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 16px;
    }

    .banner-zap-icon {
        width: 56px;
        height: 56px;
    }

    .banner-zap-icon svg {
        width: 40px;
        height: 40px;
    }

    .banner-zap-content .banner-zap-title {
        font-size: 19px;
    }

    .banner-zap-content .banner-zap-subtitle {
        font-size: 14px;
    }

    .btn-zap-footer {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }
}