/* .banner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
} */





/* .banner-content {
    background-color: white;
    padding: 0;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
} */

/* .banner-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
} */

/* .banner-text {
    padding: 20px;
} */

.banner-title {
    font-size: 24px;
    margin: 0 0 10px 0;
    color: #333;
}

.banner-body {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.banner-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.banner-button:hover {
    background-color: #45a049;
}

.close-banner {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.close-banner:hover {
    background: #f1f1f1;
}



.banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 1001;
    border-radius: 10px;
    max-width: 500px;
    width: 90%; /* Ajuste para móviles */
    text-align: center;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.banner-text {
    text-align: center;
    padding: 15px;
    width: 100%;
}

.banner-modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.banner-overlay.show {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}
