.BannerVip img {
    width: 390px !important;
}

.BannerVip {
    height: 310px !important;
}

/* ==========================================================================
   SeÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o de ProgressÃƒÆ’Ã‚Â£o (Cliente PadrÃƒÆ’Ã‚Â£o vs Diamante)
   ========================================================================== */

/* Container da SeÃƒÆ’Ã‚Â§ÃƒÆ’Ã‚Â£o */
.SecProgre {
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* TÃƒÆ’Ã‚Â­tulo Principal */
.ProgreTit {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Grid para os Cards */
.ProgreBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Labels acima dos Cards */
.ProBoxMob {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    background: #6c757d;
    padding: 8px 20px;
    border-radius: 30px;
    text-align: center;
    justify-self: center;
    align-self: end;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.ProgreBox>.ProBoxMob:nth-child(3) {
    background: linear-gradient(90deg, #00d2ff, #3a7bd5);
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.3);
}

/* Estilos Comuns dos Cards */
.BoxProFora {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    padding: 3px;
    height: 100%;
    box-sizing: border-box;
    /* EspaÃƒÆ’Ã‚Â§o para borda gradiente (quando houver) */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.BoxProFora:hover {
    transform: translateY(-10px);
}

/* Card Prata (PadrÃƒÆ’Ã‚Â£o) */
.BoxProFora.Prata {
    background: #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.BoxProFora.Prata:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.BoxProFora.Prata .BoxProDentro {
    background: #ffffff;
}

/* Card Diamante (Premium) */
.BoxProFora.Diamante {
    /* Fundo Azul Diamante */
    background: linear-gradient(135deg, #0076c0 0%, #003b73 100%);
    box-shadow: 0 15px 40px rgba(0, 118, 192, 0.4);
}

/* Efeito Glow / Borda animada para o Diamante */
.BoxProFora.Diamante::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00d2ff, #3a7bd5, #00d2ff, #3a7bd5);
    z-index: -1;
    border-radius: 26px;
    background-size: 300% 300%;
    animation: pulseBorder 4s ease infinite;
}

@keyframes pulseBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.BoxProFora.Diamante:hover {
    box-shadow: 0 25px 60px rgba(0, 210, 255, 0.3);
    transform: translateY(-15px) scale(1.03);
}

/* ConteÃƒÆ’Ã‚Âºdo Interno dos Cards */
.BoxProDentro {
    border-radius: 21px;
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Glassmorphism para o Card Diamante */
.BoxProFora.Diamante .BoxProDentro {
    background: rgb(17 39 60 / 85%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
}

/* TÃƒÆ’Ã‚Â­tulos Internos */
.BoxProDentro strong {
    font-size: 29px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    display: block;
    text-transform: uppercase;
}

.BoxProFora.Prata .BoxProDentro strong {
    color: #4a5568;
}

.BoxProFora.Diamante .BoxProDentro strong {
    background: linear-gradient(to right, #a9f5ff, #d2f1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 15px rgb(255 255 255 / 40%);
}

/* Listas de BenefÃƒÆ’Ã‚Â­cios */
.BoxProDentro ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.BoxProDentro li {
    font-size: 17px;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
}

.BoxProFora.Prata .BoxProDentro li {
    color: #4a5568;
}

.BoxProFora.Diamante .BoxProDentro li {
    color: #e2e8f0;
}

/* ÃƒÂcones de Check Customizados */
.BoxProDentro li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 19px;
}

.BoxProFora.Prata .BoxProDentro li::before {
    color: #a0aec0;
}

.BoxProFora.Diamante .BoxProDentro li::before {
    color: #00d2ff;
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.6);
}

/* Responsividade */
@media (max-width: 850px) {
    .ProgreBox {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ProgreTit {
        font-size: 29px;
    }
}

/* ==========================================================================
   SeÃƒÂ§ÃƒÂ£o Intro (BenefÃƒÂ­cios Iniciais)
   ========================================================================== */

.SecIntro {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.IntroTexto {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.IntroTexto .TextoVip {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 400;
}

.IntroTexto strong {
    color: #00d2ff;
    font-weight: 800;
}

.IntroBoxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.IntroBoxes .BoxSec {
    width: 100%;
    margin: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 35px;
    border: 1px solid #f1f3f5;
    position: relative;
}

.IntroBoxes .BoxSec:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.IntroBoxes .BoxSec img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 25px;
    border-bottom: 3px solid #00d2ff;
}

.IntroBoxes .ChamaVip {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 25px 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 50px;
    /* Para manter o grid alinhado */
    display: flex;
    align-items: center;
    justify-content: center;
}

.IntroBoxes .TextoVip {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0 25px;
}



/* ==========================================================================
   SeÃ§Ã£o ExplicaÃ§Ã£o (Ficou sem Comprar?)
   ========================================================================== */
.SecExplicacao {
    padding: 80px 20px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.SecSCtit {
    font-size: 35px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.SecExplicacao .IntroTexto {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.SecSemCompra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.BoxSemCompra {
    background: #fdfbfb;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f3f5;
    transition: transform 0.3s ease;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.BoxSemCompra:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.BoxSCimg img {
    width: 120px;
    height: auto;
    border-radius: 12px;
}

.BoxSCtxt {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.5;
    text-align: left;
    width: 100%;
    padding: 0;
}

.MsgFinal {
    font-size: 22px;
    font-weight: 800;
    margin-top: 30px;
    text-align: center;
    max-width: 800px;
    line-height: 1.5;
}

/* ==========================================================================
   BotÃ£o Compre Agora
   ========================================================================== */
.SecBotao {
    padding: 20px 20px 80px !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
}

.SecBotao a {
    text-decoration: none !important;
}


.BtCompreVip {
    display: inline-block !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    padding: 18px 45px !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
    width: auto !important;
    margin: 0 auto !important;
}

.BtCompreVip:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Prioridade de Entrega (RegiÃµes)
   ========================================================================== */
.SecRegioes {
    background: #f8f9fa;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ebedee;
}

.PrioridadeEntrega {
    max-width: 1200px;
    width: 100%;
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.PrioridadeEntrega strong {
    font-size: 29px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.PrioridadeEntrega span {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
    display: block;
    text-align: center;
}

.PrioridadeEntrega ul {
    display: block !important;
    column-count: 7 !important;
    column-gap: 15px !important;
    padding: 0 !important;
    list-style: none !important;
    margin: 0 !important;
}

.PrioridadeEntrega li {
    background: transparent;
    border: none;
    padding: 5px 0 5px 15px;
    border-radius: 0;
    font-size: 14px;
    text-transform: capitalize;
    color: #4a5568;
    font-weight: 500;
    text-align: left;
    transition: color 0.3s ease;
    line-height: 1.4 !important;
    margin-bottom: 8px;
    break-inside: avoid;
    page-break-inside: avoid;
    position: relative;
}

.PrioridadeEntrega li::before {
    content: "\2022";
    color: #0076c0;
    position: absolute;
    left: 0;
    font-size: 19px;
    line-height: 1;
    top: 5px;
}

.PrioridadeEntrega li:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
    color: #0076c0;
}

/* ==========================================================================
   Regras RodapÃ©
   ========================================================================== */
.SecRegras {
    padding: 50px 20px;
    background: #111827;
    color: #9ca3af;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
}

.DadosRegras {
    max-width: 1000px;
    margin: 40px auto;
}

/* ==========================================================================
   Responsividade Final
   ========================================================================== */
@media (max-width: 768px) {
    .SecSemCompra {
        grid-template-columns: 1fr;
    }

    .BoxSemCompra {
        flex-direction: column;
        text-align: center;
    }

    .BoxSCtxt {
        text-align: center;
    }

    .PrioridadeEntrega {
        padding: 30px 20px;
    }

    .PrioridadeEntrega ul {
        column-count: 2 !important;
    }

    .BtCompreVip {
        font-size: 16px;
        padding: 15px 30px;
    }
}
