/**
 * WebEngine CMS
 * MU HUAYRA
 * @version 1.0
 * @author Leonardo Soto
 * @copyright (c) 2026 Leonardo Soto, All Rights Reserved
 */

.vip-status-box {
    width: 100%;
    margin-bottom: 28px;
    padding: 16px 18px;

    border: 1px solid #b9e3f8;
    background: #eef9ff;

    color: #666;
    font-size: 14px;
}

.vip-status-title {
    margin-bottom: 6px;

    color: #b71919;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.vip-status-title i {
    margin-right: 5px;
}

.vip-status-text {
    color: #777;
}

.vip-status-text strong {
    color: #444;
}


/* =========================================================
   SECCION VIP
   ========================================================= */

.vip-shop-section {
    width: 100%;
    margin-bottom: 30px;
}

.vip-shop-heading {
    margin-bottom: 18px;

    color: #b71919;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: bold;

    text-transform: uppercase;
}

.vip-shop-heading i {
    margin-right: 7px;
    font-size: 15px;
}


/* =========================================================
   PAQUETES
   ========================================================= */

.vip-packages {
    display: flex;
    gap: 16px;

    width: 100%;
}


/* =========================================================
   TARJETA
   ========================================================= */

.vip-package-card {
    flex: 1;

    min-width: 0;

    padding: 20px 15px;

    border: 1px solid #ddd;
    border-radius: 3px;

    background: #fff;

    text-align: center;

    transition: border-color .2s ease;
}

.vip-package-card:hover {
    border-color: #c8c8c8;
}


/* =========================================================
   DIAS
   ========================================================= */

.vip-package-days {
    margin-bottom: 12px;
}

.vip-days-number {
    display: block;

    color: #444;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: bold;
}

.vip-days-label {
    display: block;

    margin-top: 2px;

    color: #888;

    font-size: 12px;
    text-transform: uppercase;
}


/* =========================================================
   PRECIO
   ========================================================= */

.vip-package-price {
    margin-bottom: 10px;

    color: #b71919;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: bold;
}

.vip-package-price span {
    color: #777;

    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: normal;
}


/* =========================================================
   DESCUENTO
   ========================================================= */

.vip-package-discount {
    display: inline-block;

    margin-bottom: 12px;
    padding: 3px 7px;

    border: 1px solid #ddd;

    color: #888;

    font-size: 11px;
    font-weight: bold;
}


/* =========================================================
   FORMULARIO
   ========================================================= */

.vip-package-form {
    margin: 0;
}


/* =========================================================
   BOTON
   ========================================================= */

.vip-buy-button {
    width: 100%;

    padding: 9px 12px;

    border: 1px solid #b71919;
    border-radius: 2px;

    background: #fff;

    color: #b71919;

    font-size: 12px;
    font-weight: bold;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}

.vip-buy-button:hover {
    background: #b71919;
    color: #fff;
}


/* =========================================================
   INFORMACION IMPORTANTE
   ========================================================= */

.vip-important-box {
    width: 100%;

    margin-top: 28px;
    padding: 16px 18px;

    border: 1px solid #b9e3f8;
    background: #eef9ff;

    color: #777;

    font-size: 14px;
    line-height: 1.5;
}

.vip-important-title {
    margin-bottom: 12px;

    color: #287acb;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-weight: bold;

    text-transform: uppercase;
}

.vip-important-title i {
    margin-right: 6px;
}

.vip-important-line {
    position: relative;

    margin: 7px 0;
    padding-left: 16px;
}

.vip-important-line > i {
    position: absolute;

    left: 0;
    top: 5px;

    color: #b71919;

    font-size: 10px;
}

.vip-important-line strong {
    color: #444;
    font-weight: bold;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width: 767px) {

    .vip-packages {
        flex-direction: column;
        gap: 12px;
    }

    .vip-package-card {
        width: 100%;
    }

}