﻿/* Banner General */
.banner {
    width: 100%;
    background: white;
    position:absolute;
    /*background: linear-gradient(125deg, var(--primario-primario), var(--primario-variante-2));*/
    color: white;
    padding: 6px;
    text-align: center;
    box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

    .banner.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .banner button {
        background-color: transparent;
        border-radius: 8px;
        padding: 2px;
        /*outline: 2px solid var(--primario-primario);
        outline-offset: 2px;*/
    }
        
/* Título del Banner */
.banner-title {
    color: #000;
    /* H4 */
    font-family: var(--lexend);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 166.667% */
    margin: 0;
}

.banner-sub-title {
    color: rgba(0, 0, 0, 0.41);
    /* Subtitle 2 */
    font-family: var(--lexend);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px; /* 150% */
}
/* Enlaces de Tiendas */
.store-links {
    display: flex;
    width: 84px;
    height: 32px;
    padding: 14px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 36px;
    background: var(--primario-primario);
    color: var(--color-blanco);
    font-family: var(--lexend);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: transform 0.3s ease-in-out;
}

.store-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.banner img{
    width:auto;
}