.box-shadow{
	background: #e5f7ff;
    border-radius: 0px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.footer-marquee {
width: 100%;
background: #f2f2f2;
z-index: 999;
padding: 4px 10px;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-row {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
.marquee-content {
font-size: 12px;
color: #0A0C90;
}
/* ===== PREMIUM TOPBAR ===== */
.premium-topbar {
    background: linear-gradient(180deg, #cfdcf1 0%, #c3d2ec 100%);
    border-bottom: 1px solid rgba(34, 68, 110, 0.12);
    box-shadow: 0 2px 10px rgba(17, 33, 59, 0.06);
    padding: 10px 0;
}

.premium-topbar-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 20px;
    padding-right: 20px;
}

.premium-topbar-inner {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(320px, 1.4fr);
    align-items: center;
    gap: 18px;
}

.premium-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.premium-topbar-label {
    font-size: 1rem;
    font-weight: 600;
    color: #182230;
    line-height: 1.2;
}

.premium-topbar-btn {
    border: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, #2f7ba5 0%, #2b678b 100%);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 700;
    padding: 11px 18px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(26, 88, 125, 0.18);
    cursor: pointer;
}

.premium-topbar-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    gap: 14px;
}

.premium-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 0;
}

.premium-brand-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    flex: 0 0 auto;
}

.premium-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}

.premium-brand-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-shadow: 0 1px 1px rgba(0,0,0,0.08);
}

.premium-brand-subtitle {
    margin-top: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #24496b;
    line-height: 1.1;
    white-space: nowrap;
}

/* ===== TABLET ===== */
@media (max-width: 980px) {
    .premium-topbar-inner {
        grid-template-columns: minmax(220px, 1fr) minmax(240px, 1.1fr);
        gap: 14px;
    }

    .premium-topbar-label {
        font-size: 0.95rem;
    }

    .premium-topbar-btn {
        font-size: 0.92rem;
        padding: 10px 14px;
    }

    .premium-brand-logo {
        height: 46px;
    }

    .premium-brand-title {
        font-size: 1.45rem;
    }

    .premium-brand-subtitle {
        font-size: 0.8rem;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {

    .premium-topbar-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .premium-topbar-left {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .premium-topbar-label {
        font-size: 0.9rem;
    }

    .premium-topbar-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
        border-radius: 20px;
    }

    .premium-brand {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .premium-brand-logo {
        height: 36px;
    }

    .premium-brand-title {
        font-size: 1.1rem;
    }

    .premium-brand-subtitle {
        font-size: 0.75rem;
    }
}
/* ===== TRES PETIT MOBILE ===== */
@media (max-width: 420px) {
    .premium-topbar-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .premium-topbar-label {
        max-width: 100%;
        font-size: 0.88rem;
    }

    .premium-topbar-btn {
        width: 100%;
        max-width: 240px;
    }

    .premium-brand {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .premium-brand-logo {
        height: 34px;
    }

    .premium-brand-title {
        font-size: 1rem;
    }

    .premium-brand-subtitle {
        font-size: 0.72rem;
    }
}


