/* --- RAÍZES (Cores e Fontes Originais HACK) --- */
:root {
    --color-black: #000000;
    --color-dark-gray: #1a1a1a;
    --color-gray: #f4f4f4;
    --color-white: #ffffff;
    --color-red: #E60000;
    --color-red-glow: rgba(230, 0, 0, 0.7); 
    --color-purple: #6e2d91; 

    /* Fontes resetadas para Montserrat */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    text-transform: none; /* <-- Principal mudança */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: normal; /* <-- Segunda mudança */
}
/* Tamanhos de fonte restaurados */
h1 { 
    font-size: 4.5rem;
    line-height: 0.9;
} 
h2 { 
    font-size: 3.5rem; 
    color: var(--color-red); 
}
h3 { 
    font-size: 2rem; 
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #c0c0c0;
}

a {
    color: var(--color-red);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding-left: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* --- LOADER (Estilo do SINDCAN) --- */
/* (Seu código do loader começa aqui...) */
/* --- LOADER (Estilo do SINDCAN) --- */
.loader-wrap{
  position:fixed; inset:0; z-index:10000;
  display:grid; place-items:center;
  background:var(--color-black);
  opacity:1; transition:opacity .4s ease, visibility .4s ease;
  visibility:visible;
}
.loader-wrap.fade-out{opacity:0; pointer-events:none; visibility:hidden}
.loader-inner{text-align:center; width:fit-content}
.loader-logo img{
  width:150px; height:auto; object-fit:contain; animation:fadeIn .8s ease-out forwards;
}

/* --- INÍCIO DA ATUALIZAÇÃO DO LOADER --- */
.loader-bar{
  position:relative; 
  width:150px; 
  height:2px; /* <-- BARRA MAIS FINA (era 6px) */
  margin:21px auto 0; /* <-- MAIS DISTÂNCIA (era 8px) */
  border-radius:999px; 
  background:rgba(255,255,255,.15); 
  overflow:hidden;
}
/* --- FIM DA ATUALIZAÇÃO DO LOADER --- */

.loader-fill{
  position:absolute; inset:0; background:var(--color-red); /* Cor HACK */
  transform-origin:left; transform:scaleX(0); animation:fillLtoR 2.5s ease-in-out forwards;
}
@keyframes fillLtoR{0%{transform:scaleX(0)}100%{transform:scaleX(1)}}
@keyframes fadeIn{from{opacity:0; transform:translateY(6px)}to{opacity:1; transform:translateY(0)}}


/* --- ANIMAÇÃO FADE-IN (Estilo do SINDCAN) --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- BOTÃO CTA (Estilo do SINDCAN, Cores e Fontes HACK) --- */
.cta-button{
  background-color:var(--color-red); /* Cor HACK */
  color:var(--color-white); /* Cor HACK */
  padding:13px 22px; border-radius:8px; text-decoration:none;
  font-weight:700; border:none; cursor:pointer;
  display:inline-block; margin-top:20px; position:relative; overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 0 10px var(--color-red-glow); /* Cor HACK */
  /* Fontes HACK */
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Ícone dentro do botão (Estilo HACK original) */
.cta-button i {
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Efeito de brilho (cobrinha de luz) */
.cta-button::before{
  content:''; position:absolute; top:0; bottom:0; left:0; width:50%;
  background:linear-gradient(to right, transparent, rgba(255,255,255,.4), transparent);
  transform:translateX(-75%) skewX(-20deg);
  animation:moveLight 2.4s linear infinite;
  pointer-events:none; opacity:.85;
}

.cta-button:hover{
  transform:translateY(-3px);
  box-shadow:0 0 25px var(--color-red-glow); /* Cor HACK */
}

/* Animação que move a luz */
@keyframes moveLight{
  0%{transform:translateX(-75%) skewX(-20deg)}
  100%{transform:translateX(125%) skewX(-20deg)}
}

/* Botão Secundário (Estilo HACK Original) */
.cta-button.secondary {
    background-color: #E60000;;
    
    color: #ffffff;
}


/* --- HERO (Estilo do SINDCAN, adaptado para HACK) --- */
.hero{
  position:relative; width:100%; min-height:100vh;
  display:flex; align-items:center;
  padding: 100px 8% 100px 8%;
  background-image:url('img/bg-desktop.jpg');
  background-color: var(--color-black); /* Cor HACK */
  background-size:cover;
  background-position:right center;
  background-repeat:no-repeat;
}
.hero-headline{
  font-size: 3.0rem; /* Tamanho HACK original */
  color:var(--color-white); font-weight:700; margin-bottom:0;
  font-family: var(--font-secondary); /* Fonte HACK */
  text-transform: none; /* <-- CORRIGIDO */
  line-height: 1;

}
.hero-logo{max-width:120px; height:auto; margin-bottom:25px}
.hero-image-mobile{display:none} /* Esconde div da imagem mobile */
.hero-content{
  position:relative; z-index:2; max-width:600px; padding-left:0; margin-top:0; text-align:left;
  display:flex; flex-direction:column; align-items:flex-start; gap:16px;
}
.hero-description{
  font-size:1.3rem; /* Tamanho HACK original */
  color:var(--color-light-gray); line-height:1.6; margin-bottom:0; max-width:500px;
}
.hero-headline .highlight-hero {
    color: var(--color-red); /* Cor HACK */
}

/* --- NOVO: ESTILO DO PRE-TITLE --- */
.pre-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem; /* Ajuste o espaço se precisar */
}
.pre-title i {
    font-size: 1.2rem;
}


/* --- SEÇÃO PROBLEMA (Estilo do SINDCAN, Cor HACK, Borda Fina) --- */
#problema {
    background-color: #000000;
    padding: 6rem 0; /* Padding HACK Original */
}
.challenge-box {
    position: relative; 
    max-width: 650px; /* <--- LARGURA AJUSTADA */
    margin: 0 auto;
    padding: 2px; /* Espessura fina da borda */
    border-radius: 16px;
    overflow: hidden; 
}

/* --- CORREÇÃO DEFINITIVA: Feixe de luz que não cruza 0/360 --- */
.challenge-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 1;
    /*
      Este feixe existe entre 20 e 90 graus.
      Ele tem um fade-in (20-45deg) e um fade-out (45-90deg).
      Como ele termina em 90deg e só recomeça em 20deg (após a volta),
      ele NUNCA vai cruzar a linha 0/360 e criar o bug das "duas cobras".
    */
    background: conic-gradient(
        from 0deg,
        transparent 0deg,             /* Início transparente */
        transparent 20deg,            /* Permanece transparente */
        var(--color-red-glow) 40deg,  /* Começa o fade-in */
        var(--color-red) 65deg,       /* Ponto de brilho máximo */
        var(--color-red-glow) 90deg,  /* Começa o fade-out */
        transparent 110deg,           /* Termina o fade-out */
        transparent 360deg            /* Resto do círculo transparente */
    );
    animation: rotate-border 4s linear infinite; /* Aumentei a velocidade um pouco */
}

.challenge-box-content {
    position: relative;
    z-index: 2;
    background-color: #000000; /* Fundo igual ao da seção */
    border-radius: 14px; 
    padding: 50px 40px;
    text-align: center;
}

/* --- ESTILO DO ÍCONE DE RAIO (NOVA REGRA) --- */
.hack-quote-icon {
    font-size: 2.5rem; /* Tamanho do ícone */
    color: var(--color-red); /* Cor vermelha HACK */
    margin-bottom: 1.5rem; /* Espaço entre o ícone e a citação */
    display: block; /* Garante que fique em sua própria linha */
    text-align: center; /* Garante centralização */
}

/* Citação HACK */
.hack-quote {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    line-height: 1.4;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
   text-transform: none;
}
@keyframes rotate-border {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- TÍTULO DA SEÇÃO BENEFÍCIOS (NOVO E CORRIGIDO) --- */
.benefits-title {
    /* 1. FAZ O TÍTULO OCUPAR A LARGURA TOTAL DO GRID */
    grid-column: 1 / -1; 
    
    /* 2. Centraliza o conteúdo (seta abaixo do texto) */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem; /* Espaço antes dos cards */
}

.benefits-title span {
    color: var(--color-white); /* Cor Branca (padrão) */
    font-size: 2rem; /* Tamanho maior */
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

/* Nova regra para a palavra em vermelho */
.benefits-title .highlight-red {
    color: var(--color-red);
}

.benefits-title i {
    color: var(--color-red); /* Cor do ícone */
    font-size: 2.5rem; /* Tamanho do ícone */
    margin-top: 0.5rem;
}

/* --- SEÇÃO BENEFÍCIOS (Layout Original HACK) --- */

/* 1. FUNDO E POSIÇÃO ADICIONADOS À SEÇÃO */
/* (As regras de mobile .benefits-title foram REMOVIDAS daqui) */

/* --- INÍCIO DA ATUALIZAÇÃO DE ESPAÇAMENTO --- */
.benefits {
    position: relative;
    background-image: url('img/benefits-bg-desktop.jpg'); /* <-- ADICIONE SUA IMAGEM DESKTOP */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Override do 'section' para diminuir o topo */
    padding: 3rem 0 6rem; /* (Topo: 3rem) (Lados: 0) (Baixo: 6rem) */
}
/* --- FIM DA ATUALIZAÇÃO DE ESPAÇAMENTO --- */


/* 2. GRID 2x2 CENTRALIZADO NO DESKTOP */
.benefits .container {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 400px)); /* Força 2 colunas */
    gap: 2rem;
    justify-content: center; /* Centraliza o grid */
}

/* --- INÍCIO DA ATUALIZAÇÃO DOS CARDS --- */

/* 3. ESTILO DOS CARDS DE BENEFÍCIO (AGORA COMO IMAGEM) */
.benefit-item {
    /* Removemos estilos de card (padding, fundo, borda) */
    background-color: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
    text-align: left; /* Reset */
    
    /* Mantemos o efeito de "subir" no container */
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Nova regra para a imagem dentro do card */
.benefit-item img {
    max-width: 100%;
    height: auto;
    display: block;
    
    /* REQUERIMENTO 1: Cantos arredondados */
    border-radius: 20px; 
    
    /* REQUERIMENTO 2 (MUDANÇA): Opacidade volta ao normal */
    opacity: 1;
    
    /* REQUERIMENTO 2 (MUDANÇA): Adiciona o brilho 100% (normal) */
    filter: brightness(100%);
    
    /* Adiciona transição suave para o filtro */
    transition: filter 0.3s ease;
}

.benefit-item:hover {
    /* Mantém o efeito de "subir" */
    transform: translateY(-10px);
    z-index: 3; 
}

/* REQUERIMENTO 2 (MUDANÇA): Imagem "brilha mais" (brightness) no hover */
.benefit-item:hover img {
    filter: brightness(120%); /* <-- Aumenta o brilho da imagem */
}

/* --- FIM DA ATUALIZAÇÃO DOS CARDS --- */


/* --- INÍCIO DA ATUALIZAÇÃO SCARCITY-NOTE --- */
.scarcity-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.0rem;   /* <-- Alterado de 1.2rem */
    font-weight: 400; /* <-- Alterado de 700 (bold) para 400 (normal) */
}
/* --- FIM DA ATUALIZAÇÃO SCARCITY-NOTE --- */

/* --- SEÇÃO PRODUTO (Layout Original HACK) --- */

/* --- INÍCIO DA ATUALIZAÇÃO DO PRODUTO --- */
.product {
    background-color: var(--color-dark-gray); /* Cor de fallback */
    
    /* Adicionando background desktop */
    background-image: url('img/produtodesktop.jpg'); /* ADICIONE SUA IMAGEM AQUI */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.product-image img {
    border-radius: 8px;
    visibility: hidden; /* <-- OCULTA A IMAGEM SEM QUEBRAR O LAYOUT */
}
/* --- FIM DA ATUALIZAÇÃO DO PRODUTO --- */

.product-info h2 {
    margin-bottom: 1rem;
}
.product-info h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}
.flavors {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}
.flavor {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
}
.flavor.red {
    background-color: var(--color-red);
    color: var(--color-white);
}
.flavor.purple {
    background-color: var(--color-purple);
    color: var(--color-white);
}
.product-info ul {
    margin: 1.5rem 0;
}
.product-info li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #c0c0c0;
}
.product-info li i {
    font-size: 1.5rem;
    color: var(--color-red);
    margin-right: 0.75rem;
}

/* --- SEÇÃO KIT LANÇAMENTO (Layout Original HACK) --- */
.kit {
    text-align: center;
}
.kit-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background-color: var(--color-purple);
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}
.kit h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}
.kit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: left;
    margin-top: 4rem;
}
.kit-image img {
    border-radius: 8px;
}
.kit-details h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

/* --- INÍCIO DA ATUALIZAÇÃO DO KIT (LAYOUT) --- */
.kit-details ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no desktop */
    gap: 1rem; /* Espaço entre os itens */
    margin-bottom: 2rem;
}

.kit-details li {
    font-size: 1.2rem;
    margin-bottom: 0; /* Removido - 'gap' agora controla o espaço */
    display: flex;
    align-items: center;
}
/* --- FIM DA ATUALIZAÇÃO DO KIT --- */

.kit-details li i {
    font-size: 1.8rem;
    color: var(--color-red);
    margin-right: 1rem;
    min-width: 30px;
}

/* --- SEÇÃO PROVA SOCIAL (Layout Original HACK) --- */
.social-proof {
    background-color: var(--color-dark-gray);
    text-align: center;
}
.social-proof blockquote {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    line-height: 1.4;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    border-left: 5px solid var(--color-red);
    padding-left: 2rem;
    text-align: left;
}
.social-proof span {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--color-red);
    letter-spacing: 2px;
}

/* --- SEÇÃO CTA FINAL (Layout Original HACK) --- */
.final-cta {
    background-color: var(--color-dark-gray);
    text-align: center;
}
.final-cta h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}
.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* --- FOOTER (Layout Original HACK) --- */
.footer {
    background-color: #000;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--color-dark-gray);
}
.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}


/* --- RESPONSIVO (Mobile) --- */
@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.8rem; }

    section {
        padding: 4rem 0;
    }
    
    #problema {
        padding: 4rem 0; /* Ajusta padding da nova seção */
    }

    .container {
        padding: 0 1rem;
    }

/* --- INÍCIO DA SUBSTITUIÇÃO --- */
/* Cole isso dentro do seu @media (max-width: 768px) { ... } */

  .hero{
    min-height:auto; 
    background-image:none; 
    background-color:transparent; /* Corrigido do SINDCAN */
    padding:0; 
    display:block;
  }
  
  /* --- ATUALIZAÇÃO DO BOTÃO DO HERO --- */
  .hero-image-mobile{
    display:block; 
    width:100%; 
    height:auto; 
    padding-bottom:90%; /* <-- AJUSTE DE ALTURA (era 100%) */
    background-image:url('img/bg-mobile.jpg'); /* Imagem do HACK */
    background-size:cover; 
    background-position:center; 
    position:relative;
  }
  /* --- FIM DA ATUALIZAÇÃO DO BOTÃO --- */
  
  .hero-logo{
    display:block; 
    position:relative; 
    max-width:180px; 
    z-index:4;
    margin-top:-150px; /* <-- Puxa o logo para cima da imagem */
    margin-bottom:20px; 
    margin-left:auto; 
    margin-right:auto;
  }
  
 .hero-content {
    max-width: 100%; 
    padding: 0px 13px 40px; 
    margin-top: 0; 
    position: relative; 
    z-index: 3; 
    border-radius: 0;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    gap: 1rem;

    /* --- ADICIONE AS LINHAS ABAIXO --- */

    /* 1. Esta é a cor preta que fica por baixo */
    background-color: var(--color-black); 

    /* 2. Esta é a sua imagem nova, que fica por cima */
    background-image: url('img/mob2.png'); /* <-- TROQUE PELO NOME DA SUA IMAGEM */

    /* 3. Ajustes para a imagem */
    background-position: top center;  /* Alinha a imagem no topo */
    background-repeat: no-repeat; /* Para a imagem não se repetir */
    background-size: 100% auto;   /* Faz a imagem ocupar 100% da largura */
    
    /* --- FIM DAS LINHAS --- */
  }

/* --- FIM DA SUBSTITUIÇÃO --- */


    /* --- INÍCIO DA ATUALIZAÇÃO DE ESPAÇAMENTO --- */
    .benefits {
        background-image: url('img/benefits-bg-mobile.jpg'); /* <-- ADICIONE SUA IMAGEM MOBILE */
        
        /* Override do 'section' para diminuir o topo */
        padding: 2rem 0 4rem; /* (Topo: 2rem) (Lados: 0) (Baixo: 4rem) */
    }
    /* --- FIM DA ATUALIZAÇÃO DE ESPAÇAMENTO --- */


    .benefits .container {
        display: block; /* Desliga o grid do desktop */
        gap: 0;         /* Zera o gap do desktop */
    }

    .benefit-item {
        width: 90%;
        /* Zera margens, centraliza (auto) e dá 1.5rem de espaço embaixo */
        margin: 0 auto 1.5rem auto; 
    }
    
    /* Limpa qualquer regra de overlap que possa ter sobrado */
    .benefit-item + .benefit-item {
        margin-top: 0; 
    }
    
    /* --- FIM BENEFÍCIOS --- */

    /* AJUSTES DO TÍTULO DE BENEFÍCIOS (Mobile) */
    .benefits-title span {
        font-size: 1.8rem;
    }
    .benefits-title i {
        font-size: 2.2rem;
    }
    
    .hero-headline{
        font-size:2.3rem; /* Fonte HACK */
        text-align:center;
    }
    .hero-description{
        font-size:0.8rem; /* Fonte HACK */
        text-align:center; 
        margin-bottom:-15px; 
        max-width:90%
    }
    .cta-button{
        width:100%; 
        text-align:center; 
        padding:18px 30px; 
        font-size:0.9rem; /* Fonte HACK */
    }
    
    /* Citação HACK Mobile */
    .hack-quote {
        font-size: 1.8rem;
    }
    .hack-quote-icon {
        font-size: 2rem; /* Ícone um pouco menor no mobile */
        margin-bottom: 1rem;
    }
    .challenge-box-content {
        padding: 30px 20px;
    }

    /* --- RESPONSIVO SEÇÕES HACK ORIGINAIS --- */
    
    /* --- INÍCIO ATUALIZAÇÃO PRODUTO MOBILE --- */
    .product {
        /* 1. Remove a imagem de background mobile */
        background-image: none; 
        /* 2. Restaura a cor de fundo original */
        background-color: var(--color-dark-gray);
        /* 3. Remove o padding da seção para a imagem ir de ponta a ponta */
        padding: 0; 
    }

    /* 4. Remove o padding do container para a imagem ir de ponta a ponta */
    .product .container {
        padding: 0;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }

    /* 5. Remove o margin-bottom da imagem */
    .product-image {
        margin-bottom: 0;
    }

    /* 6. Torna a imagem (hack-flavors.png) visível e remove bordas */
    .product-image img {
        visibility: visible;
        border-radius: 0; /* Garante que a imagem não tenha cantos */
    }

    /* 7. Estiliza o bloco de texto para sobrepor */
    .product-info {
        padding: 2.5rem 1rem 1.5rem; /* Adiciona padding interno (Topo, Lados, Baixo) */
        margin-top: -3rem; /* Puxa o bloco para cima */
        background-color: var(--color-dark-gray); /* Adiciona fundo sólido */
        border-radius: 20px 20px 0 0; /* Arredonda os cantos superiores */
        position: relative; /* Garante a sobreposição */
        z-index: 2;
    }
    /* --- FIM ATUALIZAÇÃO PRODUTO MOBILE --- */


    .kit-content {
        grid-template-columns: 1fr;
    }
    
    /* --- ATUALIZAÇÃO ADICIONADA PARA O KIT MOBILE --- */
    .kit-details ul {
        grid-template-columns: 1fr; /* Coluna única no mobile */
        gap: 0.8rem;
    }
    /* --- FIM DA ATUALIZAÇÃO --- */

    .kit-image {
        margin-bottom: 2rem;
    }

    .social-proof blockquote {
        font-size: 1.8rem;
    }
}

/* --- RESPONSIVO (TABLET / NOTEBOOK PEQUENO) (do SINDCAN) --- */
@media (min-width: 769px) and (max-width: 1400px) {
  .hero {
    padding-left: 8%;
    padding-right: 4%;
  }
  .hero-headline {
    font-size: 2.5rem; /* Fonte HACK */
  }
  .hero-content {
    max-width: 500px;
  }
}

/* --- RESPONSIVO (TELAS MUITO LARGAS) (do SINDCAN) --- */
@media (min-width: 1600px) {
  .hero {
    padding: 100px 8% 100px 16%;
  }
  .hero-headline {
    font-size: 4.5rem;
}
}

/* --- ESTILOS DA PÁGINA DE CHECKOUT --- */

.body-checkout {
    background-color: var(--color-black); /* */
    padding-bottom: 4rem;
}

.checkout-header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-dark-gray); /* */
    text-align: center;
}

.checkout-logo {
    width: 120px;
    margin: 0 auto;
}

.checkout-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr; /* Coluna da esquerda maior */
    gap: 2rem;
}

.checkout-form {
    color: var(--color-white); /* */
}

.checkout-form h2 {
    color: var(--color-white); /* */
    border-bottom: 1px solid var(--color-dark-gray); /* */
    padding-bottom: 0.5rem;
    margin: 2rem 0 1.5rem 0;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    background-color: var(--color-dark-gray); /* */
    border: 1px solid #444;
    color: var(--color-white); /* */
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary); /* */
    transition: border-color 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-red); /* */
    box-shadow: 0 0 10px var(--color-red-glow); /* */
}

/* --- Estilos do Resumo (Lateral) --- */
.checkout-summary {
    background-color: var(--color-dark-gray); /* */
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #2e2e2e;
    height: fit-content; /* Faz o card ter a altura do conteúdo */
}

.checkout-summary h2 {
    color: var(--color-white); /* */
    margin-top: 0;
    border-bottom: 1px solid #444;
    padding-bottom: 1rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
}

.summary-item img {
    width: 80px;
    border-radius: 8px;
    border: 1px solid #444;
}

.summary-item .item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.summary-item .item-title {
    font-weight: 700;
}
.summary-item .item-qty {
    font-size: 0.9rem;
    color: var(--color-gray); /* */
}

.summary-item .item-price {
    font-weight: 700;
    font-size: 1.1rem;
}

.summary-total {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.summary-total div {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
}

.summary-total .total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white); /* */
}

/* --- Estilos do Pagamento --- */
.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.payment-options input[type="radio"] {
    display: none; /* Esconde o radio button feio */
}
.payment-label {
    background-color: #222;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.payment-label i {
    font-size: 1.3rem;
}

.payment-options input[type="radio"]:checked + .payment-label {
    border-color: var(--color-red); /* */
    background-color: var(--color-dark-gray); /* */
    color: var(--color-white); /* */
}

/* Esconde campos do cartão por padrão (você precisaria de JS para mostrar) */
/* #credit-card-fields {
    display: none; 
} */


/* --- RESPONSIVO (Mobile) --- */
@media (max-width: 900px) {
    .checkout-container {
        grid-template-columns: 1fr; /* Empilha as colunas */
    }

    .checkout-summary {
        order: -1; /* Joga o resumo para o topo no mobile */
        margin-bottom: 2rem;
    }
}

/* ... (Seu código existente do loader) ... */

/* --- CORREÇÃO DO TEXTO DO LOADER --- */
.loader-text {
    color: #aaa; /* Cor mais suave e "clean" */
    font-weight: 400; /* "Fino" */
    font-size: 0.9rem; /* "Pequeno" */
    margin-top: 1.2rem; /* Distância limpa (em baixo) */
    animation: fadeIn .8s ease-out forwards;
}

/* ... (O resto do seu CSS existente) ... */


/* --- ESTILOS DOS CHECKBOXES MODERNOS (para checkout.html) --- */
/* --- (Versão com Quadrados Arredondados) --- */

.product-options {
    margin-bottom: 1.5rem;
}

.product-choice {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem; /* Espaço entre as opções */
    cursor: pointer;
}

.product-choice input[type="radio"] {
    /* Esconde o radio button padrão */
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.product-choice label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    padding-left: 30px; /* Espaço para o checkbox customizado */
    margin-bottom: 0; /* Remove margin-bottom padrão de labels */
    font-size: 1.1rem;
    color: #c0c0c0; /* Cor do texto padrão */
    transition: color 0.2s ease;
}

.product-choice:hover label {
    color: var(--color-white); /* Cor do texto ao passar o mouse */
}

/* O Quadrado (::before é a borda) */
.product-choice label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #444; /* Borda cinza do quadrado */
    border-radius: 4px; /* <-- CANTOS ARREDONDADOS */
    background-color: transparent;
    transition: all 0.2s ease;
}

/* Estado Selecionado (Preenche o quadrado) */
.product-choice input[type="radio"]:checked + label::before {
    border-color: var(--color-red); /* Borda vermelha */
    background-color: var(--color-red); /* <-- PREENCHIMENTO VERMELHO */
}

/* Opcional: faz o texto ficar branco quando selecionado */
.product-choice input[type="radio"]:checked + label {
    color: var(--color-white);
    font-weight: 700;
}

/* Responsivo para os checkboxes, se necessário */
@media (max-width: 768px) {
    .product-choice {
        font-size: 1rem;
    }
    .product-choice label::before,
    .product-choice label::after {
        width: 18px;
        height: 18px;
    }
    .product-choice label::after {
        left: 5px;
        width: 8px;
        height: 8px;
    }
}

/* --- ESTILOS DO SELETOR DE KIT --- */
.kit-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: -2rem; /* Puxa o conteúdo de baixo para perto */
}

.kit-choice input[type="radio"] {
    display: none; /* Esconde o radio button feio */
}

.kit-choice label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #222;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #aaa;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kit-choice label i {
    font-size: 1.3rem;
}

.kit-choice:hover label {
    color: var(--color-white);
    border-color: #666;
}

.kit-choice input[type="radio"]:checked + label {
    border-color: var(--color-red);
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    box-shadow: 0 0 10px var(--color-red-glow);
}

/* --- EFEITO DE TRANSIÇÃO PARA TROCA --- */
/* Adiciona transição suave à imagem e à lista */
#kit-dynamic-image,
#kit-dynamic-list {
    transition: opacity 0.3s ease-in-out;
}

/* Classe que o JS vai usar para "apagar" o conteúdo antes de trocar */
.kit-content-updating {
    opacity: 0;
}


/* Responsivo para os seletores */
@media (max-width: 768px) {
    .kit-options {
        gap: 0.5rem;
        margin-bottom: -1rem;
    }
    .kit-choice label {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }
}