/**
 * TeixeiraZap Ofertas - Single & Product Styles
 * Contém estilos para a página única da oferta, hero, info, smart list e CTAs.
 */

.oferta-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
}

.oferta-voltar {
    margin: 24px 0 12px;
}

.btn-voltar-ofertas {
    color: var(--gz-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.oferta-layout-one-column {
    display: block;
}

.oferta-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.oferta-hero .oferta-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--gz-bg-light);
}

.oferta-info-principal {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.oferta-title-single {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    line-height: 1.3;
}

.oferta-preco-single {
    margin: 20px 0;
    padding: 18px;
    background: #f9f9f9;
    border-radius: 12px;
}

.preco-com-desconto {
    font-size: 32px;
    font-weight: 700;
    color: #d63638;
}

/* Card do Anunciante */
.oferta-estabelecimento-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    padding: 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eeeeee;
}

.loja-icon {
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    color: var(--gz-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Smart List (Encarte) */
.tzo-smart-list-container {
    margin: 24px 0;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0f2e8;
    overflow: hidden;
}

.tzo-smart-list-header {
    background: #f0fdf4;
    padding: 20px;
    border-bottom: 1px solid #e0f2e8;
}

.tzo-smart-list-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* CTAs */
.oferta-ctas {
    margin-top: 24px;
}

.btn-cta-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: var(--gz-primary);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsivo Single */
@media (max-width: 768px) {
    .oferta-title-single {
        font-size: 22px;
    }

    .preco-com-desconto {
        font-size: 26px;
    }
}