/* ============================================
   BANNERS BASE - ESTILOS FUNDAMENTALES
   ============================================ */

.banner_movil, .banner_pc {
	border-radius: 0rem;
}

/* ============================================
   BANNER FLOTANTE - DESDE estilos_globales.css
   ============================================ */

.banner-flotante {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 90%;
}

.banner-content {
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #dc3545;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.banner-close:hover {
    background: #c82333;
    transform: scale(1.1);
}