/* C:\xampp\htdocs\RedaStatico\public_html\assets\css\InfoBanner.css */

.info-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #efefef;
    color: black;
    font-size: 15px;
    text-align: center;
    padding: 5px 10px;
    height: 40px;
    width: 100%;
    border-bottom: 1px solid #BB0606;
    position: fixed;
    top: 170px; /* Abaixo da navbar (50px welcome + 120px navbar) em desktop */
    z-index: 999; /* Abaixo da navbar */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Transição suave */
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.hidden-banner {
    transform: translateY(-100%);
    opacity: 0;
}

.banner-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-icon {
    width: 20px;
    height: 20px;
    filter: invert(23%) sepia(87%) saturate(5288%) hue-rotate(349deg) brightness(92%) contrast(108%);
    transition: transform 0.3s ease;
}

.banner-icon:hover {
    transform: scale(1.1);
}

.banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.banner-text strong {
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 768px) {
    .info-banner {
        top: 140px; /* Abaixo da navbar (40px welcome + 100px navbar) em mobile */
        height: 40px;
        font-size: 12px;
        padding: 3px 10px;
    }

    .banner-text {
        font-size: 14px;
    }

    .banner-icon {
        width: 15px;
        height: 15px;
    }
}