:root {
    --cor-fundocontent: #fff;
}

/*============================= EFEITOS NOTIFICACOES =========================================================*/

/* ===== EFEITO 4: BOUNCE ===== */
@keyframes bounce-bell {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(-10deg);
    }

    75% {
        transform: translateY(-8px) rotate(10deg);
    }
}

.icon-bounce {
    animation: bounce-bell 0.8s infinite;
}




/*============================= chip moedas =========================================================*/
.chip-stack {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    /*background: linear-gradient(135deg, #ffffff 0%, #fff4e2 100%);*/
    /*border-radius: 12px;*/
    padding: 8px 14px 8px 10px;
    /*border: 1px solid rgba(255, 215, 0, 0.25);*/
   /* box-shadow: 0 4px 16px rgba(0,0,0,0.35);*/
   /* animation: glow-gold 2.5s ease-in-out infinite;*/
    will-change: box-shadow;
    margin-bottom: 4px;
}

@keyframes glow-gold {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 6px rgba(255, 215, 0, 0.15), 0 0 0px rgba(255, 215, 0, 0);
        border-color: rgba(255, 215, 0, 0.25);
    }

    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 18px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 165, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.8);
    }
}

.chip-stack-coins {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

    .chip-stack-coins span {
        position: absolute;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 1.5px solid rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        color: #3d2000;
        font-weight: 900;
        box-shadow: 0 1px 4px rgba(0,0,0,0.4);
    }

        .chip-stack-coins span:nth-child(1) {
            top: 0;
            left: 3px;
            z-index: 3;
            background: linear-gradient(135deg, #FFD700, #DAA520);
        }

        .chip-stack-coins span:nth-child(2) {
            top: 3px;
            left: 1px;
            z-index: 2;
            background: linear-gradient(135deg, #DAA520, #B8860B);
        }

        .chip-stack-coins span:nth-child(3) {
            top: 6px;
            left: 0px;
            z-index: 1;
            background: linear-gradient(135deg, #B8860B, #8B6914);
        }

.chip-stack-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .chip-stack-info .val {
        font-size: 20px;
        font-weight: 500;
        color: #614c0e;
    }

    .chip-stack-info .lbl {
        font-size: 9px;
        color: rgb(43 23 6);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.8px;
    }
/*========================UPDATE EMPRESA INFO============================================================*/
bg_frutos {
    background: #F2FFF5!important;
}
.esconde_div{
    display:none!important;
}

.restaurant-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Restaurant Info */
.restaurant-info {
    padding: 24px 20px;
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.restaurant-image {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e72);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

    .restaurant-image::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }

.restaurant-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.restaurant-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
    font-weight: 500;
}


.action-buttons {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #20ba5a);
}

    .btn-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }

    .btn-whatsapp:active {
        transform: translateY(-1px);
    }

.btn-address {
    background: linear-gradient(135deg, #0066ff, #0052cc);
}

    .btn-address:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
    }

    .btn-address:active {
        transform: translateY(-1px);
    }

.action-btn i {
    font-size: 16px;
}

/* Benefits Section */
.benefits-section {
    padding: 28px 5px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    margin: 24px 20px;
    border-radius: 16px;
    border: 2px solid #e8eaed;
}

.benefits-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 0.5px;
}

.benefits-list {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #ff6b6b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: 15px;
}

.benefit-item {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.benefit-highlight {
    font-weight: 700;
    color: #ff6b6b;
    font-size: 15px;
}

.view-btn {
    width: 100%;
    padding: 16px;
    /*background: linear-gradient(135deg, #ffcf00, #9d0000);*/
    background: linear-gradient(135deg, #083706, #006f1a) !important;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .view-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
        color: white;
    }

    .view-btn:active {
        transform: translateY(-1px);
    }

    .view-btn i {
        font-size: 18px;
    }

    .view-btn a {
        color: white;
    } 
    .view-btn a :has(:hover) {
        color: white;
    }
/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loyalty-card {
    animation: slideUp 0.6s ease-out;
}

.benefits-section {
    animation: slideUp 0.6s ease-out 0.2s both;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
        box-shadow: none;
    }

    .loyalty-card {
        margin: 16px;
        padding: 20px;
    }

    .benefits-section {
        margin: 0px;
        padding: 5px;
    }

    .loyalty-title {
        font-size: 28px;
    }

    .loyalty-image {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }
}

.color_btn_clube {
    background: linear-gradient(135deg, #1c34c7, #9d0000) !important;
}
.color_btn_clube_frutoGoias {
     background: linear-gradient(135deg, #083706, #006f1a) !important;
}
.iti__selected-flag{
    background:none!important;
}
/*============================================PROMOÇÕES EXTRAS======================================================================*/
/* ========== RESET E VARIÁVEIS ========== */
.guaravira-card-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    /*    box-shadow: 0 0 40px rgba(255, 107, 53, 0.25), 0 15px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.6);*/
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: guaravira-card-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

@keyframes guaravira-card-entrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.guaravira-card-wrapper:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 0 60px rgba(255, 107, 53, 0.35), 0 25px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ========== IMAGEM CONTAINER ========== */

.guaravira-img-container {
    position: relative;
    width: 100%;

    overflow: hidden;
    background: #f0f0f0;
}

.guaravira-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.guaravira-card-wrapper:hover .guaravira-img-top {
    transform: scale(1.08) rotate(1deg);
}

.guaravira-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 71, 87, 0.15) 100%);
    pointer-events: none;
    animation: guaravira-overlay-shimmer 4s ease-in-out infinite;
}

@keyframes guaravira-overlay-shimmer {
    0%, 100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.25;
    }
}

.guaravira-shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
    animation: guaravira-shine-move 3s infinite;
    pointer-events: none;
}

@keyframes guaravira-shine-move {
    0% {
        transform: translate(-100%, -100%) rotate(0deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(360deg);
    }
}

/* ========== CARD BODY ========== */

.guaravira-card-body {
    padding: 5px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

@media (min-width: 576px) {
    .guaravira-card-body {
        padding: 25px;
    }
}

@media (min-width: 768px) {
    .guaravira-card-body {
        padding: 30px;
    }
}

/* ========== TÍTULO ========== */

.guaravira-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #1a1a3e;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1c1a19 0%, #2a2c33 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    animation: guaravira-title-fade 0.8s ease-out 0.2s both;
    margin: 0 0 10px 0;
    padding: 0;
}

@media (min-width: 576px) {
    .guaravira-card-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
}

@media (min-width: 768px) {
    .guaravira-card-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}

@keyframes guaravira-title-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== DESCRIÇÃO ========== */

.guaravira-card-desc {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 400;
    animation: guaravira-desc-fade 0.8s ease-out 0.3s both;
    margin: 0 0 15px 0;
    padding: 0;
}

@media (min-width: 576px) {
    .guaravira-card-desc {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
}

@media (min-width: 768px) {
    .guaravira-card-desc {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }
}

@keyframes guaravira-desc-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== BANNER DE URGÊNCIA ========== */

.guaravira-urgency-banner {
    background: linear-gradient(90deg, rgba(255, 23, 68, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    border-left: 3px solid #FF1744;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    animation: guaravira-urgency-pulse 2s ease-in-out infinite;
}

@media (min-width: 576px) {
    .guaravira-urgency-banner {
        padding: 11px 14px;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .guaravira-urgency-banner {
        padding: 12px 15px;
        margin-bottom: 18px;
    }
}

@keyframes guaravira-urgency-pulse {
    0%, 100% {
        background: linear-gradient(90deg, rgba(255, 23, 68, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    }

    50% {
        background: linear-gradient(90deg, rgba(255, 23, 68, 0.25) 0%, rgba(255, 107, 53, 0.25) 100%);
    }
}

.guaravira-urgency-text {
    color: #FF1744;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
}

@media (min-width: 576px) {
    .guaravira-urgency-text {
        font-size: 0.72rem;
        letter-spacing: 0.9px;
        gap: 7px;
    }
}

@media (min-width: 768px) {
    .guaravira-urgency-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
        gap: 8px;
    }
}

.guaravira-urgency-icon {
    animation: guaravira-icon-blink 1s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes guaravira-icon-blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ========== SEÇÃO DE PREÇOS ========== */

.price-card-6 {
    
    border-radius: 14px;
    border-left: 3px solid #FF1744;
    padding: 16px 20px;
    /* max-width: 360px;*/
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    background: #ffcd3f1a;
    /*border: 1px solid #eee;*/
    width: 100%;
}

    .price-card-6 .top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .price-card-6 .badge-promo {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #fff5f5;
        color: #e53935;
        font-size: 14px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 6px;
        border: 1px solid #ffd0d0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .price-card-6 .de {
        font-size: 16px;
        color: #b7b5b5;
        text-decoration: line-through;
        font-weight: 500;
    }

    .price-card-6 .price-row {
        display: flex;
        align-items: baseline;
        gap: 10px;
        margin-bottom: 14px;
    }

    .price-card-6 .por-label {
        font-size: 11px;
        color: #aaa;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .price-card-6 .por-valor {
        font-size: 32px;
        font-weight: 900;
        color: #e53935;
        line-height: 1;
    }

        .price-card-6 .por-valor sup {
            font-size: 14px;
            font-weight: 700;
            vertical-align: super;
        }

    .price-card-6 .moedas-row {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fffbf0;
        border: 1px solid #f5e9c8;
        border-radius: 8px;
        padding: 8px 14px;
        font-size: 16px;
        font-weight: 600;
        color: #7a5000;
    }

        .price-card-6 .moedas-row i {
            color: #DAA520;
            font-size: 15px;
        }

        .price-card-6 .moedas-row strong {
            color: #9b6e00;
            font-weight: 700;
        }



/* new */
.guaravira-price-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF4757 100%);
    border-radius: 15px;
    padding: 18px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: guaravira-price-section-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

@media (min-width: 576px) {
    .guaravira-price-section {
        padding: 22px;
        margin-top: 16px;
        border-radius: 18px;
    }
}

@media (min-width: 768px) {
    .guaravira-price-section {
        padding: 28px;
        margin-top: 20px;
        border-radius: 20px;
    }
}

/*@keyframes guaravira-price-section-entrance {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}*/

.guaravira-price-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: guaravira-shine-rotate 5s linear infinite;
}

/*@keyframes guaravira-shine-rotate {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 30px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}*/

.guaravira-price-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: guaravira-border-glow 2s infinite;
}

@keyframes guaravira-border-glow {
    0%, 100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

.guaravira-price-content {
    position: relative;
    z-index: 1;
}

.guaravira-price-old {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: guaravira-fade-in-left 0.8s ease-out;
    margin: 0 0 8px 0;
    padding: 0;
}

@media (min-width: 576px) {
    .guaravira-price-old {
        font-size: 0.75rem;
        margin-bottom: 10px;
        letter-spacing: 1.1px;
        gap: 7px;
    }
}

@media (min-width: 768px) {
    .guaravira-price-old {
        font-size: 0.8rem;
        margin-bottom: 12px;
        letter-spacing: 1.2px;
        gap: 8px;
    }
}

.guaravira-price-old::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    animation: guaravira-dot-pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

@media (min-width: 576px) {
    .guaravira-price-old::before {
        width: 5px;
        height: 5px;
    }
}

@media (min-width: 768px) {
    .guaravira-price-old::before {
        width: 6px;
        height: 6px;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }
}

@keyframes guaravira-dot-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.guaravira-price-new {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 0;
    animation: guaravira-price-bounce 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@media (min-width: 576px) {
    .guaravira-price-new {
        gap: 8px;
    }
}

@media (min-width: 768px) {
    .guaravira-price-new {
        gap: 10px;
    }
}

.guaravira-price-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 4px;
    animation: guaravira-fade-in-left 1s ease-out 0.3s both;
    white-space: nowrap;
}

@media (min-width: 576px) {
    .guaravira-price-label {
        font-size: 0.65rem;
        letter-spacing: 1.3px;
        margin-top: 5px;
    }
}

@media (min-width: 768px) {
    .guaravira-price-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-top: 6px;
    }
}

.guaravira-price-value {
    font-family: 'Bebas Neue', cursive;
    /*font-size: 2.5rem;*/
    font-size:30px;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2), inset -2px -2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1;
    animation: guaravira-price-float 2.8s ease-in-out infinite;
    letter-spacing: -1.5px;
    position: relative;
    margin: 0;
    padding: 0;
}

@media (min-width: 576px) {
    .guaravira-price-value {
        font-size: 3rem;
        letter-spacing: -2px;
    }
}

@media (min-width: 768px) {
    .guaravira-price-value {
        font-size: 3.5rem;
        letter-spacing: -2.5px;
    }
}

.guaravira-price-value::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 8px;
    animation: guaravira-price-glow 2s ease-in-out infinite;
    pointer-events: none;
}

/*@keyframes guaravira-price-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.01);
    }
}*/

/*@keyframes guaravira-price-glow {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}*/

/*@keyframes guaravira-price-bounce {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes guaravira-fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}*/

/* ========== ECONOMIAS ========== */

.guaravira-savings {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: guaravira-slide-in 0.9s ease-out 0.5s both;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    padding-top: 10px;
    background: coral;
    border-radius: 15px;
}

@media (min-width: 576px) {
    .guaravira-savings {
        font-size: 0.75rem;
        margin-top: 12px;
        padding-top: 12px;
        gap: 7px;
    }
}

@media (min-width: 768px) {
    .guaravira-savings {
        font-size: 0.82rem;
        margin-top: 14px;
        padding-top: 14px;
        gap: 8px;
    }
}

.guaravira-savings-icon {
    color: #FFD700;
    font-size: 0.9rem;
    animation: guaravira-icon-bounce 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    flex-shrink: 0;
}

@media (min-width: 576px) {
    .guaravira-savings-icon {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .guaravira-savings-icon {
        font-size: 1.1rem;
        text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
    }
}

@keyframes guaravira-icon-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-3px) scale(1.08);
    }
}

@keyframes guaravira-slide-in {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== BADGE DE DESCONTO ========== */

.guaravira-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FF1744 0%, #D50000 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 40px;
   /* font-size: 0.55rem;*/
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.6), 0 0 20px rgba(255, 23, 68, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: guaravira-badge-pulse 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    z-index: 20;
}

@media (min-width: 576px) {
    .guaravira-discount-badge {
        top: 15px;
        right: 15px;
        padding: 9px 16px;
        font-size: 0.6rem;
        letter-spacing: 1.1px;
    }
}

@media (min-width: 768px) {
    .guaravira-discount-badge {
        top: 18px;
        right: 18px;
        padding: 10px 18px;
        font-size: 0.65rem;
        letter-spacing: 1.2px;
        border: 2px solid rgba(255, 255, 255, 0.35);
    }
}

@keyframes guaravira-badge-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(3deg);
    }
}

.guaravira-badge-star {
    color: #FFD700;
    margin-right: 4px;
    animation: guaravira-star-spin 2s linear infinite;
    display: inline-block;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

@media (min-width: 576px) {
    .guaravira-badge-star {
        margin-right: 5px;
    }
}

@media (min-width: 768px) {
    .guaravira-badge-star {
        margin-right: 6px;
    }
}

@keyframes guaravira-star-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* ========== CONTADOR REGRESSIVO ========== */

.guaravira-countdown-container {
    background: linear-gradient(135deg, #FF6B35 0%, #FF4757 100%);
    border-radius: 15px;
    padding: 18px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4), 0 0 20px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: guaravira-countdown-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

@media (min-width: 576px) {
    .guaravira-countdown-container {
        padding: 22px;
        margin-top: 16px;
        border-radius: 18px;
    }
}

@media (min-width: 768px) {
    .guaravira-countdown-container {
        padding: 28px;
        margin-top: 20px;
        border-radius: 20px;
    }
}

@keyframes guaravira-countdown-entrance {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.guaravira-countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: guaravira-shine-rotate 5s linear infinite;
}

.guaravira-countdown-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.guaravira-countdown-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    display: block;
    animation: guaravira-fade-in-left 0.8s ease-out 0.3s both;
}

@media (min-width: 576px) {
    .guaravira-countdown-label {
        font-size: 0.75rem;
        letter-spacing: 1.3px;
        margin-bottom: 14px;
    }
}

@media (min-width: 768px) {
    .guaravira-countdown-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }
}

.guaravira-countdown-display {
    font-family: 'Bebas Neue', cursive;
    /*font-size: 2.8rem;*/
    font-size:25px;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2), inset -2px -2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1;
    letter-spacing: -1px;
    animation: guaravira-countdown-pulse-text 1s ease-in-out infinite;
    margin: 0;
    padding: 0;
}

@media (min-width: 576px) {
    .guaravira-countdown-display {
        font-size: 3.2rem;
        letter-spacing: -1.5px;
    }
}

@media (min-width: 768px) {
    .guaravira-countdown-display {
        font-size: 3.8rem;
        letter-spacing: -2px;
    }
}

@keyframes guaravira-countdown-pulse-text {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    }

    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
    }
}

.guaravira-countdown-icon {
    color: #FFD700;
    margin-right: 8px;
    animation: guaravira-countdown-icon-pulse 1.2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

@keyframes guaravira-countdown-icon-pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.15) rotate(10deg);
    }
}

/* ========== BARRA DE PROGRESSÃO ANIMADA ========== */

.guaravira-progress-container {
    width: 100%;
    height: 22px;
    background: #fff;
    border-radius: 20px;
    margin-top: 18px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: guaravira-progress-entrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
}

@media (min-width: 576px) {
    .guaravira-progress-container {
        height: 14px;
        margin-top: 20px;
    }
}

@media (min-width: 768px) {
    .guaravira-progress-container {
        height: 16px;
        margin-top: 22px;
    }
}

@keyframes guaravira-progress-entrance {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.guaravira-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    border-radius: 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: width 1s linear;
}

    .guaravira-progress-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: guaravira-progress-shine 2s infinite;
    }

@keyframes guaravira-progress-shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.guaravira-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: repeating-linear-gradient( 90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.1) 2px, rgba(255, 255, 255, 0.1) 4px );
    animation: guaravira-progress-stripes 20s linear infinite;
}

@keyframes guaravira-progress-stripes {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 0;
    }
}

.guaravira-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a3e;
   /* font-size: 0.65rem;*/
    font-size: 0rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    animation: guaravira-progress-text-fade 0.8s ease-out 0.8s both;
}

@media (min-width: 576px) {
    .guaravira-progress-text {
        font-size: 0.7rem;
    }
}

@media (min-width: 768px) {
    .guaravira-progress-text {
        font-size: 0.75rem;
    }
}

@keyframes guaravira-progress-text-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Variação de cores conforme progresso */
.guaravira-progress-bar.progress-high {
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 15px rgba(74, 222, 128, 0.4);
}

.guaravira-progress-bar.progress-medium {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 15px rgba(255, 107, 53, 0.4);
}

.guaravira-progress-bar.progress-low {
    background: linear-gradient(90deg, #FF6B35 0%, #FF4757 50%, #D50000 100%);
    box-shadow: 0 0 20px rgba(255, 23, 68, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 15px rgba(255, 23, 68, 0.4);
    animation: guaravira-progress-pulse-low 1s ease-in-out infinite;
}

@keyframes guaravira-progress-pulse-low {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 23, 68, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 4px 15px rgba(255, 23, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 23, 68, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 6px 20px rgba(255, 23, 68, 0.6);
    }
}

.guaravira-countdown-expired {
    background: linear-gradient(135deg, #D50000 0%, #B71C1C 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: guaravira-expired-pulse 1.5s ease-in-out infinite;
}

@keyframes guaravira-expired-pulse {
    0%, 100% {
        background: linear-gradient(135deg, #D50000 0%, #B71C1C 100%);
        transform: scale(1);
    }

    50% {
        background: linear-gradient(135deg, #FF1744 0%, #D50000 100%);
        transform: scale(1.02);
    }
}


/* ======= BANNER CENTRAL DE PRÊMIOS — CSS ======= */
.iframe-container {
    width: 100%;
    border: none;
    height: 100%;
    margin-left: 0px;
    margin-top: 0px;
}
/* Prefixo .bcp- em todos os seletores para não conflitar com o site */
.bcp-wrap {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    aspect-ratio: 16 / 5;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
    will-change: filter;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
    animation: bcpGlow 3s ease-in-out infinite;
    text-decoration: none;
    padding-top: 31.25%; /* 5/16 = 31.25% — proporção 16:5 */
}
.espaco_new_bloco_clube{
    margin-top:100px;
}
.bcp-img {
    position: absolute;
    top: 0;
    left: 0; /* ocupa o espaço do padding */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 14px;
}

.bcp-glow {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(ellipse at 55% 50%, rgba(0,200,100,0.06) 0%, transparent 60%);
    animation: bcpGlowPulse 2s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.bcp-border {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(90deg, #00FF88, #FFD700, #00FFCC, #7FFF00, #00FF88);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: bcpBorderMove 3s linear infinite;
    pointer-events: none;
    z-index: 3;
}

.bcp-snow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
    border-radius: 14px;
}

.bcp-flake {
    position: absolute;
    top: -10%;
    opacity: 0;
    font-size: 14px;
    animation: bcpSnowFall linear infinite;
    text-shadow: 0 0 6px #00FF88;
    filter: drop-shadow(0 0 3px #00FF88);
}

.bcp-confetti {
    position: absolute;
    top: -5%;
    opacity: 0;
    border-radius: 2px;
    animation: bcpConfettiFall linear infinite;
}

.bcp-shimmer {
    position: absolute;
    bottom: 5%;
    right: 2%;
    width: 26%;
    height: 30%;
    pointer-events: none;
    z-index: 6;
    overflow: hidden;
    border-radius: 50px;
}

    .bcp-shimmer::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
        animation: bcpShimmer 2s ease-in-out infinite;
    }

.bcp-wrap:active {
    transform: scale(0.98);
    transition: transform 0.1s;
}

@keyframes bcpGlow {
    0%, 100% {
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6)) drop-shadow(0 0 0px rgba(0,255,136,0));
    }

    50% {
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6)) drop-shadow(0 0 20px rgba(0,255,136,0.8));
    }
}

@keyframes bcpGlowPulse {
    0%, 100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes bcpBorderMove {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }

    100% {
        background-position: 300% 50%;
        filter: hue-rotate(360deg);
    }
}

@keyframes bcpSnowFall {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    85% {
        opacity: 0.9;
    }

    100% {
        transform: translateY(115%) rotate(720deg) translateX(var(--bcp-drift));
        opacity: 0;
    }
}

@keyframes bcpConfettiFall {
    0% {
        transform: translateY(0) rotate(0deg) scaleX(1);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    50% {
        transform: translateY(55%) rotate(360deg) scaleX(-1);
        opacity: 1;
    }

    100% {
        transform: translateY(115%) rotate(720deg) scaleX(1);
        opacity: 0;
    }
}

@keyframes bcpShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 160%;
    }
}
/* ======= FIM DO CSS DO BANNER ======= */
/*==========================================================================================================================================*/
.success-container {
    perspective: 1000px;
}

.success-card {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.8s ease-out, cardGlow 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

    .success-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        animation: shimmer 2s infinite;
    }

    .success-card::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: pulse 3s ease-in-out infinite;
    }

.content {
    position: relative;
    z-index: 2;
}

.header-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    animation: fadeInDown 0.8s ease-out 0.2s both;
    letter-spacing: 0.5px;
}

.divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
    animation: expandWidth 0.8s ease-out 0.4s both;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    animation: scaleIn 0.8s ease-out 0.6s both;
}

.star-icon {
    font-size: 60px;
    animation: bounce 1s ease-in-out 0.8s infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.main-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    animation: fadeInUp 0.8s ease-out 1s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.success-text {
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease-out 1.2s both;
    opacity: 0.95;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

.ok-button {
    background: white;
    color: #1abc9c;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .ok-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        background: #f0f0f0;
    }

    .ok-button:active {
        transform: translateY(-1px);
    }

/* Confetti animation */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: confettiFall 2s ease-out forwards;
    pointer-events: none;
}

/* Keyframe animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

@keyframes confettiFall {
    to {
        transform: translateY(300px) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive design */
@media (max-width: 600px) {
    .success-card {
        padding: 30px 20px;
    }

    .main-text {
        font-size: 20px;
    }

    .header-text {
        font-size: 16px;
    }

    .success-text {
        font-size: 14px;
    }

    .star-icon {
        font-size: 50px;
    }
}



/*======================================================================================*/





.img_intro {
    max-width: 230px;
    min-width: 180px;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ponto_cashback_fonte {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.ponto_cashback_backg {
    background: #28a745 !important;
}

.legenda_page_cartoes_card {
    margin-top: 20px;
    border: 1px dashed #ddc29f !important;
    text-align: center;
}

.titulo_intro {
    color: #7b7373 !important;
}

#exibe_bloco_mapa {
    width: 100% !important;
}

#TxtAutoPremiar {
    text-transform: uppercase;
    text-align: center;
}

.mtt15p {
    margin-top: 15px;
}

.mtt40p {
    margin-top: 10px;
    padding:10px
}
.block_notificacoes{
    margin-top:120px;
}
.mt-2n {
    margin-top: -20px;
}

.limitador_app {
    max-width: 500px !important;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--cor-fundocontent) !important;
}

.limitador_app_index {
    max-width: 500px !important;
    margin-left: auto;
    margin-right: auto;
}

#btn_intro {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 500px;
}

.titulo_intro2 {
    color: #1d3d02 !important;
    font-size: 18px;
}

.sub-titulo_intro {
    color: #ea3a3a !important;
    font-size: 18px;
    font-weight: bold;
}

.sub-titulo_intro2 {
    color: #7b7373 !important;
    font-weight: bold;
}

.block_intstart {
    text-align: center;
    font-size: 16px;
    padding: 10px;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.text_info_empresa_descricao {
    width: 100%;
    margin-left: -8px;
    margin-top: 5px;
    padding-left: -20px;
    min-width: 280px;
}

.txt_descricao_card_fidelidade {
    margin-top: 20px;
    padding-bottom: 10px;
    color: #597585 !important;
}

.ol-geocoder ul.gcd-txt-result {
    width: 22em !important;
    margin-left: 24px !important;
}

.modal {
    z-index: 10500000000 !important;
}

.text_sub_busca {
    font-weight: 500;
}

#BlocosDadosfeed strong {
    color: #3f4344 !important;
}

.blocolistparam {
    min-height: calc(100vh + 20px);
}

#BlocosDados strong {
    color: #3f4344 !important;
}

#BlocosDados .listview {
    border-bottom: none;
}

#CarteiralistDados {
    border-top: none !important;
    padding-bottom: 25px !important;
}

    #CarteiralistDados li {
        border-top: none !important;
        padding-top: 25px !important;
        padding-bottom: 15px !important;
        text-align: left !important;
    }


#BlockNotify strong {
    color: #1d1e1e !important;
}

#BlocosDadosPf strong {
    color: #1d1e1e !important;
}

.image-listview > li .item .image {
    width: 46px !important;
    height: 46px !important;
}

/* Portrait layout (default) */
#appsplash {
    background: url(../img/logoh2.png) no-repeat center top; /* 170px x 200px */
    position: absolute; /* position in the center of the screen */
    left: 50%;
    top: 50%;
    height: 50px; /* text area height */
    width: 225px; /* text area width */
    text-align: center;
    padding: 180px 0px 0px 0px; /* image height is 200px (bottom 20px are overlapped with text) */
    margin: -115px 0px 0px -112px; /* offset vertical: half of image height and text area height */
    /* offset horizontal: half of text area width */
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    #appsplash {
        background-position: left center;
        /* offset horizontal: half of image width and text area width */
    }
}

#BlocosDados {
    min-height: calc(100vh + 20px);
    padding: 15px !important;
}

.logo_intro_mb {
    text-align: right !important;
    margin-top: -50px;
    margin-bottom: 50px;
}

.bloc_cadastro_app {
    margin-top: 55px;
    padding: 20px;
}

.f25 {
    font-size: 25px !important;
}

.border-digital-card {
    border: 2px dashed #fdaf4e !important;
}

.wq100 {
    width: 100%;
}

.mx200h {
    max-height: 200px !important;
}

.fcolorcr01 {
    color: #a1a5b7 !important;
}

.fotonamesl {
    font-size: 24px;
    margin-top: 4px;
    position: absolute;
    margin-left: 10px;
}

.text-espaco-block-list-message {
    margin-top: 5px !important;
    margin-bottom: 10px !important;
    font-size: 17px;
}

.pg-lr-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.pg-lr-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.pg-lr-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.icon_del_img {
    margin-top: -1px;
    position: absolute;
    margin-left: -23px;
    font-size: 25px;
    color: red;
}

.start_inbox {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
}

.txt_file_block_propostas {
    margin-left: -20px;
    font-size: 18px;
    padding-top: 5px;
}

.alertsimpleok {
    font-weight: 500;
    font-size: 24px;
}

.iconnotify {
    font-size: 24px;
}

.mt49 {
    margin-top: -49px !important;
}

.fs20 {
    font-size: 20px !important;
}

.fsx2 {
    font-size: 15px !important;
}

.esp-message-lida_all {
    font-size: 13px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
}

.hr_bloco_proposta {
    margin-bottom: 1px !important;
}

@media only screen and (max-width: 385px) {
    .icon_del_img {
        margin-top: 1px;
        margin-left: -25px;
    }
}

.iframepdfview {
    width: 100%;
    height: 100%;
    margin: 0;
    left: 0;
    top: 0;
    position: absolute;
}

.dialogbox .modal-dialog .modal-content .btn-list .btn {
    padding: 11px 5px !important;
}

.header_esp_modal {
    top: 5px;
    position: absolute;
}

.borda_list_message {
    border-bottom: 1px solid #dfe4e7;
    padding-bottom: 10px !important;
}

div.shadow-blue {
    box-shadow: 0px 0px 5px #3381ff;
    -webkit-box-shadow: 0px 0px 5px #3381ff;
    -moz-box-shadow: 0px 0px 5px #3381FF;
}

div.shadow-blue_c {
    box-shadow: 0px 0px 5px #83bbff;
    -webkit-box-shadow: 0px 0px 5px #83bbff;
    -moz-box-shadow: 0px 0px 5px #83bbff;
}

div.shadow-red_c {
    box-shadow: 0px 0px 5px #ff0000;
    -webkit-box-shadow: 0px 0px 5px #ff0000;
    -moz-box-shadow: 0px 0px 5px #ff0000;
}

.color-homec1 {
    background-color: #f7f7f7 !important;
}

.color-homec2 {
    background-color: #ffffff !important;
}

.no-card {
    background: #fff;
    border: 5px dashed #edd793;
    padding-left: 16px;
    padding-right: 16px;
    margin: 20px;
    min-height: 150px;
    padding-top: 35px;
}

.bg-custom_color_a1 {
    background-color: #e23128 !important;
}

.bg-custom_color_a2 {
    background-color: #95a9cc !important;
}

.displayname {
    padding: 3px;
    font-size: 16px;
    font-weight: 600;
    color: #45485c;
    border-radius: 10px;
    margin-left: 1px;
}

.esp-message-date {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #dfe4e7;
}

.esp-message-lida {
    font-size: 13px;
    padding-bottom: 15px;
    padding-left: 10px;
    text-align: right;
    padding-right: 10px;
}

.icontopbar {
    font-size: 20px;
    color: #fff;
}

.appBottomMenu .item strong {
    font-size: 12px;
}

.icondownbar {
    color: #7b90b1;
}

.icondownbar_ativo {
    color: #ff1b1b !important;
}


.bg_bolinha_faixa_cashback {
    background: #0b6f21 !important;
}

.bg-wltxt {
    color: #fff !important;
}

.bg-wl {
    background-color: #fff !important;
}

.recompensa_leg {
    text-decoration: underline;
}

.fc12 {
    font-size: 12px;
}

.fc12r {
    font-size: 12px;
}

.fc16r {
    font-size: 16px;
}

.fc14r {
    font-size: 14px;
}

.fc24 {
    font-size: 24px;
}

.fc18 {
    font-size: 18px !important;
}

.font_etapas-destaque {
    font-size: 23px !important;
}

.bg-white_btn {
    background-color: white !important;
}

.rd-25 {
    right: -25px;
}

.ld-10 {
    left: -10px;
}

.legenda_page_cartoes {
    margin-top: -2px;
    margin-bottom: -20px;
    border: 1px dashed #ddc29f !important;
    text-align: center;
}

.faixacl {
    margin-left: auto;
    margin-right: auto;
    height: 10px;
    width: 100px;
    border-radius: 10px;
    background-color: #90969f;
}

.block-central-animate {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 40%;
}

.block_txt_mensage {
    width: 100%;
    margin-left: -14px;
    margin-right: 0px;
    position: absolute;
}

.no-border {
    border-top: none !important;
}

#ListProfile, .image-listview > li .item {
    padding: 0 !important;
}

.listmensage > li:after {
    content: "";
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #dfe4e7;
}

.mensage-date {
    left: -16px;
    position: absolute;
}
/*inputs especiais*/

.form__input {
    border: none !important;
    background-color: #ededed !important;
    padding: 7px 15px !important;
    border-radius: 156px !important;
    height: 53px !important;
}

.text-header-notify {
    font-size: 14px !important;
}

.bg-cinzar {
    background: #d3d6d8 !important;
    color: #FFF;
}

.pand15px {
    padding: 15px
}

.leftinputhome {
    z-index: 9;
    margin-left: 8px;
    padding-left: -77px;
    margin-top: 12px;
    position: absolute;
}

.form__textarea {
    width: calc(100% - 30px);
    height: 50px;
    border: none;
    background-color: #ededed;
    padding: 18px 15px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.8rem;
    color: #1c0202;
}

.span_pedidos_title {
    font-size: 19px;
    top: 13px;
    position: absolute;
    left: 52px;
}

.colorhomecard {
    color: #5a6876 !important;
}
/*========================maps ====================================*/
.map {
    height: 92%;
    width: 100%;
    left: -1px;
    position: absolute;
}

.map_modal {
    margin-top: 10px !important;
    width: 100% !important;
    height: 80% !important;
}

/*======================== PROFILE PAGE ====================================*/
.Youtubrfm, iframe {
    margin-top: 10px;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/*========================home page ====================================*/

/*ANIMAÇÃO ESPECIAL*/
.typewriter div {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation: typing .0s steps(40, end), blink-caret .75s step-end infinite;
}

/* The typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to {
        border-color: transparent
    }

    50% {
        border-color: orange;
    }
}




@keyframes animate {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}


.am_bloco,
.am_bloco_f1, .am_bloco_f2, .am_bloco_f3, .am_bloco_f4, .am_bloco_f5, .am_bloco_f6, .am_bloco_f7, .am_bloco_f8 {
    position: relative !important;
    background-color: #CCC !important;
    height: 6px;
    animation-name: animate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eeeeee), color-stop(18%, #dddddd), color-stop(33%, #eeeeee));
    background: -webkit-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    -webkit-background-size: 800px 104px;
}

.am_bloco_f1 {
    height: 20px;
    width: 40%;
}

.am_bloco_f2 {
    height: 20px;
    width: 100%;
}

.am_bloco_f3 {
    height: 130px;
    width: 80%;
}

.am_bloco_f4 {
    height: 50px;
    width: 100%;
}

.am_bloco_f5 {
    height: 50px;
    width: 95%;
    margin-left: 10px;
    margin-right: 10px;
}

.am_bloco_f6 {
    height: 500px;
    width: 97%;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 50px !important;
}

.img-anime {
    width: 36px;
    height: 36px;
    border-radius: 400px;
    margin-left: 15px;
}

.am_bloco_f7 {
    height: 40px;
    width: 90%;
}

.am_bloco_f8 {
    padding: 10px 10px;
    border-radius: 16px 16px 16px 0;
    color: #282D33;
    display: inline-block;
    margin-top: 4px;
    line-height: 1.4em;
    max-width: 359px;
    width: 280px;
    height: 50px;
}


/*f-----///---------------------------------------------------------------------------*/
.text-destaque1 {
    color: #6d6a66 !important;
}

.text-creditos {
    color: #d49035 !important;
}

.text-ouro {
    color: #d49035 !important;
}

.text-prata {
    color: #acabb7 !important;
}

.text-bronze {
    color: #b7430e !important;
}

.text-gratis {
    color: #2da879 !important;
}

.text-blue_c {
    color: #1f5bbb !important;
}

.bg-blue_c {
    background-color: #1f5bbb !important;
}

.bloco_busca_home {
    background-color: #FFF;
    height: 66px !important;
}

.bloco_home_2 {
    background-color: #FFF;
    border-radius: 10px;
    margin-left: auto;
    margin: auto;
    width: 98%;
    margin-top: 10px;
}

.bloco_home_3 {
    background-color: #FFF;
    height: 78px;
    border-radius: 10px;
    margin-left: auto;
    margin: auto;
    width: 98%;
    margin-top: 10px;
}

.icon_money {
    margin-top: 6px;
    margin-right: -2px;
}


/* ==============================================*/
.action-position_el_l {
    margin-top: 20px;
    margin-left: 10px;
}

.action-position_el_r {
    margin-top: 28px;
    left: -10px;
}

.action_icon {
    min-width: 36px;
    max-width: 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1em;
    font-size: 22px;
    border-radius: 400px;
    margin-right: 16px;
}

.span_voltar_solicitacao {
    padding-top: 2px;
    position: absolute;
    font-size: 20px;
    font-weight: 600;
    padding-left: 4px;
}

.bloco_status_servico {
    margin-top: 10px;
}


.bloco_home_solicitacao {
    background-color: #FFF;
    border-radius: 10px;
    margin-left: auto;
    margin: auto;
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
}

/*.body_proposta{
    background: #e2e2eb!important;
}*/

.body_proposta {
    background: #ececf3 !important;
}


.bloco_proposta {
    background-color: #FFF;
    border-radius: 10px;
    margin-left: auto;
    margin: auto;
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
}

.pd_rd17 {
    padding-right: 17px;
}

body {
    background: #fefeff;
}

.noborder {
    border-top: none !important;
}

.noborder_b {
    border-bottom: none !important;
}

.appBottomMenu {
    border-top: 1px solid #fff;
}

.box-valor-proposta {
    margin-top: -18px !important;
    margin-bottom: 15px !important;
}

.text-value-proposta {
    margin-top: 13px;
    font-weight: 600;
    font-size: 27px;
}

#avatar-digitando {
    margin-left: 10px !important;
    margin-right: -2px !important;
}

.text_titleboxproposta {
    color: #FFF;
    font-weight: 600;
    font-size: 18px;
}

.scroll_block_proposta {
    overflow: scroll;
    max-height: 205px;
    overflow-x: hidden;
    min-height: 150px;
}

.btn-outline-warning_c2 {
    background: transparent;
    border-color: #ff5f00;
    color: #bf8909;
    transition: 0.2s all;
}

.nameservicetitle_budget {
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
}
/*DROP L ICONES*/
.fa option {
    font-weight: 900;
}

.bg-dark2 {
    background: #5a6876 !important;
    color: #FFF;
}
/*ESPAcOS DE MARGENS*/

.mt-7_5 {
    margin-top: 7.5px !important;
}

.mgrdleft10 {
    margin-left: 10px !important;
}

.mgrdleft5 {
    margin-left: 5px !important;
}

.mgrdleft15 {
    margin-left: 15px !important;
}

.mgrdright10 {
    margin-right: 10px !important;
}

.mt-6 {
    margin-top: -6px !important;
}

.mt6 {
    margin-top: 6px !important;
}

.mgr5 {
    margin-top: 5px !important;
}

.mgr10 {
    margin-top: 10px !important;
}

.mgr1 {
    margin-top: 1px !important;
}

.mgr15 {
    margin-top: 15px !important;
}

.mgr-17 {
    margin-top: -17px !important;
}

.mgr30 {
    margin-top: 30px !important;
}

.mgr20 {
    margin-top: 20px !important;
}


.mgr65 {
    margin-top: 65px !important;
}

.mgrb15 {
    margin-bottom: 15px !important;
}

.mgrb12 {
    margin-bottom: 12px !important;
}

.mgrb40 {
    margin-bottom: 40px !important;
}


.pd_g10 {
    padding: 10px !important;
}

.pd_g15 {
    padding: 10px !important;
}

.pd_g4 {
    padding: 4px !important;
}

.pd_lf10 {
    padding-left: 20px !important;
    padding-top: 10px;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pb10 {
    padding-bottom: 10px !important;
}

.ptop15 {
    padding-top: 15px !important;
}

.fz12 {
    font-size: 12px;
}

.fz20 {
    font-size: 20px;
}

.fz15 {
    font-size: 15px;
}


#TxtSendMessage {
    min-height: 16px !important;
    margin-bottom: 10px !important;
    padding-right: 50px !important;
    padding-left: 49px !important;
}

.btn_send_menssage {
    margin-top: -64px;
    position: absolute;
    margin-left: 363px;
    padding: 6px;
    right: 0;
}

.btn_send_anexo {
    margin-top: 10px;
    position: absolute;
    margin-left: 4px;
    padding: 6px;
}

h2.page__title {
    position: relative;
    padding: 0 0 5px 0;
    margin: 0 0 15px 0;
}

    h2.page__title:after {
        content: '';
        width: 40px;
        height: 1px;
        background-color: #53539a;
        position: absolute;
        left: 0px;
        bottom: 0;
        z-index: 444;
    }

textarea.form-control {
    min-height: 150px !important;
}

#TxtProposta {
    min-height: 200px !important;
}

.label-form {
    color: #585883 !important;
}

.form__textarea {
    width: calc(100% - 30px);
    height: 50px;
    border: none;
    /*background-color: #ededed;*/
    background-color:#ffff;
    padding: 18px 15px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.8rem;
    color: #1c0202;
}


.input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .custom-file, .input-group > .custom-select, .input-group > .form-control, .input-group > .form-control-plaintext {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.input-group > .custom-file, .input-group > .custom-select, .input-group > .form-control, .input-group > .form-control-plaintext {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.form-control {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    /* background-color: #ededed !important;*/
    background-color: #f9f9f9 !important;
    padding-top: 5px !important;
}

.p-left50 {
    padding-left: 50px !important;
}

.p-left50 {
    padding-left: 35px !important;
}


/*placeholder*/

::-webkit-input-placeholder { /* Edge */
    color: #939393 !important;
    font-size: 16px;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #939393 !important;
    font-size: 16px;
}

::placeholder {
    color: #939393 !important;
    font-size: 16px;
}

*, ::after, ::before {
    box-sizing: border-box;
}

/*Preloading*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    display: none;
}

.sk-spinner-wave.sk-spinner {
    margin: -15px 0 0 -25px;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 30px;
    text-align: center;
    font-size: 10px;
}

.ie8 .sk-spinner-wave.sk-spinner {
    display: none;
}

.sk-spinner-wave div {
    background-color: #ccc;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
    animation: sk-waveStretchDelay 1.2s infinite ease-in-out;
}

.sk-spinner-wave .sk-rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-spinner-wave .sk-rect3 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-spinner-wave .sk-rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-spinner-wave .sk-rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-waveStretchDelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes sk-waveStretchDelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
        transform: scaleY(0.4);
    }

    20% {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}
