.video-reel-icon {
    position: fixed;
    bottom: 70px;
    left: 20px;
    width: 70px;
    height: 70px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite, bounce 1.5s infinite;
    overflow: hidden;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-8px);
    }
    40% {
        transform: translateY(0);
    }
    60% {
        transform: translateY(-4px);
    }
    80% {
        transform: translateY(0);
    }
}

.video-reel-icon svg {
    color: white;
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.7));
}

.video-reel-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.video-reel-modal-content {
    position: relative;
    margin: auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-reel-container {
    width: 100%;
    max-width: 400px;
    height: 100%;
    max-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* Proporção 9:16 para formato vertical (reels) */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-reel-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.video-reel-footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.7);
    color: #fff;
    padding: 16px 20px 12px 20px;
    border-radius: 0 0 16px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: inherit;
}

.video-reel-footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.video-reel-footer-price {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}