/**
 * Estilos Modernos da Página de Produto v2
 * Apostilas Domínio - Identidade Visual: Vermelho (#c01b1f) e Preto (#18181b)
 */

:root {
    --dom-red-primary: #c01b1f;
    --dom-red-hover: #a31417;
    --dom-red-active: #881013;
    --dom-red-light: #fef2f2;
    --dom-red-border: #fecaca;
    --dom-red-gradient: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    
    --dom-black-primary: #18181b;
    --dom-black-secondary: #27272a;
    --dom-black-muted: #52525b;
    
    --dom-gray-bg: #f8fafc;
    --dom-gray-card: #ffffff;
    --dom-gray-border: #e2e8f0;
    --dom-gray-border-light: #f1f5f9;
    
    --dom-green-badge: #16a34a;
    --dom-green-bg: #f0fdf4;
    --dom-green-border: #bbf7d0;
    
    --dom-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --dom-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --dom-shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --dom-shadow-btn: 0 4px 14px 0 rgba(192, 27, 31, 0.35);
    --dom-shadow-btn-hover: 0 6px 20px rgba(192, 27, 31, 0.45);
    
    --dom-radius-sm: 6px;
    --dom-radius-md: 10px;
    --dom-radius-lg: 16px;
    --dom-radius-full: 9999px;
}

/* ==========================================================================
   Base & Reset Local
   ========================================================================== */
.produto-v2-wrapper {
    background-color: #f8fafc;
    color: var(--dom-black-secondary);
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding-bottom: 40px;
}

/* ==========================================================================
   Breadcrumb Moderno
   ========================================================================== */
.prod-breadcrumb-nav {
    padding: 14px 0;
    background: transparent;
}

.prod-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
}

.prod-breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--dom-black-muted);
}

.prod-breadcrumb-item a {
    color: var(--dom-black-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.prod-breadcrumb-item a:hover {
    color: var(--dom-red-primary);
    text-decoration: underline;
}

.prod-breadcrumb-item + .prod-breadcrumb-item::before {
    content: "›";
    margin: 0 8px;
    color: #94a3b8;
    font-size: 15px;
    font-weight: bold;
}

.prod-breadcrumb-item.active {
    color: var(--dom-black-primary);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   Container Principal do Produto
   ========================================================================== */
.prod-main-card {
    background: #ffffff;
    border-radius: var(--dom-radius-lg);
    box-shadow: var(--dom-shadow-sm);
    border: 1px solid var(--dom-gray-border);
    padding: 32px;
    margin-bottom: 30px;
}

/* ==========================================================================
   Coluna Esquerda - Imagens e Galeria de Mídia
   ========================================================================== */
.prod-gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prod-image-stage {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--dom-gray-border);
    border-radius: var(--dom-radius-md);
    padding: 24px;
    width: 100%;
    max-width: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    min-height: 420px;
    transition: all 0.3s ease;
}

.prod-cover-img {
    max-width: 100%;
    max-height: 380px;
    height: auto;
    object-fit: contain;
    border-radius: var(--dom-radius-sm);
    transition: transform 0.3s ease;
}

.prod-cover-img:hover {
    transform: scale(1.02);
}

.prod-badge-format {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(24, 24, 27, 0.88);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: var(--dom-radius-full);
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.prod-badge-format svg {
    width: 13px;
    height: 13px;
    fill: #ef4444;
}

/* Player e Alternador de Vídeo */
.pseudo-youtube-frame {
    width: 100%;
    height: 100%;
    display: none;
    position: relative;
    cursor: pointer;
    border-radius: var(--dom-radius-sm);
    overflow: hidden;
}

.pseudo-youtube-frame .prod-cover-img {
    width: 100%;
}

.pseudo-youtube-frame .ytp-button {
    background: transparent;
    border: none;
    width: 68px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.pseudo-youtube-frame:hover .ytp-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.prod-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
    width: 100%;
    max-width: 380px;
}

.prod-thumb-item {
    width: 72px;
    height: 72px;
    border: 2px solid var(--dom-gray-border);
    border-radius: var(--dom-radius-sm);
    padding: 4px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.prod-thumb-item:hover {
    border-color: #cbd5e1;
}

.prod-thumb-item.active {
    border-color: var(--dom-red-primary);
    box-shadow: 0 0 0 2px rgba(192, 27, 31, 0.2);
}

.prod-thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.prod-thumb-video {
    position: relative;
    background-size: cover;
    background-position: center;
}

.prod-thumb-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 4px;
}

.prod-thumb-video svg {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    fill: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

/* Selos de Benefícios Rápidos (Trust Badges) */
.prod-trust-grid {
    margin-top: 24px;
    width: 100%;
    max-width: 380px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.prod-trust-item {
    background: #f8fafc;
    border: 1px solid var(--dom-gray-border-light);
    border-radius: var(--dom-radius-sm);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid var(--dom-gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prod-trust-icon svg {
    width: 15px;
    height: 15px;
    fill: var(--dom-red-primary);
}

.prod-trust-text {
    font-size: 11px;
    line-height: 1.25;
    color: var(--dom-black-secondary);
}

.prod-trust-text strong {
    display: block;
    color: var(--dom-black-primary);
    font-weight: 700;
}

/* ==========================================================================
   Coluna Direita - Detalhes do Produto & Buy Box
   ========================================================================== */
.prod-header-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.prod-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: var(--dom-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.prod-tag-edital {
    background-color: var(--dom-red-light);
    color: var(--dom-red-primary);
    border: 1px solid var(--dom-red-border);
}

.prod-tag-imediato {
    background-color: var(--dom-green-bg);
    color: var(--dom-green-badge);
    border: 1px solid var(--dom-green-border);
}

.prod-tag-sku {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.prod-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.28;
    color: var(--dom-black-primary);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}

.prod-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--dom-gray-border-light);
}

.prod-code {
    font-size: 13px;
    color: #64748b;
}

.prod-code strong {
    color: var(--dom-black-primary);
}

.prod-link-outros {
    font-size: 13px;
    font-weight: 700;
    color: var(--dom-red-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.prod-link-outros:hover {
    color: var(--dom-red-hover);
    text-decoration: underline;
}

.prod-link-outros svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Card Resumo do Concurso */
.prod-summary-box {
    background: #f8fafc;
    border: 1px solid var(--dom-gray-border);
    border-left: 4px solid var(--dom-black-primary);
    border-radius: var(--dom-radius-sm);
    padding: 16px 18px;
    margin-bottom: 24px;
    position: relative;
}

.prod-summary-box-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--dom-black-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prod-summary-box-title svg {
    width: 14px;
    height: 14px;
    fill: var(--dom-red-primary);
}

.prod-summary-content {
    font-size: 13.5px;
    line-height: 1.65;
    color: #334155;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 12px;
}

.prod-summary-item {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.prod-summary-bullet {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--dom-red-primary);
    border-radius: 50%;
    margin-right: 7px;
    flex-shrink: 0;
}

.prod-summary-link {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--dom-red-primary);
    cursor: pointer;
    text-decoration: none;
}

.prod-summary-link:hover {
    text-decoration: underline;
    color: var(--dom-red-hover);
}

/* ==========================================================================
   Buy Box (Área de Preço e Ação de Compra de Alta Conversão)
   ========================================================================== */
.prod-buybox {
    background: #ffffff;
    border: 2px solid #fee2e2;
    border-radius: var(--dom-radius-md);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.prod-buybox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--dom-red-gradient);
}

.prod-buybox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.prod-version-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dom-black-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.prod-version-label svg {
    width: 16px;
    height: 16px;
    fill: var(--dom-red-primary);
}

.prod-instant-badge {
    background: var(--dom-green-bg);
    color: var(--dom-green-badge);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--dom-radius-full);
    border: 1px solid var(--dom-green-border);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.prod-price-container {
    margin-bottom: 18px;
}

.prod-price-regular {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 2px;
}

.prod-price-regular strike {
    color: #94a3b8;
}

.prod-price-main {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.prod-price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--dom-black-primary);
}

.prod-price-amount {
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
    color: var(--dom-red-primary);
    letter-spacing: -1px;
}

.prod-price-condition {
    font-size: 13px;
    font-weight: 700;
    color: var(--dom-black-primary);
}

.prod-price-installments {
    font-size: 14px;
    color: #475569;
    margin-top: 4px;
}

.prod-price-installments strong {
    color: var(--dom-black-primary);
    font-weight: 700;
}

/* Botão de Compra CTA Principal */
.prod-btn-buy {
    background: var(--dom-red-gradient);
    color: #ffffff !important;
    border: none;
    border-radius: var(--dom-radius-sm);
    padding: 16px 28px;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-decoration: none !important;
}

.prod-btn-buy:hover {
    background: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.prod-btn-buy:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(192, 27, 31, 0.3);
}

.prod-btn-buy.disabled,
.prod-btn-buy:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none !important;
}

.prod-btn-buy-icon {
    width: 22px;
    height: 22px;
    fill: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-btn-buy-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

/* Rodapé do Buy Box */
.prod-buybox-footer {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    border-top: 1px solid var(--dom-gray-border-light);
    padding-top: 12px;
}

.prod-payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #475569;
}

.prod-payment-icons span {
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.prod-security-text {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--dom-green-badge);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.prod-security-text svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

/* ==========================================================================
   Abas de Conteúdo e Detalhamento da Apostila
   ========================================================================== */
.prod-details-section {
    margin-top: 20px;
}

.prod-tabs-header {
    background: #ffffff;
    border: 1px solid var(--dom-gray-border);
    border-bottom: none;
    border-top-left-radius: var(--dom-radius-md);
    border-top-right-radius: var(--dom-radius-md);
    padding: 0 16px;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

.prod-tabs-header::-webkit-scrollbar {
    display: none;
}

.prod-tab-button {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 700;
    color: #64748b;
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-tab-button:hover {
    color: var(--dom-red-primary);
}

.prod-tab-button.active {
    color: var(--dom-red-primary);
    border-bottom-color: var(--dom-red-primary);
}

.prod-tab-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.prod-tabs-body {
    background: #ffffff;
    border: 1px solid var(--dom-gray-border);
    border-bottom-left-radius: var(--dom-radius-md);
    border-bottom-right-radius: var(--dom-radius-md);
    padding: 32px;
    box-shadow: var(--dom-shadow-sm);
}

.prod-tab-pane {
    display: none;
}

.prod-tab-pane.active {
    display: block;
    animation: fadeInTab 0.3s ease;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Estilização do Conteúdo da Descrição / Edital */
.prod-desc-content {
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    word-break: break-word;
}

.prod-desc-content h2, 
.prod-desc-content h3 {
    color: var(--dom-black-primary);
    font-size: 20px;
    font-weight: 800;
    margin-top: 24px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--dom-red-light);
}

.prod-desc-content h2:first-child {
    margin-top: 0;
}

.prod-desc-content strong {
    color: var(--dom-black-primary);
    font-weight: 700;
}

.prod-desc-content p {
    margin-bottom: 16px;
}

.prod-desc-content ul, 
.prod-desc-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.prod-desc-content li {
    margin-bottom: 6px;
}

.prod-desc-content .sumario_css {
    background: #f8fafc;
    border: 1px solid var(--dom-gray-border);
    border-radius: var(--dom-radius-sm);
    padding: 20px;
    margin-top: 20px;
}

.prod-desc-content .sumario_css h2 {
    border-bottom: none;
    margin-top: 0;
    color: var(--dom-black-primary);
    font-size: 18px;
}

/* ==========================================================================
   Seção "Outros Cargos para este Concurso"
   ========================================================================== */
.prod-related-section {
    margin-top: 40px;
}

.prod-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--dom-black-primary);
    position: relative;
}

.prod-section-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--dom-red-primary);
}

.prod-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dom-black-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-section-title svg {
    width: 22px;
    height: 22px;
    fill: var(--dom-red-primary);
}

.prod-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.prod-card-related {
    background: #ffffff;
    border: 1px solid var(--dom-gray-border);
    border-radius: var(--dom-radius-md);
    padding: 16px;
    display: flex;
    gap: 16px;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.25s ease;
    box-shadow: var(--dom-shadow-sm);
}

.prod-card-related:hover {
    border-color: var(--dom-red-border);
    box-shadow: var(--dom-shadow-md);
    transform: translateY(-3px);
}

.prod-card-related-img-box {
    width: 90px;
    flex-shrink: 0;
    background: #f8fafc;
    border-radius: var(--dom-radius-sm);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dom-gray-border-light);
}

.prod-card-related-img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    border-radius: 4px;
}

.prod-card-related-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.prod-card-related-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dom-black-primary);
    line-height: 1.35;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.prod-card-related:hover .prod-card-related-title {
    color: var(--dom-red-primary);
}

.prod-card-related-price {
    margin-top: auto;
}

.prod-card-related-price-main {
    font-size: 18px;
    font-weight: 600;
    color: var(--dom-red-primary);
}

.prod-card-related-price-sub {
    font-size: 11px;
    color: #64748b;
}

.prod-card-related-btn {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dom-red-primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   Estado de Apostila Indisponível
   ========================================================================== */
.prod-unavailable-card {
    background: #ffffff;
    border-radius: var(--dom-radius-lg);
    box-shadow: var(--dom-shadow-sm);
    border: 1px solid var(--dom-gray-border);
    padding: 48px 24px;
    text-align: center;
    max-width: 680px;
    margin: 40px auto;
}

.prod-unavailable-icon {
    width: 64px;
    height: 64px;
    fill: #94a3b8;
    margin-bottom: 20px;
}

.prod-unavailable-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dom-black-primary);
    margin-bottom: 8px;
}

.prod-unavailable-desc {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 24px;
}

/* ==========================================================================
   Botão WhatsApp Flutuante (PRESERVADO 100% CONFORME SOLICITADO)
   ========================================================================== */
.whats_fale_conosco {
    position: absolute;
    margin-top: 5px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    width: 112px;
    height: 31px;
    font-weight: bold;
    font-size: 15px;
    padding-top: 4px;
    left: 45px;
    padding-left: 7px;
    background-color: #48a05a;
    color: #ffffff;
}

.back-to-top-whats {
    z-index: 99;
    border-radius: 13%;
    position: fixed;
    bottom: 8px;
    right: 125px;
    text-decoration: none;
    background-color: #5ac16e;
    padding: 2px;
    display: none;
}

.icone_whats {
    width: 41px;
    fill: #5ac16e;
}

#link_whats:active .icone_whats {
    fill: #07ff03;
}

.back-to-top-whats:active #whats_fale_conosco_id {
    background-color: #07ff03;
    fill: #07ff03;
}

.whats_fale_conosco:active ~ .icone_whats {
    background-color: #07ff03;
    fill: #07ff03;
}

@media (min-width: 1490px) {
    .back-to-top-whats {
        bottom: 31px;
        right: 151px;
    }
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 991px) {
    .prod-main-card {
        padding: 20px;
    }
    .prod-image-stage {
        max-width: 100%;
        min-height: 340px;
    }
    .prod-trust-grid {
        max-width: 100%;
    }
    .prod-title {
        font-size: 22px;
        margin-top: 16px;
    }
    .prod-price-amount {
        font-size: 32px;
    }
    .prod-tabs-body {
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .produto-v2-wrapper > .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .prod-breadcrumb-nav {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .prod-related-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .prod-buybox-header {
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .prod-instant-badge {
        white-space: nowrap !important;
        font-size: 11px;
        padding: 4px 9px;
        flex-shrink: 0;
    }

    .prod-buybox-footer {
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        padding-top: 14px;
    }

    .prod-security-text {
        white-space: nowrap !important;
        font-size: 12px;
        display: inline-flex;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .produto-v2-wrapper > .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .prod-breadcrumb-nav {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .prod-buybox-header {
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
    }

    .prod-instant-badge {
        white-space: nowrap !important;
        font-size: 11px;
        padding: 4px 9px;
        flex-shrink: 0;
    }

    .prod-buybox-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 14px;
    }

    .prod-payment-icons {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .prod-security-text {
        white-space: nowrap !important;
        font-size: 12px;
        display: inline-flex;
        align-items: center;
    }

    .prod-main-card {
        padding: 16px;
        border-radius: var(--dom-radius-md);
    }
    .prod-title {
        font-size: 19px;
    }
    .prod-price-amount {
        font-size: 28px;
    }
    .prod-trust-grid {
        grid-template-columns: 1fr;
    }
    .prod-btn-buy {
        padding: 14px 20px;
        font-size: 15px;
    }
    .prod-related-grid {
        grid-template-columns: 1fr;
    }
    .prod-tabs-body {
        padding: 16px;
    }
}
