.elementor-912 .elementor-element.elementor-element-7bd0dc6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:50px;--padding-bottom:50px;--padding-left:50px;--padding-right:50px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );}.elementor-912 .elementor-element.elementor-element-39d0826 img{width:200px;}.elementor-widget-heading .elementor-heading-title{color:var( --e-global-color-primary );}.elementor-912 .elementor-element.elementor-element-326ce2c{text-align:center;}.elementor-912 .elementor-element.elementor-element-326ce2c .elementor-heading-title{font-family:"Outfit", Sans-serif;font-size:30px;font-weight:700;}.elementor-912 .elementor-element.elementor-element-6e166ea{text-align:center;}.elementor-912 .elementor-element.elementor-element-6e166ea .elementor-heading-title{font-family:"Outfit", Sans-serif;font-size:16px;font-weight:400;}.elementor-912 .elementor-element.elementor-element-024de86{width:var( --container-widget-width, 90% );max-width:90%;--container-widget-width:90%;--container-widget-flex-grow:0;}.elementor-912 .elementor-element.elementor-element-024de86.elementor-element{--align-self:center;}#elementor-popup-modal-912 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-912{justify-content:center;align-items:center;pointer-events:all;background-color:rgba(0,0,0,.8);}#elementor-popup-modal-912 .dialog-close-button{display:flex;}#elementor-popup-modal-912 .dialog-widget-content{border-radius:20px 20px 20px 20px;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:767px){.elementor-912 .elementor-element.elementor-element-024de86{--container-widget-width:100%;--container-widget-flex-grow:0;width:var( --container-widget-width, 100% );max-width:100%;}}/* Start custom CSS for html, class: .elementor-element-024de86 */.coupon-box {
    width: 100%;
}

.coupon-button {
    position: relative;

    width: 100%;
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 10px 14px 10px 18px;

    border: 1px solid #d8f3df;
    border-radius: 14px;

    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);

    color: #111827;

    font-family: inherit;

    cursor: pointer;
    overflow: hidden;

    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);

    transition: 
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.coupon-button::before {
    content: "";

    position: absolute;
    top: 0;
    left: -80px;

    width: 60px;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(34, 197, 94, 0.14),
        transparent
    );

    transform: skewX(-18deg);
    transition: left .45s ease;
}

.coupon-button:hover {
    transform: translateY(-2px);

    border-color: #22c55e;

    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);

    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.16);
}

.coupon-button:hover::before {
    left: 110%;
}

.coupon-button:active {
    transform: translateY(0);
    box-shadow: 0 5px 14px rgba(34, 197, 94, 0.14);
}

.coupon-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;

    min-width: 0;
}

.coupon-label {
    font-size: 12px;
    font-weight: 500;

    color: #6b7280;

    line-height: 1;
}

.coupon-code {
    display: inline-flex;
    align-items: center;

    padding: 7px 11px;

    border: 1px dashed #22c55e;
    border-radius: 9px;

    background: #ecfdf3;

    color: #15803d;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: .6px;

    line-height: 1;

    white-space: nowrap;
}

.coupon-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 42px;

    padding: 0 16px;

    border-radius: 10px;

    background: #22c55e;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition: 
        background .2s ease,
        transform .2s ease;
}

.coupon-button:hover .coupon-action {
    background: #16a34a;
    transform: translateX(2px);
}

.coupon-action svg {
    flex-shrink: 0;
    transition: transform .2s ease;
}

.coupon-button:hover .coupon-action svg {
    transform: translateX(3px);
}

.coupon-button.is-copied {
    border-color: #16a34a;
    background: linear-gradient(135deg, #ecfdf3 0%, #ffffff 100%);
}

.coupon-button.is-copied .coupon-action {
    background: #15803d;
}


/* Mobile */
@media (max-width: 640px) {
    .coupon-button {
        min-height: auto;

        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        gap: 12px;

        padding: 14px;

        border-radius: 16px;
    }

    .coupon-content {
        width: 100%;

        align-items: center;
        text-align: center;

        gap: 8px;
    }

    .coupon-label {
        font-size: 12px;
        line-height: 1.2;
    }

    .coupon-code {
        width: 100%;

        justify-content: center;

        padding: 12px 14px;

        font-size: 16px;
        letter-spacing: .7px;
    }

    .coupon-action {
        width: 100%;
        min-height: 46px;

        padding: 0 14px;

        border-radius: 12px;

        font-size: 14px;
    }

    .coupon-action-text {
        text-align: center;
        white-space: nowrap;
    }

    .coupon-button:hover {
        transform: none;
    }

    .coupon-button:hover .coupon-action {
        transform: none;
    }
}


/* Mobile bem pequeno */
@media (max-width: 360px) {
    .coupon-button {
        padding: 12px;
        gap: 10px;
    }

    .coupon-code {
        font-size: 14px;
        padding: 11px 12px;
    }

    .coupon-action {
        min-height: 44px;
        font-size: 13px;
    }

    .coupon-action-text {
        white-space: normal;
        line-height: 1.2;
    }
}/* End custom CSS */