/* Estilos base para todos os pop-ups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: #fff;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Botão de fechar */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    z-index: 1;
    transition: color 0.3s ease;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: #333;
}

/* Pop-up de Aviso */
#popup-aviso .popup-content {
    width: 500px;
    max-width: 90vw;
}

#popup-aviso .popup-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid #eee;
}

#popup-aviso .popup-header h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

#popup-aviso .popup-body {
    padding: 20px 25px 25px;
    line-height: 1.6;
    color: #555;
}

#popup-aviso .popup-body p {
    margin: 0 0 15px;
}

#popup-aviso .popup-body p:last-child {
    margin-bottom: 0;
}

/* Pop-up Promocional */
#popup-promocional .popup-content {
    width: auto;
    max-width: 800px;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

#popup-promocional .popup-close {
    top: -10px;
    right: -10px;
    background: #fff;
    border-radius: 50%;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#popup-promocional .popup-promo-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Pop-up de Produtos */
#popup-produtos .popup-content {
    width: 700px;
    max-width: 90vw;
}

#popup-produtos .popup-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid #eee;
}

#popup-produtos .popup-header h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

#popup-produtos .popup-body {
    padding: 20px 25px 25px;
}

/* Carrossel de Produtos */
.produtos-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.produtos-carousel::-webkit-scrollbar {
    height: 6px;
}

.produtos-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.produtos-carousel::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.produtos-carousel::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.produto-item {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.produto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.produto-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 15px;
}

.produto-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.produto-item h4 {
    font-size: 14px;
    margin: 0 0 8px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
}

.produto-price {
    font-weight: 600;
    color: #27ae60;
    font-size: 16px;
}

.popup-description {
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Responsividade */
@media (max-width: 768px) {
    .popup-content {
        margin: 20px;
        max-width: calc(100% - 40px);
        max-height: calc(100% - 40px);
    }
    
    #popup-aviso .popup-content,
    #popup-produtos .popup-content {
        width: 100%;
    }
    
    #popup-promocional .popup-promo-image {
        max-width: 100%;
    }
    
    .produtos-carousel {
        gap: 15px;
    }
    
    .produto-item {
        width: 150px;
    }
    
    .produto-item img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .popup-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }
    
    #popup-aviso .popup-header,
    #popup-produtos .popup-header {
        padding: 20px 20px 10px;
    }
    
    #popup-aviso .popup-body,
    #popup-produtos .popup-body {
        padding: 15px 20px 20px;
    }
    
    .produto-item {
        width: 130px;
    }
    
    .produto-item img {
        height: 80px;
    }
    
    .produto-item h4 {
        font-size: 13px;
    }
}