/* =========================================================
   1. ESTRUTURA E UTILITÁRIOS (CRÍTICO PARA O JS)
   ========================================================= */

/* Oculta etapas não ativas (Sem isso, tudo aparece misturado) */
.gpv-hidden {
    display: none !important;
}

/* Garante que o container ocupe altura total no layout Flatsome */
.gpv-clean-card-wrapper, 
#gpv-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Container Unificado (Card Flutuante) */
.unified-product-row {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.03);
  overflow: hidden; 
}

/* Coluna da Esquerda (Galeria Estática) */
.product-gallery-col {
  min-height: 500px;
  padding: 0 !important;
}
.full-cover-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Coluna da Direita (Formulário) */
.col-form-container {
    padding: 40px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Mobile Adjustments */
@media (max-width: 849px) {
    .product-gallery-col { height: 250px !important; min-height: 250px !important; }
    .col-form-container { padding: 25px 15px !important; }
}

/* =========================================================
   2. ESTILO DOS INPUTS (CLEAN THEME)
   ========================================================= */
.gpv-grid-row { display: grid; gap: 15px; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }

/* Inputs gerais */
#gpv-wrapper input:not([type="submit"]):not([type="file"]),
#gpv-wrapper select {
  color: #333 !important;
  background-color: #f9fafa !important;
  border: 1px solid #e1e4e8 !important;
  border-radius: 10px !important;
  height: 48px !important;
  font-size: 15px !important;
  box-shadow: none !important;
  padding: 0 15px !important;
  width: 100%;
  transition: border-color 0.2s;
}

#gpv-wrapper input:focus {
    border-color: #2AC8D3 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(42, 200, 211, 0.1) !important;
}

#gpv-wrapper label {
  color: #444 !important;
  font-weight: 700 !important;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

/* =========================================================
   3. WHATSAPP (Intl-Tel-Input - Clean Override)
   ========================================================= */
#gpv-wrapper .iti { width: 100% !important; display: block !important; }
#gpv-wrapper .iti__flag-container { border: none; background: transparent; }
#gpv-wrapper .iti__selected-country { background: transparent !important; }
#gpv-wrapper .iti__tel-input { padding-left: 90px !important; } 

/* =========================================================
   4. UPLOAD ZONE
   ========================================================= */
.clean-zone {
  background: #fff !important;
  border: 2px dashed #2AC8D3 !important;
  border-radius: 12px;
  padding: 20px !important;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.clean-zone:hover { background-color: #f0fdff !important; }

/* Input file invisível mas clicável */
.gpv-upload-input {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 0; cursor: pointer; z-index: 10;
}

/* Estado Sucesso */
.clean-zone.file-selected {
    border-color: #28a745 !important;
    background-color: #f6fff8 !important;
    border-style: solid !important;
}

/* =========================================================
   5. BOTÕES E LOADING
   ========================================================= */
.btn-primary-gradient {
  background: linear-gradient(90deg, #2AC8D3, #8882EE) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 14px 20px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(42, 200, 211, 0.3);
}

.btn-outline {
  background: transparent !important;
  border: 2px solid #eee !important;
  color: #777 !important;
  border-radius: 50px !important;
  padding: 12px !important;
  font-weight: 700;
  display: block;
  text-align: center;
  text-decoration: none;
}
.btn-outline:hover { border-color: #ccc !important; color: #333 !important; }

/* Loading Animation */
.loading-pulse {
  width: 50px; height: 50px;
  background: #2AC8D3;
  border-radius: 50%;
  margin: 0 auto 15px;
  animation: pulse-ring 1.5s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(42, 200, 211, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(42, 200, 211, 0); }
  100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(42, 200, 211, 0); }
}

/* =========================================================
   6. STEP 2: PREVIEW E OPÇÕES (A PARTE CRÍTICA)
   ========================================================= */

/* Imagem Gerada (Preview) */
#gpv-gallery-block img, 
.gpv-simple-preview-container img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
    display: block;
}

/* Preço */
#gpv-price {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}
#gpv-price del { font-size: 16px; color: #999; font-weight: 400; margin-right: 10px; }
#gpv-price ins { text-decoration: none; color: #2AC8D3; }

/* --- SELETOR DE PEÇAS (UPSELL) - ESTILO CLEAN --- */
/* O JS injeta a classe .gpv-upsell-inline e .gpv-upsell-pick */

.gpv-upsell-inline .picks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

/* O Cartão da Opção (Radio Button) */
.gpv-upsell-pick {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1 1 auto; /* Distribui espaço */
    min-width: 120px;
    justify-content: center;
}

.gpv-upsell-pick:hover {
    border-color: #2AC8D3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Quando selecionado (O JS adiciona :checked) */
.gpv-upsell-pick:has(input:checked) {
    border-color: #2AC8D3;
    background-color: #f0fdff;
    box-shadow: 0 0 0 2px rgba(42, 200, 211, 0.2);
}

/* Texto dentro do botão */
.gpv-upsell-pick .label {
    font-weight: 700;
    color: #333;
    font-size: 14px;
    margin: 0 !important; /* Remove margin do label genérico */
}

.gpv-upsell-pick .price {
    font-size: 13px;
    color: #666;
    margin-left: auto;
}

/* Esconde o input radio nativo visualmente mas mantendo acessibilidade */
.gpv-upsell-pick input[type="radio"],
.gpv-upsell-pick input[type="checkbox"] {
    accent-color: #2AC8D3;
    width: 16px; 
    height: 16px;
}

/* Abas do Produto (Descrição) */
.gpv-tabs ul.tabs {
    border-bottom: 1px solid #eee;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    gap: 20px;
    list-style: none;
}
.gpv-tabs ul.tabs li a {
    font-weight: 700;
    color: #999;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 12px;
    display: block;
}
.gpv-tabs ul.tabs li.active a {
    color: #333;
    border-bottom: 2px solid #2AC8D3;
}
.gpv-tabs .panel {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Container Principal com espaçamento interno adequado */
.gpv-clean-card-wrapper .gpv-box.content {
    padding: 30px !important; /* Espaço para não tocar as bordas */
}

/* Ajuste para telas menores (Mobile) */
@media (max-width: 600px) {
    .gpv-clean-card-wrapper .gpv-box.content {
        padding: 20px !important;
    }
}

/* =========================================================
   FIX WHATSAPP (Intl-Tel-Input) - CORREÇÃO DEFINITIVA
   ========================================================= */

/* 1. Garante container com largura total e margem correta */
#gpv-wrapper .iti {
    width: 100% !important;
    display: block !important;
    margin-bottom: 15px;
}

/* 2. O INPUT (A Correção Principal)
   Usamos o ID #gpv-wrapper + a classe do input para vencer a especificidade.
   Forçamos o padding-left de 90px para a bandeira não cobrir o texto. */
#gpv-wrapper input.iti__tel-input {
    width: 100% !important;
    height: 48px !important;
    border-radius: 10px !important;
    border: 1px solid #e1e4e8 !important;
    background-color: #f9fafa !important;
    color: #333 !important;
    
    /* Espaçamentos */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 15px !important;
    
    /* CRÍTICO: 90px garante espaço para bandeira + código (+55) */
    padding-left: 90px !important; 
}

/* 3. Ajuste fino do container da bandeira para alinhar verticalmente */
#gpv-wrapper .iti__flag-container {
    border: none !important;
    background: transparent !important;
    height: 48px !important; /* Mesma altura do input */
    border-radius: 10px 0 0 10px !important;
}

/* 4. Bandeira selecionada */
#gpv-wrapper .iti__selected-country {
    background: transparent !important;
    padding-left: 12px !important; /* Afasta um pouco da borda esquerda */
    border-radius: 10px 0 0 10px !important;
}

/* 6. Cores do texto no dropdown (para não ficar invisível se houver conflito) */
#gpv-wrapper .iti__country-name,
#gpv-wrapper .iti__dial-code {
    color: #333 !important;
}

/* 3. Garante que a lista de países fique sobreposta corretamente */
#gpv-wrapper .iti__country-list {
    z-index: 999 !important;
    border-radius: 8px !important;
    border: 1px solid #e1e4e8 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

/* =========================================================
   ENRICHED PICKERS (CLEAN THEME)
   Estilo refinado, leve e moderno para as opções (24/48/60 peças)
   ========================================================= */

/* 1. Container Flexível (Alinha os itens lado a lado) */
#gpv-wrapper .gpv-upsell-inline .picks {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center; /* Centraliza as opções */
    margin-bottom: 20px;
}

/* 2. O Cartão da Opção (O Picker em si) */
#gpv-wrapper .gpv-upsell-pick {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px; /* Mais compacto que o original */
    
    background: #ffffff;
    border: 1px solid #e1e4e8; /* Borda cinza suave */
    border-radius: 12px;       /* Arredondamento moderno */
    
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03); /* Sombra levíssima */
    min-width: 140px; /* Garante um tamanho mínimo elegante */
}

/* Hover (Passar o mouse) */
#gpv-wrapper .gpv-upsell-pick:hover {
    border-color: #2AC8D3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 200, 211, 0.15);
}

/* 3. ESTADO SELECIONADO (O pulo do gato visual) 
   Quando o input dentro dele está marcado */
#gpv-wrapper .gpv-upsell-pick:has(input:checked) {
    border-color: #2AC8D3;       /* Borda na cor da marca */
    background-color: #f0fdff;   /* Fundo azul claríssimo */
    box-shadow: 0 0 0 2px rgba(42, 200, 211, 0.2); /* Anel de foco sutil */
}

/* 4. Tipografia do Rótulo (ex: "60 peças") */
#gpv-wrapper .gpv-upsell-pick .label {
    font-size: 14px;
    font-weight: 700;
    color: #444;
    margin-right: auto; /* Empurra o preço para a direita */
}

/* 5. Checkbox/Radio Nativo */
#gpv-wrapper .gpv-upsell-pick input[type="radio"], 
#gpv-wrapper .gpv-upsell-pick input[type="checkbox"] {
    accent-color: #2AC8D3; /* Cor nativa do navegador */
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

/* =========================================================
   PREÇOS DENTRO DOS PICKERS (HIERARQUIA VISUAL)
   ========================================================= */

/* Container do Preço */
#gpv-wrapper .gpv-upsell-pick .price {
    display: flex;
    flex-direction: column; /* Empilha: De / Por */
    align-items: flex-end;
    line-height: 1.1;
}

/* Preço Antigo (DEL) - Discreto */
#gpv-wrapper .gpv-upsell-pick .price del {
    font-size: 11px;
    color: #999;
    text-decoration: line-through;
    opacity: 0.8;
    margin-bottom: 2px;
}
/* Remove cor do woocommerce se houver */
#gpv-wrapper .gpv-upsell-pick .price del .woocommerce-Price-amount {
    color: inherit !important;
}

/* Preço Novo (INS) - Badge "Pill" Elegante */
#gpv-wrapper .gpv-upsell-pick .price ins {
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    
    /* Cria o visual de "etiqueta" */
    background: linear-gradient(90deg, #2AC8D3, #8882EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Alternativa se preferir fundo colorido em vez de texto degradê:
       background: #2AC8D3;
       color: #fff;
       padding: 2px 8px;
       border-radius: 10px;
    */
}

/* Ajuste Mobile (Se ficar muito apertado, empilha verticalmente) */
@media (max-width: 480px) {
    #gpv-wrapper .gpv-upsell-pick {
        width: 100%; /* Ocupa largura total no celular */
        justify-content: space-between;
    }
}

/* =======================================================
   CORREÇÃO DEFINITIVA (Nível Nuclear): WhatsApp
   Vence a especificidade de 121 pontos do tema global
   ======================================================= */

/* 1. O Wrapper: Define o palco relativo */
#gpv-wrapper .iti {
    display: block !important;
    width: 100% !important;
    position: relative !important;
    margin-bottom: 15px;
}

/* 2. O Input: Usamos DOIS IDs para gerar força bruta (Pontuação: 200) */
/* Isso obriga o navegador a aceitar o espaço de 96px à esquerda */
#gpv-wrapper input#gpv-user-whatsapp {
    padding-left: 96px !important;  /* O segredo: espaço reservado na marra */
    padding-right: 15px !important; /* Mantém o ar na direita */
    width: 100% !important;
    height: 48px !important;
    border-radius: 10px !important;
    background-color: #f9fafa !important;
    border: 1px solid #e1e4e8 !important;
    color: #333 !important;
}

/* 3. A Bandeira e o DDD: Fixados na área reservada pelo padding acima */
#gpv-wrapper .iti__country-container {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    padding-left: 10px !important; /* Afasta a bandeira da borda */
    background: transparent !important;
    border: none !important;
    z-index: 20 !important;
}

/* 4. Garante que o texto "+55" apareça e tenha cor certa */
#gpv-wrapper .iti__selected-dial-code {
    color: #555 !important;
    font-weight: 600 !important;
    margin-left: 6px !important;
}

/* 5. Ajuste da lista de países (Dropdown) */
#gpv-wrapper .iti__country-list {
    width: 320px !important;
    white-space: normal !important;
    z-index: 99999 !important; /* Acima de tudo */
    border-radius: 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    border: 1px solid #eee !important;
}

/* =========================================================
   FIX MOBILE DEFINITIVO: Galeria Flatsome
   ========================================================= */

/* 1. OBRIGA a coluna a aparecer, independente do ID ou configuração do tema */
/* Usamos a classe .unified-product-row para dar contexto e força */
.unified-product-row .product-gallery-col.hide-for-small,
.unified-product-row .product-gallery-col {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 2. REPARA O COLAPSO DE ALTURA (O "Pulo do Gato") */
@media (max-width: 849px) {
    
    /* Define a área da galeria */
    .unified-product-row .product-gallery-col {
        height: auto !important;
        min-height: 400px !important; /* Altura generosa para o mobile */
        position: relative !important;
        overflow: visible !important;
    }

    /* FORÇA o slider a ter altura, vencendo o "style='height: 0px'" do JS */
    .unified-product-row .slider-wrapper,
    .unified-product-row .slider,
    .unified-product-row .flickity-viewport {
        height: 400px !important;
        min-height: 400px !important;
    }

    /* Estica a imagem para cobrir a área forçada acima */
    .unified-product-row .slider .slide,
    .unified-product-row .slider .img,
    .unified-product-row .slider img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important; /* Corta laterais se preciso, mas preenche */
        opacity: 1 !important;
        display: block !important;
    }
    
    /* Empurra o formulário para baixo para não ficar colado */
    .unified-product-row .col-form-container {
        padding-top: 20px !important;
    }
}

/* =========================================================
   ESTILO DEFINITIVO: Título e Subtítulo (Sem depender de ID)
   ========================================================= */

/* 1. O TÍTULO (H2): Alvo na classe .gradient-text dentro de uma seção */
.section-content .text h2.gradient-text {
    /* Força bruta no tamanho e peso */
    font-size: clamp(32px, 5vw, 56px) !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.03em !important; /* Letras mais juntas = mais impacto */
    margin-bottom: 16px !important;
    
    /* Gradiente mais vivo (Ciano para Roxo) */
    background: linear-gradient(90deg, #2AC8D3 0%, #8882EE 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    
    /* O SEGREDO DO GLOW: Sombra colorida suave atrás do texto */
    filter: drop-shadow(0 0 15px rgba(42, 200, 211, 0.3));
    
    /* Peso da fonte para ficar "gordo" como na imagem */
    font-weight: 900 !important;
    letter-spacing: -1px !important;
    text-transform: uppercase !important;
}

/* 2. O SUBTÍTULO (H3): Alvo na classe .thin-font */
.section-content .text h3.thin-font {
    /* Leitura confortável */
    font-size: clamp(16px, 2vw, 20px) !important;
    font-weight: 400 !important; /* Regular, remove o bold */
    line-height: 1.6 !important;
    color: #555 !important;
    
    /* Centralização e largura de leitura */
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 40px !important;
    display: block !important; /* Garante que respeite as margens auto */
}

/* 3. Ajuste Fino Mobile */
@media (max-width: 600px) {
    .section-content .text h2.gradient-text {
        font-size: 32px !important; /* Tamanho mínimo legível */
        margin-bottom: 12px !important;
    }
    .section-content .text h3.thin-font {
        font-size: 16px !important;
        padding: 0 10px !important; /* Evita encostar na borda da tela */
    }
}

/* =========================================================
   7. TRANSIÇÃO DE LAYOUT (Dual Column -> Single Hero)
   ========================================================= */

/* Define a transição base para as colunas */
.unified-product-row .product-gallery-col,
.unified-product-row .col-form-container {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: flex, max-width, opacity;
}

/* --- ESTADO ATIVO (Quando a classe .gpv-full-mode é adicionada) --- */
/* =========================================================
   7. TRANSIÇÃO ISOLADA (Apenas Página B - Puzzle Unified)
   ========================================================= */

/* Regra base de transição: Suavidade para largura e opacidade */
.unified-product-row .product-gallery-col,
.unified-product-row .col-form-container {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: flex, max-width, opacity;
}

/* --- ESTADO ATIVO (Disparado pelo JS apenas se IS_PUZZLE_B for true) --- */

/* 1. Esquerda (Slider): Colapsa até sumir */
.unified-product-row.gpv-full-mode .product-gallery-col {
    flex: 0 0 0% !important;
    max-width: 0% !important;
    opacity: 0;
    padding: 0 !important;
    overflow: hidden;
    min-height: 0 !important;
}

/* 2. Direita (Form/Loading): Expande para ocupar tudo */
.unified-product-row.gpv-full-mode .col-form-container {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    /* Adiciona respiro vertical quando está em modo tela cheia */
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* 3. Centraliza o conteúdo (o Card branco) */
.unified-product-row.gpv-full-mode .gpv-clean-card-wrapper {
    max-width: 550px; /* Largura confortável para leitura */
    margin: 0 auto;
    float: none;
}

/* Ajuste de segurança para Mobile na Página B */
@media (max-width: 849px) {
    .unified-product-row.gpv-full-mode .col-form-container {
        padding: 30px 15px !important;
    }
}

/* =========================================================
   FIX HEADER MOBILE (FLATSOME)
   Força altura e alinhamento vertical dos ícones/logo
   ========================================================= */

@media (max-width: 849px) {
    
    /* 1. Define altura fixa na marra para o container principal */
    #masthead.header-main {
        height: 70px !important;      /* Altura confortável para o dedo */
        min-height: 70px !important;
    }

    /* 2. Garante que o container interno ocupe 100% dessa altura e centralize */
    #masthead .header-inner {
        height: 70px !important;
        min-height: 70px !important;
        align-items: center !important; /* O segredo: alinha ícones e logo no meio */
    }

    /* 3. Domar o Logo (que tem 750px) para caber nos 70px */
    #logo a img {
        max-height: 50px !important;  /* Deixa 10px de sobra em cima e embaixo */
        width: auto !important;       /* Mantém a proporção */
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 4. Alinhar os Ícones (Carrinho / Menu) */
    .mobile-nav, 
    .mobile-nav > li, 
    .mobile-nav > li > a {
        display: flex !important;
        align-items: center !important;
        height: 100% !important; /* Estica a área de toque para a altura total */
    }
    
    /* Ajuste fino para o ícone do carrinho especificamente */
    .header-cart-link .cart-icon {
        margin-top: 0 !important; /* Remove margens estranhas do tema */
        margin-bottom: 0 !important;
    }
}

/* =========================================================
   7. ESTILOS HOME HERO (REVERSE FLOW)
   ========================================================= */

/* Força o grid de 2 colunas para os pickers na Home */
.wrapper-puzzle .gpv-upsell-inline .picks {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas fixas */
    gap: 12px;
    width: 100%;
}

/* Card do Produto (Picker) - Visual Clean */
.wrapper-puzzle .gpv-upsell-pick {
    display: flex;
    flex-direction: column; /* Texto em cima, preço em baixo */
    align-items: flex-start;
    justify-content: center;
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 70px; /* Altura mínima para uniformidade */
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* Checkbox flutuante no canto */
.wrapper-puzzle .gpv-upsell-pick input[type="checkbox"] {
    position: absolute;
    top: 10px;
    right: 10px;
    accent-color: #2AC8D3;
    width: 18px;
    height: 18px;
}

/* Estado Selecionado */
.wrapper-puzzle .gpv-upsell-pick:has(input:checked),
.wrapper-puzzle .gpv-upsell-pick.is-selected {
    border-color: #2AC8D3;
    background-color: #f0fdff;
    box-shadow: 0 0 0 2px rgba(42, 200, 211, 0.2);
}

/* Tipografia */
.wrapper-puzzle .gpv-upsell-pick .label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 4px;
    padding-right: 20px; /* Espaço para o checkbox */
    line-height: 1.2;
}

.wrapper-puzzle .gpv-upsell-pick .price {
    font-size: 12px;
    color: #666;
    margin-top: auto; /* Empurra para baixo */
}

.wrapper-puzzle .gpv-upsell-pick .price ins {
    color: #2AC8D3;
    font-weight: 800;
    text-decoration: none;
}

/* Ajuste Mobile: Botões do Colorir */
@media (max-width: 600px) {
    .gpv-cta-group {
        flex-direction: column;
    }
    .gpv-cta-group button {
        width: 100%;
    }
    /* Grid de produtos fica em 1 coluna se a tela for muito pequena, ou mantém 2 apertados */
    .wrapper-puzzle .gpv-upsell-inline .picks {
        grid-template-columns: 1fr 1fr; /* Mantém 2 colunas mesmo no mobile */
    }
}

/* --- Persistência do Layout Full (Slider Oculto) --- */
.unified-product-row.gpv-full-mode .product-gallery-col {
    flex: 0 0 0% !important;
    max-width: 0% !important;
    opacity: 0;
    padding: 0 !important;
    overflow: hidden;
    min-height: 0 !important;
    transition: all 0.5s ease;
}

.unified-product-row.gpv-full-mode .col-form-container {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-top: 40px !important;
}

/* --- Botão de Download em Destaque --- */
.btn-highlight-pulse {
    background-color: #8B5BFA !important; /* Roxo vibrante */
    border-color: #8B5BFA !important;
    color: white !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 0 0 0 rgba(139, 91, 250, 0.7);
    animation: btnPulse 2s infinite;
    text-transform: uppercase;
    font-size: 13px;
}

@keyframes btnPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 91, 250, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(139, 91, 250, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(139, 91, 250, 0); }
}

/* --- Grid de Produtos (Pickers) --- */
.wrapper-puzzle .gpv-upsell-inline .picks {
    display: grid !important;
    grid-template-columns: 1fr 1fr; /* 2 colunas fixas */
    gap: 10px;
    width: 100%;
}

@media (max-width: 480px) {
    /* No mobile muito pequeno, talvez 1 coluna seja melhor, 
       mas você pediu 2 colunas, então mantemos o grid acima */
    .wrapper-puzzle .gpv-upsell-pick {
        padding: 8px !important; /* Padding menor no mobile */
    }
    .wrapper-puzzle .gpv-upsell-pick .label {
        font-size: 12px !important;
    }
}

/* =========================================================
   CROPPER MODAL - Ajustes de Botões Mobile
   ========================================================= */
.gpv-cropper-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

@media (max-width: 480px) {
    .gpv-cropper-actions {
        flex-direction: column; /* Empilha os botões */
    }
    .gpv-cropper-actions button {
        width: 100%; /* Largura total */
        padding: 12px;
        margin-bottom: 5px;
    }
}

/* =========================================
   NOVAS SEÇÕES: COMO FUNCIONA & COMPARATIVO
   (Visual Tech Premium: Glow, Sombras Coloridas e Espaçamento)
   ========================================= */

/* Espaçamentos Gerais */
.mh-section-container {
    position: relative;
    overflow: hidden;
}
.section-alt-bg {
    background-color: #F9FAFB; /* Fundo cinza ultra-claro */
}

/* --- CARDS DE PASSO A PASSO (HOW IT WORKS) --- */
.mh-step-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 20px;
    padding: 35px 25px; /* Aumentado para mais respiro */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.mh-step-card:hover {
    transform: translateY(-8px);
    /* Sombra colorida Ciano para efeito tech */
    box-shadow: 0 20px 50px -12px rgba(42, 200, 211, 0.25);
    border-color: rgba(42, 200, 211, 0.3);
}

.mh-step-card .step-icon {
    width: 80px; /* Ícone um pouco maior */
    height: 80px;
    background: linear-gradient(135deg, #F0FDFA, #EEF2FF);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #2AC8D3;
    /* Brilho interno no ícone */
    box-shadow: inset 0 0 20px rgba(42, 200, 211, 0.1); 
}

.mh-step-card .step-icon svg {
    width: 32px;
    height: 32px;
}

.mh-step-card .step-number {
    position: absolute;
    top: 0;
    right: 0;
    background: #8882EE;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    line-height: 28px;
    /* Sombra roxa no número */
    box-shadow: 0 4px 10px rgba(136, 130, 238, 0.4); 
}

.mh-step-card .step-title {
    font-size: 18px;
    font-weight: 800;
    color: #0B1120; /* Dark premium */
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mh-step-card .step-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* --- TABELA COMPARATIVA (PIONEIRISMO) --- */
.mh-comparison-wrapper {
    background: #fff;
    border-radius: 16px;
    /* Sombra Roxa Suave ao redor da tabela */
    box-shadow: 0 10px 40px -10px rgba(136, 130, 238, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.mh-table-header {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    background: #0B1120;
    color: #fff;
    padding: 22px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    align-items: center;
}

.mh-col-us {
    color: #2AC8D3; /* Ciano Neon */
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 0 15px rgba(42, 200, 211, 0.4); /* Glow no texto */
}

.mh-col-them {
    color: #9CA3AF;
    text-align: center;
    font-size: 12px;
}

.mh-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #F3F4F6;
    align-items: center;
    transition: background-color 0.2s;
}

.mh-table-row:last-child {
    border-bottom: none;
}

.mh-table-row:hover {
    background-color: #F9FAFB;
}

.mh-feature {
    font-weight: 700;
    color: #374151;
    font-size: 14px;
}

.mh-value {
    font-size: 14px;
    text-align: center;
}

.mh-value.us {
    color: #2AC8D3;
    font-weight: 800;
    /* Fundo 'pill' tecnológico */
    background: rgba(42, 200, 211, 0.08); 
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    justify-self: center;
    font-size: 13px;
}

.mh-value.them {
    color: #9CA3AF;
    text-decoration: line-through;
    font-size: 13px;
}

/* Badges de Confiança (Tecnologia/Nacional) */
.mh-trust-badges span {
    display: inline-block;
    background: #fff;
    border: 1px solid #E5E7EB;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #4B5563;
    margin-right: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* RESPONSIVO MOBILE - Ajustado para não quebrar */
@media (max-width: 600px) {
    /* Espaçamento entre cards */
    #mh-steps-row .col {
        margin-bottom: 24px;
    }
    
    /* Tabela vira Cards Empilhados */
    .mh-table-header { display: none; } 
    
    .mh-table-row {
        display: flex;
        flex-direction: column;
        padding: 25px 20px;
        position: relative;
        text-align: center;
        gap: 8px;
        border-bottom: 1px solid #eee;
    }
    
    .mh-feature {
        color: #8882EE; /* Título Roxo no Mobile */
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: 100%;
        margin-bottom: 4px;
    }
    
    .mh-value.us {
        width: 100%;
        font-size: 16px;
        margin-bottom: 4px;
        background: rgba(42, 200, 211, 0.1);
    }
    
    .mh-value.them {
        font-size: 12px;
        opacity: 0.7;
        text-decoration: none;
    }
    
    .mh-value.them::before {
        content: "Outros: ";
        opacity: 0.8;
    }
}

/* --- SELETOR DE ESTILO (REALISTA vs ANIMADO) --- */
.gpv-style-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: -10px;
}

.gpv-style-option {
    position: relative;
    cursor: pointer;
    flex: 1;
    max-width: 200px;
}

/* O Checkbox real fica oculto, mas acessível */
.gpv-style-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* O Card Visual */
.gpv-style-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #fff;
    border: 2px solid #e1e4e8;
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.gpv-style-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

/* Estado Selecionado */
.gpv-style-option input:checked + .gpv-style-card {
    border-color: #8882EE;
    background-color: #f9f9ff;
    box-shadow: 0 0 0 2px rgba(136, 130, 238, 0.2);
}

/* Ícone/Emoji */
.gpv-style-icon {
    font-size: 20px;
}

/* Texto */
.gpv-style-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.gpv-style-title {
    font-weight: 800;
    font-size: 14px;
    color: #333;
    line-height: 1.2;
    text-transform: uppercase;
}

.gpv-style-desc {
    font-size: 11px;
    color: #777;
    line-height: 1.2;
}

/* Indicador de Check */
.gpv-check-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ddd;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.gpv-style-option input:checked + .gpv-style-card .gpv-check-indicator {
    background-color: #8882EE;
    border-color: #8882EE;
}

.gpv-check-indicator::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: none;
}

.gpv-style-option input:checked + .gpv-style-card .gpv-check-indicator::after {
    display: block;
}

/* Estado "Ativo" (Preview sendo exibido no momento) */
/* Adiciona um brilho extra ao card que está sendo visualizado na imagem */
.gpv-style-option.is-viewing .gpv-style-card {
    border-color: #2AC8D3; /* Ciano para indicar visualização */
}

@media (max-width: 480px) {
    .gpv-style-selector {
        flex-direction: row; /* Mantém lado a lado no mobile */
    }
    .gpv-style-card {
        padding: 10px;
        flex-direction: column; /* Empilha ícone e texto */
        text-align: center;
        gap: 5px;
    }
    .gpv-style-info { text-align: center; }
    .gpv-check-indicator { 
        position: absolute; 
        top: 8px; 
        right: 8px; 
        width: 16px; height: 16px;
    }
}

/* --- Informativo de Seleção (Abaixo dos Estilos) --- */
.gpv-selection-info {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: -10px; /* Cola nos cards */
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #eee;
    display: inline-block; /* Tamanho do conteúdo */
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.gpv-selection-info.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gpv-selection-info strong {
    color: #8882EE; /* Roxo da marca */
    font-weight: 700;
}

/* Ajuste no Container de Estilos para centralizar o info */
#gpv-style-selector-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Spinner pequeno para o botão */
.gpv-spinner-sm {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-top-color: #8882EE;
    border-radius: 50%;
    animation: gpv-spin 0.8s linear infinite;
}
@keyframes gpv-spin { to { transform: rotate(360deg); } }

/* Estado Disabled/Loading do Card */
.gpv-style-option.is-loading .gpv-style-card {
    background-color: #f5f5f5;
    border-color: #eee;
    cursor: wait;
    opacity: 0.7;
}
.gpv-style-option.is-loading .gpv-style-title {
    color: #888;
}

/* =========================================================
   PREMIUM TUNING (SAFE OVERRIDES)
   Cole este bloco NO FINAL do arquivo para evitar regressões.
   ========================================================= */

:root{
  --mh-cyan:#2AC8D3;
  --mh-purple:#8882EE;
  --mh-ink:#0B1120;
  --mh-muted:#64748b;
  --mh-border:rgba(15,23,42,.08);
  --mh-radius-lg:22px;
  --mh-radius-md:14px;
  --mh-shadow-lg:0 20px 60px rgba(2,8,23,.10);
  --mh-shadow-md:0 12px 34px rgba(2,8,23,.08);
}

/* 1) Tipografia: mais “premium” e legível (sem trocar sua identidade) */
.section-content .text h2.gradient-text{
  letter-spacing:-0.02em !important;
  text-wrap:balance;
}
.section-content .text h3.thin-font{
  color:#475569 !important;
  max-width:720px !important;
  text-wrap:pretty;
}
/* Caso você aplique a correção do HTML (parágrafos separados) */
.thin-font p{ margin:0 0 12px; }
.thin-font p:last-child{ margin-bottom:0; }

/* 2) Card unificado (galeria + formulário): proporção, borda e presença */
.unified-product-row{
  border-radius:var(--mh-radius-lg) !important;
  border:1px solid var(--mh-border) !important;
  box-shadow:var(--mh-shadow-lg) !important;
}
/* Sinal de “ativo” quando o usuário interage com o form */
.unified-product-row:focus-within{
  box-shadow:0 22px 70px rgba(2,8,23,.12), 0 0 0 4px rgba(42,200,211,.10) !important;
}

/* 3) Ritmo interno do formulário: padding fluido (desktop/tablet) */
.col-form-container{
  padding:clamp(22px, 3vw, 44px) !important;
}
@media (max-width: 849px){
  .col-form-container{ padding:22px 16px !important; }
}

/* 4) Hierarquia do header do form (título/subtítulo) */
#gpv-wrapper .form-title{
  font-weight:900;
  color:var(--mh-ink);
  letter-spacing:-0.01em;
  margin-bottom:6px;
}
#gpv-wrapper .form-subtitle{
  margin:0;
  color:var(--mh-muted);
  font-size:13px;
}

/* 5) Inputs: hover + placeholders mais “tech”, sem mexer no focus atual */
#gpv-wrapper input:not([type="submit"]):not([type="file"]):hover,
#gpv-wrapper select:hover{
  border-color:rgba(42,200,211,.45) !important;
  background-color:#fff !important;
}
#gpv-wrapper input::placeholder{
  color:rgba(71,85,105,.75);
}

/* 6) Upload zone: acabamento e feedback mais premium */
.clean-zone{
  border-radius:var(--mh-radius-md) !important;
  box-shadow:0 10px 26px rgba(2,8,23,.06);
}
.clean-zone:hover{
  box-shadow:0 14px 34px rgba(2,8,23,.09);
}

/* 7) Botões: foco acessível + microinteração controlada */
.btn-primary-gradient:focus-visible,
.btn-outline:focus-visible{
  outline:none !important;
  box-shadow:0 0 0 4px rgba(136,130,238,.18), 0 0 0 1px rgba(136,130,238,.35) inset !important;
}
.btn-primary-gradient:active{ transform:translateY(0) !important; }

/* 9) Respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce){
  .btn-primary-gradient,
  .mh-step-card,
  .unified-product-row .product-gallery-col,
  .unified-product-row .col-form-container{
    transition:none !important;
  }
  .loading-pulse{ animation:none !important; }
}

/* 10) Opcional (se você adicionar class="mh-hero-intro" no primeiro section) */
.mh-hero-intro .thin-font{ max-width:560px !important; }

/* =========================================================
   FIX CROPPER MODAL (PRIORIDADE MÁXIMA)
   ========================================================= */

#gpv-cropper-modal {
    /* Garante que ocupe a tela toda, fugindo de containers relativos */
    position: fixed !important; 
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    
    /* Z-index máximo possível para garantir que fique acima de tudo (inclusive WhatsApp) */
    z-index: 2147483647 !important; 
    
    /* Fundo mais escuro para focar a atenção */
    background: rgba(0, 0, 0, 0.95) !important;
}

/* Garante que o conteúdo interno do modal esteja centralizado e visível */
#gpv-cropper-modal > div {
    position: relative;
    z-index: 2147483648 !important; /* Um ponto acima do backdrop */
    margin: auto; /* Ajuda na centralização flex */
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    max-height: 90vh !important;
}

/* Melhoria visual para os botões dentro do modal */
.gpv-cropper-actions {
    margin-top: 10px;
    z-index: 20;
    gap: 15px;
}

/* Garante que a imagem não estoure no mobile */
#gpv-cropper-image {
    max-height: 60vh !important;
    display: block;
}


/* Adicione este bloco */
.mh-hero-copy {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #4a5568 !important; /* Cinza escuro suave */
    font-weight: 400 !important;
}

.mh-hero-copy strong, 
.mh-hero-copy em {
    color: #0B1120; /* Destaque preto quase puro */
    font-style: normal;
    font-weight: 800;
}

/* Adicione este bloco novo */
a.button.primary.btn-glow-pill {
    /* Formato e Tamanho */
    border-radius: 999px !important; /* Pílula completa */
    padding: 15px 40px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    
    /* Cores e Gradiente (Baseado na ref: Azul Royal -> Roxo) */
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%) !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.2) !important; /* Borda de vidro */
    
    /* Efeitos de Luz 3D */
    box-shadow: 
        0 10px 25px -5px rgba(59, 130, 246, 0.5), /* Sombra difusa azul */
        inset 0 2px 0 rgba(255,255,255,0.2) !important; /* Brilho superior interno */
        
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-top: 20px;
    display: inline-block;
}

/* Estado Hover (Ao passar o mouse) */
a.button.primary.btn-glow-pill:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 40px -10px rgba(139, 91, 250, 0.6), /* Sombra mais forte roxa */
        inset 0 2px 0 rgba(255,255,255,0.4) !important;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%) !important;
}

/* Efeito do Título Principal */
h2.uppercase.gradient-text {
    /* Garante o Gradiente Ciano -> Roxo */
    background: linear-gradient(90deg, #2AC8D3 0%, #8882EE 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    
    /* Aumenta o peso para ficar "gordo" igual a ref */
    font-weight: 900 !important;
    letter-spacing: -1px !important;
    
    /* O TRUQUE DO NEON: 
       A primeira sombra branca (0 0 1px) cria o "contorno".
       A segunda sombra (0 0 15px) cria o brilho colorido. */
    filter: drop-shadow(0 0 1px rgba(255,255,255,0.8)) 
            drop-shadow(0 0 20px rgba(42, 200, 211, 0.5));
}

/* Ajuste do Texto Descritivo */
.mh-hero-copy {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #4a5568 !important;
    margin-bottom: 35px !important; /* Espaço maior antes do botão */
}

/* Botão Estilo Pílula Brilhante */
.btn-glow-pill {
    /* Formato Pílula */
    border-radius: 50px !important; 
    
    /* Gradiente igual ao da referência (Azul Royal para Roxo) */
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%) !important;
    
    /* Tamanho e Texto */
    padding: 15px 45px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.3) !important; /* Borda sutil de vidro */
    
    /* Efeito de Luz embaixo do botão */
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.6) !important;
    
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
    margin-top: 10px;
}

/* Efeito ao passar o mouse */
.btn-glow-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(139, 91, 250, 0.7) !important;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%) !important;
}

/* Remove qualquer cor de fundo padrão do tema que possa interferir */
.btn-glow-pill span {
    color: #fff !important;
}

/* --- TEXTO HERO ROBUSTO E RESPONSIVO --- */

.mh-hero-copy {
    /* Largura controlada para leitura confortável */
    max-width: 750px; 
    margin: 0 auto 35px;
    text-align: center;
    
    /* COR: Cinza escuro azulado (mais premium que o #555) */
    color: #374151; 
}

/* Estilo dos Parágrafos */
.mh-hero-copy p {
    /* FONTE FLUIDA: 
       Minimo: 16px (Mobile) 
       Ideal: 1.2vw (Tablet/Laptop)
       Máximo: 20px (Desktop Grande) 
    */
    font-size: clamp(16px, 1.2vw, 20px);
    
    line-height: 1.6; /* Altura de linha para respirar */
    font-weight: 400; /* Regular (não use thin/300) */
    margin-bottom: 15px;
}

/* Primeira frase com mais destaque (Lead) */
.mh-hero-copy .hero-lead {
    font-size: clamp(18px, 1.5vw, 24px); /* Um pouco maior que o resto */
    font-weight: 500; /* Medium */
    color: #111; /* Quase preto */
    margin-bottom: 20px;
}

/* Negritos (Strong) */
.mh-hero-copy strong {
    font-weight: 800;
    color: #000;
}

/* Destaque final (Simplesmente especial...) */
.mh-hero-copy .highlight-text {
    font-weight: 700;
    font-style: italic;
    color: #2AC8D3; /* Ciano da marca para conectar com o título */
    display: inline-block; /* Evita quebras estranhas */
    margin-top: 5px;
}

/* Ajuste Mobile Fino */
@media (max-width: 600px) {
    .mh-hero-copy {
        padding: 0 15px; /* Margem lateral para não colar na tela */
        margin-bottom: 25px;
    }
}

/* =========================================================
   FIX MOCKUP PUZZLE (CORREÇÃO DE MÁSCARA)
   ========================================================= */

/* Container do Mockup */
.gpv-puzzle-mockup {
    position: relative;
    display: inline-block; /* Ajusta ao tamanho da imagem filha */
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    line-height: 0; /* Remove espaçamento inferior fantasma das imagens */
    border-radius: 8px;
    /* Sombra suave para dar volume */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
    background-color: #fff; /* Fundo branco de segurança */
}

/* 1. A Imagem do Herói (Base) */
.gpv-puzzle-mockup img.gpv-hero-base {
    display: block;
    width: 100%;
    height: auto;
    /* Pequeno ganho de contraste para compensar o overlay */
    filter: contrast(1.05) brightness(1.02); 
    position: relative;
    z-index: 1; /* Fica na base */
}

/* 2. O Overlay dos Cortes (A Máscara) */
.gpv-puzzle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* CONTROLADO PELO JS (style inline), mas definimos propriedades aqui */
    background-size: 100% 100%; /* Estica para caber perfeitamente */
    background-position: center;
    background-repeat: no-repeat;
    
    /* A MÁGICA: Multiply faz o branco sumir e o preto permanecer */
    /* Requer que sua imagem de máscara seja Fundo Branco + Linhas Pretas */
    mix-blend-mode: multiply; 
    
    opacity: 0.85; /* Ajuste se as linhas ficarem muito fortes (0.0 a 1.0) */
    pointer-events: none; /* Permite clicar/arrastar a imagem abaixo se necessário */
    z-index: 10; /* Garante que fique SOBRE a imagem base */
}

/* 3. Brilho (Opcional - dá efeito de acabamento glossy) */
.gpv-puzzle-glare {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
    z-index: 11;
    pointer-events: none;
}

/* =========================================================
   MOBILE PUZZLE PICKERS: 3 EM LINHA
   ========================================================= */

@media (max-width: 600px) {
    
    /* 1. Força o container a ser um Grid de 3 colunas iguais */
    #gpv-upsell-offer .gpv-upsell-inline .picks {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important; /* 3 colunas de fração igual */
        gap: 8px !important; /* Espaço pequeno entre eles */
        width: 100% !important;
        padding: 0 5px; /* Margem de segurança lateral */
    }

    /* 2. Ajusta o Botão (Card) para caber no espaço apertado */
    #gpv-upsell-offer .gpv-upsell-pick {
        flex-direction: column !important; /* Empilha: Texto em cima, Preço embaixo */
        justify-content: center !important;
        text-align: center !important;
        padding: 10px 4px !important; /* Padding lateral mínimo */
        min-width: 0 !important; /* Permite encolher abaixo do padrão */
        height: 100%; /* Altura igual para todos */
        gap: 6px !important;
    }

    /* 3. Ajusta o Texto "24 peças" */
    #gpv-upsell-offer .gpv-upsell-pick .label {
        font-size: 11px !important; /* Fonte menor */
        line-height: 1.1 !important;
        margin: 0 !important;
        white-space: nowrap; /* Não quebra linha "24 peças" */
    }

    /* 4. Ajusta o Preço */
    #gpv-upsell-offer .gpv-upsell-pick .price {
        font-size: 10px !important;
        margin: 0 !important;
        width: 100%;
        display: flex;
        flex-direction: column; /* De em cima, Por embaixo */
        align-items: center;
    }

    /* Esconde o preço "DE" (Risco) se ficar muito apertado, ou diminui muito */
    #gpv-upsell-offer .gpv-upsell-pick .price del {
        font-size: 9px !important;
        display: none; /* Sugestão: Esconder o preço antigo no mobile para limpar o visual */
    }

    #gpv-upsell-offer .gpv-upsell-pick .price ins {
        font-size: 12px !important;
        font-weight: 800 !important;
    }

    /* Ajuste do Radio Button nativo */
    #gpv-upsell-offer .gpv-upsell-pick input[type="radio"] {
        margin-bottom: 4px; /* Espaço entre bolinha e texto */
        width: 14px;
        height: 14px;
    }
}

/* =========================================================
   BADGE DE PREÇO FLUTUANTE (OVERLAY NO SLIDER)
   ========================================================= */

/* Garante que o container pai seja a referência de posicionamento */
.product-gallery-col .slider-wrapper {
    position: relative !important;
}

.gpv-floating-price {
    position: absolute;
    bottom: 30px; /* Distância do fundo */
    right: 30px;  /* Distância da direita */
    z-index: 25;  /* Acima das imagens e dos dots do slider */
    
    /* Estilo "Cartão de Vidro" Clean */
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px); /* Desfoque moderno do fundo */
    border: 1px solid rgba(255, 255, 255, 0.8);
    
    padding: 12px 20px;
    border-radius: 16px;
    
    /* Sombra para destacar da imagem */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15), 
                0 4px 10px rgba(0,0,0,0.05);
    
    /* Alinhamento */
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Alinha texto à direita */
    
    /* Animação de entrada suave */
    animation: gpvSlideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
    animation-delay: 0.5s; /* Espera o slider carregar um pouco */
}

/* Etiqueta "Oferta Especial" */
.gpv-floating-price .gpv-price-label {
    background: #8882EE; /* Roxo da sua marca */
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(136, 130, 238, 0.4);
}

/* Container dos preços */
.gpv-floating-price .gpv-price-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
}

/* Preço Antigo (Riscado) */
.gpv-floating-price .gpv-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: 2px;
}

/* Preço Novo (Grande) */
.gpv-floating-price .gpv-new {
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

/* O Valor em destaque (R$69,90) */
.gpv-floating-price .gpv-new .val {
    font-size: 22px;
    font-weight: 800;
    margin-left: 4px;
    
    /* Gradiente da Marca no Texto */
    background: linear-gradient(90deg, #2AC8D3, #8882EE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Fallback cor sólida se gradiente falhar */
    color: #2AC8D3; 
}

/* Animação */
@keyframes gpvSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   RESPONSIVIDADE (MOBILE)
   ========================================================= */
@media (max-width: 600px) {
    .gpv-floating-price {
        bottom: 20px; /* Um pouco mais baixo no mobile */
        right: 15px;  /* Mais perto da borda */
        padding: 10px 15px;
        border-radius: 12px;
    }
    
    /* Reduz um pouco os tamanhos para não cobrir a arte */
    .gpv-floating-price .gpv-new .val {
        font-size: 18px; 
    }
    
    .gpv-floating-price .gpv-price-label {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    /* Se a imagem for muito pequena, esconde a label "Oferta" e deixa só preço */
    /* .gpv-floating-price .gpv-price-label { display: none; } */
}

/* Estilo para opção Esgotada no Puzzle */
.gpv-upsell-pick.is-sold-out {
    opacity: 0.6;
    pointer-events: none; /* Impede clique no label inteiro */
    background-color: #f9f9f9;
    border-color: #eee;
    cursor: not-allowed;
}

.gpv-upsell-pick.is-sold-out .price {
    text-decoration: line-through;
    color: #999;
}

/* Ajuste visual para garantir que o input disabled não seja clicável */
.gpv-upsell-pick input:disabled {
    cursor: not-allowed;
}

/* --- ESTILO SEÇÃO COMO FUNCIONA (TECH MODERN) --- */

/* Ajuste do Card para Imagens Grandes */
.mh-step-card.modern-card {
    background: transparent; /* Remove fundo padrão para focar na imagem */
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Wrapper da Imagem para controle de efeitos */
.mh-img-wrapper {
    position: relative;
    margin-bottom: 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    /* Efeito de luz sutil atrás da imagem */
    filter: drop-shadow(0 10px 20px rgba(136, 130, 238, 0.15));
}

/* A Imagem em si */
.step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* Garante que a imagem renderize com qualidade */
    transform: translateZ(0); 
    transition: transform 0.4s ease;
}

/* Conteúdo de Texto (Título e Descrição) */
.mh-card-content {
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    flex-grow: 1; /* Garante altura igual */
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.mh-step-card.modern-card .step-title {
    font-size: 20px;
    font-weight: 800;
    color: #0B1120;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.mh-step-card.modern-card .step-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* --- HOVER EFFECTS (INTERAÇÃO) --- */

/* Ao passar o mouse no card geral */
.mh-step-card.modern-card:hover {
    transform: translateY(-10px);
}

/* A imagem flutua um pouco mais e ganha brilho */
.mh-step-card.modern-card:hover .mh-img-wrapper {
    filter: drop-shadow(0 20px 40px rgba(42, 200, 211, 0.3)); /* Glow Ciano */
}

.mh-step-card.modern-card:hover .step-image {
    transform: scale(1.03);
}

/* O cartão de texto fica mais evidente */
.mh-step-card.modern-card:hover .mh-card-content {
    border-color: rgba(136, 130, 238, 0.3); /* Borda Roxa */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* --- AJUSTES MOBILE --- */
@media (max-width: 849px) {
    .mh-img-wrapper {
        margin-bottom: 15px;
        max-width: 280px; /* Controla tamanho no mobile */
        margin-left: auto;
        margin-right: auto;
    }
    
    .mh-step-card.modern-card .step-title {
        font-size: 18px;
    }
    
    .mh-step-card.modern-card {
        margin-bottom: 40px; /* Espaço entre passos no mobile */
    }
}

/* =========================================
   1. ESTILOS GERAIS & TECH THEME
   ========================================= */
.mh-section-container { position: relative; overflow: hidden; }
.section-alt-bg { background-color: #F8FAFC; }
.mb-mobile-30 { margin-bottom: 0; }

/* Títulos com Gradiente e Glow */
h2.gradient-text {
    background: linear-gradient(90deg, #2AC8D3 0%, #8882EE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(42, 200, 211, 0.3));
}

/* Badges de Confiança */
.mh-trust-badges span {
    display: inline-block;
    background: #fff;
    border: 1px solid #E2E8F0;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* =========================================
   2. COMO FUNCIONA (CARDS FLUTUANTES)
   ========================================= */
.mh-step-card.modern-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mh-img-wrapper {
    position: relative;
    margin-bottom: 20px;
    border-radius: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
    /* Efeito de vidro atrás da imagem */
    background: radial-gradient(circle, rgba(136,130,238,0.1) 0%, rgba(255,255,255,0) 70%);
}

.step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.mh-card-content {
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 20px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Hover Effects */
.mh-step-card.modern-card:hover .mh-img-wrapper {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 30px rgba(42, 200, 211, 0.25));
}
.mh-step-card.modern-card:hover .step-image { transform: scale(1.02); }

/* =========================================
   ESTILOS UNIFICADOS: TABELA COMPARATIVA
   ========================================= */

/* --- BASE (DESKTOP FIRST) --- */
.mh-comparison-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px -10px rgba(136, 130, 238, 0.15);
    border: 1px solid rgba(0,0,0,0.03);
    overflow: hidden;
}

.mh-table-header {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr; /* Us mais largo */
    background: #0F172A;
    padding: 20px;
    align-items: center;
}

.mh-col-feature { color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; }
.mh-col-us { color: #2AC8D3; font-weight: 900; font-size: 16px; text-align: center; text-transform: uppercase; text-shadow: 0 0 10px rgba(42,200,211,0.5); }
.mh-col-them { color: #94A3B8; font-weight: 600; font-size: 14px; text-align: center; }

.mh-table-row {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr;
    padding: 20px;
    border-bottom: 1px solid #F1F5F9;
    align-items: center;
    transition: background 0.2s;
}

.mh-table-row:last-child { border-bottom: none; }
.mh-table-row:hover { background-color: #F8FAFC; }

.mh-feature { font-weight: 700; color: #334155; font-size: 15px; }
.mh-value { text-align: center; font-size: 14px; }

/* Desktop Values */
.mh-value.us {
    color: #0F172A;
    font-weight: 700;
    background: rgba(42, 200, 211, 0.1);
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-block;
    color: #008fa1; /* Texto mais escuro para leitura */
    position: relative;
    padding-left: 32px; /* Espaço para icone */
}

/* Ícone Check Desktop */
.mh-value.us::before {
    content: '✓';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 900;
    font-size: 14px;
}

.mh-value.them {
    color: #94A3B8;
    text-decoration: line-through;
    font-size: 13px;
}

/* =========================================
   MOBILE TRANSFORMATION (BATTLE CARDS - REFORÇADO)
   ========================================= */
@media (max-width: 768px) {
    
    .mb-mobile-30 { margin-bottom: 40px; }

    /* Esconde o cabeçalho original da tabela */
    .mh-table-header { display: none; }
    
    .mh-comparison-wrapper {
        background: transparent;
        box-shadow: none;
        border: none;
        overflow: visible;
        gap: 20px; /* Espaço entre os cards */
        display: flex;
        flex-direction: column;
    }

    /* O CONTAINER DO CARD */
    .mh-table-row {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 16px;
        padding: 0; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Sombra mais marcada */
        border: 1px solid rgba(0,0,0,0.05);
        overflow: hidden;
        position: relative;
    }

    /* 1. O TÍTULO (A Característica) */
    .mh-feature {
        background: #fff;
        padding: 15px 20px 10px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #64748b;
        text-align: center;
        border: none;
        font-weight: 800;
    }

    /* 2. O VENCEDOR (MEU HERÓI) - Área de Destaque */
    .mh-value.us {
        width: 100%;
        background: linear-gradient(to bottom, #fff 0%, #f0fdff 100%);
        padding: 10px 20px 20px;
        color: #0B1120;
        font-size: 18px;
        font-weight: 800;
        display: flex;
        flex-direction: column; /* Empilha label e valor */
        align-items: center;
        justify-content: center;
        gap: 5px;
        position: relative;
        border-bottom: 1px dashed #e2e8f0; /* Separação sutil */
    }

    /* Label "MEU HERÓI" injetado via CSS */
    .mh-value.us::before {
        content: 'MEU HERÓI';
        font-size: 10px;
        background: #2AC8D3;
        color: #fff;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 800;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
        /* Reset de posicionamento desktop */
        position: static;
        transform: none;
    }

    /* Ícone Check Flutuante no Mobile */
    .mh-value.us::after {
        content: '✓';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #2AC8D3;
        font-size: 24px;
        font-weight: 900;
        opacity: 0.2; /* Sutil no fundo */
    }

    /* 3. O PERDEDOR (OUTROS) - Área de Contraste REFORÇADA */
    .mh-value.them {
        width: 100%;
        padding: 15px 20px;
        /* Fundo um pouco mais escuro para contraste */
        background: #f1f5f9; 
        font-size: 14px;
        color: #475569; /* Cinza mais forte para leitura */
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between; /* Texto na esq, label na dir */
        text-decoration: none; /* Remove risco difícil de ler */
        border-top: 1px solid #e2e8f0;
    }

    /* Label "OUTROS" injetado via CSS - Visual de Tag */
    .mh-value.them::after {
        content: 'OUTROS';
        font-size: 10px;
        color: #64748b;
        background: #e2e8f0; /* Fundo cinza na tag */
        border: 1px solid #cbd5e1;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 700;
        text-transform: uppercase;
        flex-shrink: 0; /* Impede que a tag encolha */
    }

    /* Ícone X Vermelho antes do texto - Mais visível */
    .mh-value.them::before {
        content: '✕';
        color: #EF4444;
        font-weight: 900;
        font-size: 16px;
        margin-right: 10px;
    }
}

/* =========================================================
   FEEDBACK "NÃO GOSTEI" - VERSÃO OTIMIZADA (BIG & CLEAN)
   ========================================================= */

/* Botão de Dislike (Trigger) */
#gpv-dislike-btn {
    background: transparent !important;
    border: 1px solid #e1e4e8 !important;
    color: #999 !important;
    font-size: 14px !important; /* Fonte maior */
    font-weight: 600 !important;
    padding: 12px 20px !important; /* Mais área de toque */
    border-radius: 50px !important;
    margin-top: 15px;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#gpv-dislike-btn:hover {
    border-color: #ff6b6b !important;
    color: #ff6b6b !important;
    background: #fff5f5 !important;
}

/* O Container do Modal (Overlay) */
.gpv-feedback-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centraliza verticalmente no espaço disponível */
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.gpv-feedback-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Títulos Maiores */
.gpv-feedback-title {
    font-size: 24px; /* Aumentado de 18px */
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Lista de Opções (Menu Principal) */
.gpv-feedback-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px; /* Mais largo para preencher a tela */
}

.gpv-feedback-opt {
    background: #fff;
    border: 1px solid #eee;
    padding: 18px 25px; /* Botões mais gordos */
    border-radius: 14px;
    font-size: 16px; /* Letra maior */
    color: #555;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.gpv-feedback-opt:hover {
    border-color: #2AC8D3;
    color: #2AC8D3;
    transform: translateX(5px) scale(1.01);
    box-shadow: 0 8px 20px rgba(42, 200, 211, 0.15);
}

/* Views Internas */
.gpv-feedback-view {
    display: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Garante que fique no meio da tela alta */
    animation: fadeInView 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gpv-feedback-view.active { display: flex; }

@keyframes fadeInView {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Layout "Não ficou parecido" (Expandido) --- */
.gpv-feedback-guide-row {
    display: flex;
    align-items: center; /* Centraliza imagem e texto */
    gap: 30px;
    text-align: left;
    margin-bottom: 30px;
    background: #fff;
    padding: 30px; /* Mais respiro interno */
    border-radius: 18px;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08); /* Sombra mais elegante */
    max-width: 600px; /* Largura generosa */
    width: 100%;
}

/* Imagem de Exemplo Maior */
.gpv-feedback-guide-img {
    width: 180px; /* Aumentado de 120px */
    flex-shrink: 0;
}
.gpv-feedback-guide-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Texto de Instrução Maior */
.gpv-feedback-guide-text {
    font-size: 16px; /* Aumentado de 13px */
    line-height: 1.6;
    color: #555;
}
.gpv-feedback-guide-text strong {
    color: #2AC8D3;
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
}
.gpv-feedback-guide-text ul {
    padding-left: 18px; 
    margin: 10px 0 0;
}
.gpv-feedback-guide-text li { 
    margin-bottom: 8px; 
}

/* Botão Fechar (X) */
.gpv-feedback-close {
    position: absolute;
    top: 25px; right: 25px;
    font-size: 32px;
    color: #ccc;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    padding: 10px; /* Área de toque maior */
}
.gpv-feedback-close:hover { color: #333; }

/* Mobile */
@media (max-width: 600px) {
    .gpv-feedback-title { font-size: 20px; }
    
    .gpv-feedback-guide-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }
    .gpv-feedback-guide-img { width: 150px; }
    .gpv-feedback-guide-text ul { text-align: left; display: inline-block; }
    .gpv-feedback-options { max-width: 100%; }
}

/* =============== Colorir ============*/

/* =========================================================
   ESTILOS EXCLUSIVOS: PÁGINA COLORIR (.wrapper-colorir)
   Refatorado e Otimizado
   ========================================================= */

/* --- 1. ESTRUTURA DO CARTÃO (CONTAINER) --- */
.wrapper-colorir .gpv-clean-card-wrapper {
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    padding: 30px !important;
    height: 100%;
}

/* --- 2. TIPOGRAFIA DO FORMULÁRIO --- */
#gpv-wrapper.wrapper-colorir .form-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #333 !important;
    margin-bottom: 5px !important;
    line-height: 1.2 !important;
}

#gpv-wrapper.wrapper-colorir .form-subtitle {
    font-size: 14px !important;
    color: #888 !important;
    font-weight: 400 !important;
    margin-bottom: 20px !important;
}

#gpv-wrapper.wrapper-colorir label {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #666 !important;
    margin-bottom: 6px !important;
    display: block !important;
}

/* --- 3. INPUTS (Override Flatsome) --- */
/* Seletor de alta especificidade para garantir o estilo Clean */
#gpv-wrapper.wrapper-colorir input:not([type="submit"]):not([type="button"]):not([type="file"]) {
    background-color: #f9fafa !important; /* Cinza claro */
    border: 1px solid #e1e4e8 !important;  /* Borda sutil */
    border-radius: 10px !important;
    height: 48px !important;
    color: #333 !important;
    box-shadow: none !important;
    padding: 0 15px !important;
    font-size: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    transition: all 0.2s ease !important;
}

/* Estado de Foco (Ciano) */
#gpv-wrapper.wrapper-colorir input:not([type="submit"]):not([type="button"]):not([type="file"]):focus {
    background-color: #fff !important;
    border-color: #2AC8D3 !important;
    box-shadow: 0 0 0 3px rgba(42, 200, 211, 0.15) !important;
}

/* --- 4. CORREÇÕES WHATSAPP (Intl-Tel-Input) --- */
#gpv-wrapper.wrapper-colorir .iti {
    width: 100% !important;
    display: block !important;
}

/* Garante espaço para a bandeira não cobrir o texto */
#gpv-wrapper.wrapper-colorir .iti input {
    padding-left: 90px !important;
}

#gpv-wrapper.wrapper-colorir .iti__flag-container {
    background: transparent !important;
    border: none !important;
}

/* --- 5. ÁREA DE UPLOAD --- */
#gpv-wrapper.wrapper-colorir .gpv-upload-zone.clean-zone {
    background-color: #fff !important;
    border: 2px dashed #2AC8D3 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

#gpv-wrapper.wrapper-colorir .gpv-upload-zone:hover {
    background-color: #f0fdff !important;
}

/* --- 6. BOTÕES --- */

/* Botão Principal (Gradiente Ciano/Roxo) */
#gpv-wrapper.wrapper-colorir .btn-primary-gradient {
    background: linear-gradient(90deg, #2AC8D3 0%, #8882EE 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(42, 200, 211, 0.3) !important;
    cursor: pointer !important;
    transition: transform 0.2s !important;
    text-align: center;
}

#gpv-wrapper.wrapper-colorir .btn-primary-gradient:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(42, 200, 211, 0.4) !important;
}

/* Botão Upsell Coleção (Verde) */
.wrapper-colorir .btn-collection {
    background: linear-gradient(90deg, #28a745, #20c997) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 20px !important;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    line-height: 1.2;
}

.wrapper-colorir .btn-collection:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.wrapper-colorir .btn-collection .main-text {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wrapper-colorir .btn-collection .sub-text {
    font-weight: 400;
    font-size: 11px;
    opacity: 0.9;
}

/* Grupo de Botões (Container) */
.wrapper-colorir .gpv-cta-group {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

/* --- 7. BADGES E UTILITÁRIOS --- */

/* Badge Flutuante "GRÁTIS" */
.gpv-floating-price.colorir-badge .gpv-price-label {
    background: #28a745 !important; /* Verde Sucesso */
}

.gpv-floating-price.colorir-badge .gpv-new .val {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #28a745 !important;
}

/* Separador "OU" */
.wrapper-colorir .gpv-separator {
    text-align: center;
    margin: 15px 0;
    position: relative;
    z-index: 1;
}
.wrapper-colorir .gpv-separator::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 100%;
    height: 1px;
    background: #e1e4e8;
    z-index: -1;
}
.wrapper-colorir .gpv-separator span {
    background: #fff;
    padding: 0 10px;
    color: #999;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Utilitário de Margem */
.wrapper-colorir .mt-10 { margin-top: 10px; }

/* Ajustes Mobile */
@media (max-width: 600px) {
    .wrapper-colorir .gpv-cta-group {
        padding-bottom: 20px;
    }
}

/* 1. Garante que o loading esteja visível quando ativado */
.gpv-step[data-step="1"]:not(.gpv-hidden) {
    display: block !important;
    animation: fadeIn 0.5s ease-in-out;
}

/* 2. Transição Full Mode para o Colorir (Igual ao Puzzle) */
/* Quando a classe .gpv-full-mode é adicionada ao pai .unified-product-row */

.unified-product-row.gpv-full-mode .product-gallery-col {
    /* Colapsa a coluna da esquerda */
    flex: 0 0 0% !important;
    max-width: 0% !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.unified-product-row.gpv-full-mode .col-form-container {
    /* Expande a coluna da direita (onde está o loading/resultado) */
    flex: 0 0 100% !important;
    max-width: 100% !important;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. Centraliza o Loading e o Resultado no meio da tela */
.unified-product-row.gpv-full-mode .gpv-clean-card-wrapper {
    max-width: 600px; /* Largura ideal para leitura */
    margin: 0 auto;
    float: none;
}

/* 4. Estilo do Texto de Loading */
.loading-text {
    font-size: 18px;
    color: #333;
    margin-top: 15px;
}

/* Animação simples de fade */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Garante que o loading e o resultado fiquem centralizados no modo Full */
.unified-product-row.gpv-full-mode .wrapper-colorir {
    max-width: 600px;
    margin: 0 auto;
    float: none;
}

/* Ajuste específico para o loading wrapper não ficar colado no topo */
.wrapper-colorir .loading-wrapper {
    padding: 60px 0 !important;
}

/* =========================================================
   8. REFINAMENTO DE HIERARQUIA & COMPARADOR (FIX FINAL)
   ========================================================= */

/* --- BOTÃO SOB MEDIDA (AÇÃO SECUNDÁRIA) --- */
/* Tira o peso visual (fundo branco, borda colorida) para não brigar com o Add to Cart */
#gpv-hero-wish-btn {
    background: #fff !important;
    border: 2px solid #8882EE !important; /* Roxo da marca */
    color: #8882EE !important;
    font-size: 13px !important; /* Fonte menor que o CTA principal */
    padding: 10px 20px !important; /* Menor que o CTA principal */
    font-weight: 700 !important;
    text-transform: none !important; /* Remove caixa alta agressiva */
    box-shadow: none !important;
    margin-top: 20px !important;
    transition: all 0.2s ease;
    border-radius: 12px !important; /* Quadrado arredondado, diferente da pílula principal */
}

#gpv-hero-wish-btn:hover {
    background: #f5f5ff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(136, 130, 238, 0.15) !important;
}

/* Texto de apoio (ex: "o herói favorito...") */
.gpv-hero-wish-sub {
    text-align: center !important;
    font-size: 12px !important;
    color: #888 !important;
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    font-style: italic;
}

/* Área do Formulário Sob Medida */
#gpv-hero-wish-form {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 12px;
    margin-top: 10px;
}

#gpv-hero-wish-text {
    font-size: 14px !important;
    background: #fff !important;
    margin-bottom: 10px !important;
}

/* Botão "Gerar" dentro do form (Roxo Sólido) */
#gpv-hero-wish-generate {
    background: #8882EE !important; /* Roxo sólido, sem gradiente do principal */
    border-radius: 8px !important;
    font-size: 13px !important;
    padding: 10px !important;
    width: 100%;
}

/* --- ELEMENTOS REMOVIDOS (Conforme solicitado) --- */
#gpv-hero-wish-cancel,
.gpv-hero-wish-hint {
    display: none !important;
}

/* --- BARRA DE COMPARAÇÃO (VISUAL MODERNO) --- */
#gpv-compare-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 50px; /* Pílula completa */
    padding: 6px 8px;
    margin: 15px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    max-width: 320px; /* Não ocupar a largura toda */
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 20;
}

/* Botões da Barra (< e >) */
#gpv-compare-prev,
#gpv-compare-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    color: #555;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#gpv-compare-prev:hover,
#gpv-compare-next:hover {
    background: #2AC8D3; /* Ciano no hover */
    color: #fff;
    box-shadow: 0 3px 10px rgba(42, 200, 211, 0.3);
}

/* Texto Central (Comparando: A vs B) */
#gpv-compare-label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-grow: 1;
    text-align: center;
}

/* Hint flutuante ("clique para comparar") */
#gpv-compare-hint {
    position: absolute;
    top: -25px;
    right: 0;
    background: #333;
    color: #fff;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}
/* Seta do hint */
#gpv-compare-hint::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 15px;
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #333;
}

/* Animação Pulse para chamar atenção */
.gpv-pulse {
    animation: gpvComparePulse 1.5s infinite;
    background-color: #2AC8D3 !important;
    color: #fff !important;
}

@keyframes gpvComparePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(42, 200, 211, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(42, 200, 211, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(42, 200, 211, 0); }
}

/* =========================================================
   FIX FINAL CONSOLIDADO: UI, PREVIEW & DESTRAVAMENTO
   Substitui todas as regras anteriores de toggle e fixes
   ========================================================= */

/* --- 1. NOVO CHECKBOX "CARD" (Substitui o Toggle) --- */

/* Container de segurança */
.gpv-wish-option-container {
    width: 100%;
    display: block;
    position: relative;
    margin-bottom: 20px;
    z-index: 10;
}

/* Esconde o input nativo sem quebrar acessibilidade */
.gpv-hidden-checkbox {
    position: absolute;
    width: 1px; height: 1px; margin: -1px; padding: 0;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
    opacity: 0; pointer-events: none;
}

/* O Card Visual (Botão clicável) */
.gpv-wish-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    padding: 16px 20px !important; /* Área de toque grande p/ mobile */
    width: 100%;
    
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    
    /* Previne seleção de texto e highlight azul no mobile */
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Elementos Internos */
.gpv-wish-icon { 
    display: flex; align-items: center; flex-shrink: 0; 
    font-size: 20px; color: #999; 
    transition: color 0.2s;
}
.gpv-wish-icon svg { 
    width: 24px; height: 24px; stroke: currentColor; 
}

.gpv-wish-text { 
    flex-grow: 1; display: flex; flex-direction: column; text-align: left; 
}
.wish-title { 
    font-size: 14px; font-weight: 700; color: #444; line-height: 1.2; display: block;
}

.gpv-wish-check .check-circle { 
    width: 22px; height: 22px; 
    border-radius: 50%; border: 2px solid #ddd; background: #fff; 
    transition: all 0.2s; position: relative; flex-shrink: 0; 
}

/* --- ESTADOS DE INTERAÇÃO --- */

/* Hover (Desktop) */
.gpv-wish-card:hover {
    border-color: #b0b0b0;
    background-color: #fcfcfc;
}

/* ESTADO SELECIONADO (CHECKED) */
.gpv-hidden-checkbox:checked + .gpv-wish-card {
    border-color: #2AC8D3 !important;
    background-color: #f0fdff !important;
    box-shadow: 0 0 0 2px rgba(42, 200, 211, 0.15);
}

/* Colore ícone e texto */
.gpv-hidden-checkbox:checked + .gpv-wish-card .gpv-wish-icon,
.gpv-hidden-checkbox:checked + .gpv-wish-card .wish-title {
    color: #2AC8D3;
}

/* Preenche a bolinha */
.gpv-hidden-checkbox:checked + .gpv-wish-card .check-circle {
    border-color: #2AC8D3; 
    background: #2AC8D3;
}

/* Desenha o "V" (Check) */
.gpv-hidden-checkbox:checked + .gpv-wish-card .check-circle::after {
    content: ''; position: absolute; 
    top: 5px; left: 8px; width: 3px; height: 8px;
    border: solid white; border-width: 0 2px 2px 0; 
    transform: rotate(45deg); display: block;
}

/* Ajuste Mobile para telas pequenas */
@media (max-width: 360px) {
    .gpv-wish-card { padding: 12px 10px !important; gap: 10px !important; }
    .wish-title { font-size: 13px; }
}


/* --- 2. CORREÇÃO CRÍTICA DE RENDERIZAÇÃO (IMAGEM/PREVIEW) --- */
/* Impede que o Flatsome colapse a altura da imagem para 0px */

#gpv-gallery-block {
    display: block !important;
    width: 100% !important;
    min-height: 250px !important; /* Reserva espaço físico */
    border-radius: 12px;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

#gpv-gallery-block img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    opacity: 1 !important;        /* Força visibilidade contra Lazy Load */
    visibility: visible !important;
    transform: none !important;   /* Remove animações que travam */
    border-radius: 12px;
}

/* Garante que o container pai (Step 2) esteja visível */
.gpv-step[data-step="2"] {
    height: auto !important;
    overflow: visible !important;
}
.gpv-step[data-step="2"]:not(.gpv-hidden) {
    display: block !important;
}

/* =========================================================
   FIX VISUAL: MODO FOCO (Estabilidade e Centralização)
   ========================================================= */

/* 1. Oculta seções periféricas quando o modo foco está ativo */
body.gpv-focus-active #section_1672235789, /* Topo Hero */
body.gpv-focus-active #section_978327080,  /* Banner/Qualidade */
body.gpv-focus-active #section_1715430989, /* FAQ */
body.gpv-focus-active .gpv-marketing-section, /* Textos acima do form */
body.gpv-focus-active #masthead, /* Opcional: Ocultar Header para imersão total */
body.gpv-focus-active #footer {  /* Opcional: Ocultar Footer */
    display: none !important;
}

/* 2. Ajusta a Seção Principal para ocupar a tela toda */
body.gpv-focus-active #section_460237835 {
    min-height: 100vh !important;
    padding: 20px 0 !important;
    display: flex !important;
    align-items: center !important; /* Centraliza Verticalmente */
    justify-content: center !important;
    background-color: #fff !important; /* Fundo limpo */
}

/* 3. Ajusta o container do conteúdo para centralizar */
body.gpv-focus-active #section_460237835 .section-content,
body.gpv-focus-active #section_460237835 .row {
    width: 100% !important;
    max-width: 1200px !important;
}

/* 4. Remove paddings excessivos do Wrapper quando em foco */
body.gpv-focus-active .unified-product-row {
    margin: 0 auto !important;
    /* Sombra mais suave para destacar no fundo branco */
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important; 
}

/* Ajuste Mobile para garantir que cabe na tela sem cortes */
@media (max-width: 849px) {
    body.gpv-focus-active #section_460237835 {
        align-items: flex-start !important; /* No mobile, alinha ao topo */
        padding-top: 20px !important;
    }
}

/* =========================================================
   FIX CRÍTICO: PREVIEW EM BRANCO (Altura Forçada)
   ========================================================= */

/* 1. Força a viewport do slider a ter altura, ignorando o JS 'height: 0px' */
.unified-product-row .flickity-viewport {
    height: auto !important;
    min-height: 500px !important; /* Altura segura para Desktop */
    transition: height 0.2s ease;
}

/* 2. Garante que as imagens dentro do slider sejam visíveis */
.unified-product-row .flickity-slider .img,
.unified-product-row .flickity-slider img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important; /* Remove transforms que podem ocultar */
    min-height: 100%;
}

/* 3. Ajuste para Mobile (Altura menor) */
@media (max-width: 849px) {
    .unified-product-row .flickity-viewport {
        min-height: 400px !important; /* Altura segura para Mobile */
    }
}

/* 4. Estilo do Botão de Fallback (Caso o JS falhe totalmente) */
#gpv-force-render-btn {
    display: none; /* Oculto por padrão */
    margin: 20px auto;
    background: #ff4d4f;
    color: white;
    z-index: 999;
    position: relative;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 77, 79, 0.4);
    animation: fadeIn 0.5s ease-in-out;
}