/* ======================================= */
/* 0. CONFIGURAÇÃO GERAL E VARIÁVEIS       */
/* ======================================= */

:root {
    --color-primary: #FF6600;
    --color-dark: #000000;
    --color-dark-accent: #000000;
    --color-light: #FFFFFF;
    
    --color-text-dark-bg: #e0e0e0;
    --color-text-light-bg: #121212;
    --color-text-light-p: #aaaaaa;
    --color-text-light-h: #FFFFFF;

    --font-primary: 'Outfit', sans-serif;
    --transition-speed: 0.3s ease;

    /* Cores do Loader (do site de referência) */
    --gold: #FF6600; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    font-weight: 300;
    background-color: var(--color-dark);
    color: var(--color-text-dark-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ======== LOADER (DO SITE DE REFERÊNCIA) ======== */
.loader-wrap{
  position:fixed; inset:0; z-index:10000;
  display:grid; place-items:center;
  background:var(--color-dark); /* Fundo escuro */
  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: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loader-logo {
    /* Estilo para o logo em texto */
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    animation:fadeIn .8s ease-out forwards;
}
.loader-bar{
  position:relative; width:150px; height:2px; margin:8px auto 0;
  border-radius:999px; background:rgba(255,255,255,.15); overflow:hidden;
}
.loader-fill{
  position:absolute; inset:0; background:var(--gold);
  transform-origin:left; transform:scaleX(0); animation:fillLtoR 2s ease-in-out forwards;
}
.loader-text{margin-top:10px; color:rgba(255,255,255,.85); animation:fadeIn .8s ease-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)}}
/* ======== FIM DO LOADER ======== */


/* ======================================= */
/* 1. COMPONENTES REUTILIZÁVEIS            */
/* ======================================= */

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-padding {
    /* [AJUSTE] Reduzido para economizar espaço em mobile/tablet */
    padding: 2.5rem 0;
}

/* Animação */
.section-padding {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--transition-speed), transform 0.6s var(--transition-speed);
}
.section-padding.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.text-center {
    text-align: center;
}

.section-light {
    background-color: var(--color-light);
    color: var(--color-text-light-bg);
}

.bg-dark-accent {
    background-color: var(--color-dark-accent);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem; /* [AJUSTE] Reduzido */
    line-height: 1.2;
    color: var(--color-text-light-h);
}
.section-light .section-title {
    color: var(--color-text-light-bg);
}

/* === ATUALIZADO (para o FAQ) === */
.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light-p);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 2rem; /* [AJUSTE] Reduzido para 2rem (32px) */
}

.section-subtitle-light {
    font-size: 1.2rem;
    font-weight: 400;
    color: #444;
    margin-bottom: 0rem;
    line-height: 1.4rem;
}

.section-text {
    font-size: 1rem;
    margin-bottom: 0.8rem; /* [AJUSTE] Reduzido */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-light-p);
    font-weight: 300;
}
.section-light .section-text {
    color: #555;
}

.mb-2-5 {
    margin-bottom: 2rem; /* [AJUSTE] Reduzido */
}

/* === Início do Bloco do Botão === */

.cta-button {
    display: inline-block;
    padding: 0.8rem 2.2rem; /* [AJUSTE] Reduzido o padding */
    background-color: var(--color-primary);
    color: var(--color-light);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 15px;
    margin-top: 1.2rem; /* [AJUSTE] Reduzido */
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);

    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

/* === ATUALIZADO: Efeito Glare (Feixe de Luz) === */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; 
    width: 75%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.521) 50%, /* Brilho levemente mais intenso */
        transparent 100%
    );
    transform: skewX(-25deg); 
    
    /* === ATUALIZADO: Animação mais rápida e opacidade maior === */
    animation: subtle-glare 3.5s linear infinite; /* 3.5s (um pouco mais rápido) */
    opacity: 0.7; /* Opacidade base maior para ser mais visível */
}

/* === ATUALIZADO: Keyframes com maior opacidade === */
@keyframes subtle-glare {
    0% {
        left: -100%;
        opacity: 0.4; /* Começa mais notável */
    }
    25% { 
        opacity: 0.7; /* Pico de opacidade maior */
    }
    50% {
        left: 100%;
        opacity: 0.4; /* Desaparece mais notável */
    }
    75% { 
        left: -100%;
        opacity: 0;
    }
    100% {
        left: -100%;
        opacity: 0.4; /* Reinicia o ciclo */
    }
}


.cta-button:hover::before {
    /* Ao hover, o brilho passa mais rápido e forte, parando o loop */
    animation: none; /* Desativa a animação em loop */
    left: 100%; /* Inicia a transição do hover */
    transition: left 0.8s ease; /* Adiciona a transição de volta para o hover */
    opacity: 1; /* Aumenta a opacidade para o hover */
}
/* === Fim do Bloco do Botão === */
/* ======================================= */
/* 2. HEADER E FOOTER                      */
/* ======================================= */

.site-footer {
    padding: 2rem 0; /* [AJUSTE] Reduzido */
    background-color: var(--color-dark-accent);
    color: #777;
    text-align: center;
    border-top: 1px solid #333;
}

.site-footer p {
    margin-bottom: 0.4rem; /* [AJUSTE] Reduzido */
}

.site-footer .disclaimer {
    font-size: 0.8rem;
    color: #555;
    max-width: 800px;
    margin: 0.8rem auto 0; /* [AJUSTE] Reduzido */
}

/* ======================================= */
/* 3. SEÇÃO HERO (#hero) - LAYOUT MOBILE   */
/* ======================================= */

#hero {
    padding: 0; 
    background-color: var(--color-dark); /* Fundo escuro por padrão */
    overflow: hidden; 
}

/* Layout mobile */
.hero-grid {
    display: flex;
    flex-direction: column;
}

.hero-image-wrapper {
    order: 1;
}

.hero-main-image {
    width: 100vw;
    margin: -5px calc(50% - 50vw);
    max-height: 580px;
    object-fit: cover;
    margin-bottom: -246px; /* [AJUSTE] Puxa a imagem mais para cima no texto */
}

.hero-content {
    order: 2;
    text-align: center;
    padding: 1% 0; 
    position: relative;
    z-index: 2;
    background-color: transparent; 
    margin-left: 20px;
    margin-right: 20px;
}

#hero .container {
    width: 100%;
    padding: 0;
}

#hero .hero-content .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.4rem; /* [AJUSTE] Reduzido */
    color: var(--color-text-light-h); /* Cor de texto clara para fundo escuro */
    line-height: 2rem;
}

.hero-subtitle {
    font-size: 1.1rem; /* [AJUSTE] Reduzido para 1.1rem */
    margin-bottom: 0rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-dark-bg); /* Cor de texto clara */
    font-weight: 400;
     line-height: 1.5rem;
}

/* ======================================= */
/* 4. SEÇÃO SOLUÇÃO (#solucao)             */
/* ======================================= */

/* === ATUALIZADO: Remove padding top no mobile === */
#solucao.section-padding {
    padding-top: 1.5rem; /* [AJUSTE] Adicionado padding mínimo */
    padding-bottom: 2.5rem; /* [AJUSTE] Reduzido */
}

#problema.section-padding {
    padding-top: 4.5rem; /* [AJUSTE] Reduzido */
    padding-bottom: 4.5rem; /* [AJUSTE] Reduzido */
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* [AJUSTE] Reduzido o gap */
}

.solution-image img {
    /* Estilos originais */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    
    /* === ATUALIZADO: Imagem full-width no mobile === */
    width: 100vw;
    margin: 0 calc(50% - 50vw); /* Técnica para "escapar" do container */
    max-width: none; /* Remove a restrição de max-width */
    border-radius: 0; /* Remove bordas para ficar edge-to-edge */
}

.benefits-stacked-list {
    margin-top: 1rem; /* [AJUSTE] Reduzido */
}

.benefit-item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0.2rem 1rem;
    align-items: center;
    margin-bottom: 1rem; /* [AJUSTE] Reduzido */
    text-align: left;
}

/* === ATUALIZADO: Estilo do ícone SVG === */
.benefit-icon {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 28px;
    height: 28px;
    fill: var(--color-primary);
}

.benefit-title {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-size: 1.05rem; /* [AJUSTE] Reduzido */
    font-weight: 700;
    color: var(--color-light);
}

.benefit-description {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    font-size: 0.9rem; /* [AJUSTE] Reduzido */
    font-weight: 300;
    color: var(--color-text-light-p);
    margin-top: 0.1rem; /* [AJUSTE] Reduzido */
    padding-left: calc(28px + 1rem); /* Ajustado para o novo tamanho do ícone */
}

/* ======================================= */
/* 5. SEÇÃO AUTORIDADE (#autoridade)       */
/* ======================================= */

.authority-grid {
    display: flex;
    flex-direction: column; 
    gap: 1.5rem; /* [AJUSTE] Reduzido */
    margin-top: 2rem; /* [AJUSTE] Reduzido */
}

.authority-item {
    padding: 1.2rem; /* [AJUSTE] Reduzido */
   
    border-radius: 10px;
    background: #121212; /* Um pouco mais claro que o fundo */
    
}

/* === NOVO: Estilo para ícones SVG === */
.authority-icon {
    width: 50px; /* [AJUSTE] Reduzido */
    height: 50px; /* [AJUSTE] Reduzido */
    margin: 0 auto 0.8rem; /* [AJUSTE] Reduzido */
    fill: var(--color-primary); /* Cor do ícone */
}

.authority-item h3 {
    font-size: 1.2rem; /* [AJUSTE] Reduzido */
    margin-bottom: 0.4rem; /* [AJUSTE] Reduzido */
    color: var(--color-primary);
    font-weight: 700;
}
.authority-item p {
    color: var(--color-text-light-p);
    font-weight: 300;
    font-size: 0.95rem; /* [AJUSTE] Reduzido */
}

/* ======================================= */
/* 6. SEÇÃO DEPOIMENTOS (ESTILO GOOGLE)    */
/* ======================================= */

.testimonial-grid-google {
    display: grid;
    /* Cria colunas responsivas: 
       - Mínimo de 300px
       - Máximo de 1fr (ocupa espaço igual)
       - O 'auto-fit' faz com que elas se ajustem
    */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem; /* [AJUSTE] Reduzido */
    text-align: left;
    margin-top: 2rem; /* [AJUSTE] Reduzido */
}

.testimonial-card {
    background: #121212; /* Cor de fundo do card */
    border: 1px solid #333; /* Borda sutil */
    border-radius: 10px;
    padding: 1.2rem; /* [AJUSTE] Reduzido */
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px; /* [AJUSTE] Reduzido */
    margin-bottom: 0.8rem; /* [AJUSTE] Reduzido */
}

.card-avatar {
    width: 35px; /* [AJUSTE] Reduzido */
    height: 35px; /* [AJUSTE] Reduzido */
    border-radius: 50%;
    background: var(--color-dark-accent);
    fill: var(--color-text-light-p);
    padding: 6px; /* [AJUSTE] Reduzido */
    box-sizing: border-box; /* Garante que o padding não aumente o tamanho */
}

.card-author-info {
    display: flex;
    flex-direction: column;
}

.card-author-name {
    font-weight: 700;
    color: var(--color-light);
    font-size: 0.95rem; /* [AJUSTE] Reduzido */
}

.card-review-time {
    font-size: 0.8rem; /* [AJUSTE] Reduzido */
    color: var(--color-text-light-p);
}

.card-stars {
    display: flex;
    gap: 3px; /* [AJUSTE] Reduzido */
    color: var(--color-primary);
    margin-bottom: 0.8rem; /* [AJUSTE] Reduzido */
}

.card-stars svg {
    width: 16px; /* [AJUSTE] Reduzido */
    height: 16px; /* [AJUSTE] Reduzido */
    fill: currentColor;
}

.card-body p {
    font-size: 0.9rem; /* [AJUSTE] Reduzido */
    color: var(--color-text-dark-bg);
    line-height: 1.6;
}


/* ======================================= */
/* 7. SEÇÃO OFERTA (INTERATIVA) [#oferta]  */
/* ======================================= */

/* Esconde o radio button real */
.kit-selector-input {
    display: none;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stacking no mobile por padrão */
    gap: 0.8rem; /* [AJUSTE] Reduzido */
    text-align: left;
    max-width: 1000px;
    margin: 1.5rem auto 0; /* [AJUSTE] Reduzido */
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center; 
    margin-top: -1rem;
}

.step-title.mobile-only {
    display: block; /* Visível no mobile */
    text-align: center;
}

.offer-selectors {
    display: flex;
    flex-direction: column;
    gap: 0.8rem; /* [AJUSTE] Reduzido */
}

.offer-option-wrapper {
    position: relative; /* Para o badge */
}

.offer-option {
    display: flex;
    align-items: center;
    gap: 0.8rem; /* [AJUSTE] Reduzido */
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.9rem; /* [AJUSTE] Reduzido */
    cursor: pointer;
    transition: var(--transition-speed);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.offer-option:hover {
    border-color: #ccc;
    transform: translateY(-2px);
}

/* --- Estilo do "Radio" Falso --- */
.offer-radio-icon {
    width: 20px; /* [AJUSTE] Reduzido */
    height: 20px; /* [AJUSTE] Reduzido */
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition-speed);
}
/* Círculo interno */
.offer-radio-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0); /* Começa invisível */
    width: 10px; /* [AJUSTE] Reduzido */
    height: 10px; /* [AJUSTE] Reduzido */
    border-radius: 50%;
    background: var(--color-primary);
    transition: var(--transition-speed);
}

/* --- Estado Selecionado --- */
.kit-selector-input:checked + .offer-option {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.15);
}

.kit-selector-input:checked + .offer-option .offer-radio-icon {
    border-color: var(--color-primary);
}

.kit-selector-input:checked + .offer-option .offer-radio-icon::after {
    transform: translate(-50%, -50%) scale(1); /* Fica visível */
}

/* --- Conteúdo do Seletor --- */
.offer-desc {
    /* [MUDANÇA] Deixa lado a lado para economizar espaço vertical */
    display: flex;
    gap: 1rem; 
    align-items: center;
}
.offer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-light-bg);
    line-height: 1.3;
    white-space: nowrap; /* Garante que não quebre linha */
}
.offer-price-unit {
    font-size: 0.95rem;
    font-weight: 400;
    color: #555;
    /* Adiciona uma separação visual suave */
    padding-left: 1rem;
    border-left: 1px solid #ccc;
    line-height: 1; 
}

/* --- Badges de Destaque --- */
.offer-badge {
    position: absolute;
    top: -10px; /* [AJUSTE] Reduzido */
    right: 1.5rem;
    font-size: 0.7rem; /* [AJUSTE] Reduzido */
    font-weight: 700;
    color: var(--color-light);
    padding: 3px 8px; /* [AJUSTE] Reduzido */
    border-radius: 20px;
    z-index: 2;
}
.offer-badge.popular {
    background-color: var(--color-primary);
}
.offer-badge.best-value {
    background-color: #1e9e34; /* Verde (exemplo) */
}


/* --- Coluna da Direita (Display) --- */
.offer-display {
    text-align: center;
    position: sticky; /* Fica fixo ao rolar no desktop */
    top: 2rem;
    padding: 0.5rem; /* [AJUSTE] Reduzido */
    border-radius: 12px;
    background: #fff;
   
}

.offer-image-wrapper {
    margin-bottom: 0.5rem; /* [NOVO/AJUSTE] Reduzido para aproximar o preço (8px) */
}
#product-image-display {
    width: 100%;
    max-width: 300px; /* [AJUSTE] Reduzido */
    margin: 0 auto;
    transition: opacity 0.3s ease-in-out;
    margin-top: -1rem;
}

.offer-price-summary {
    /* [MUDANÇA PRINCIPAL] Alinhamento horizontal para economizar espaço */
    display: flex;
    justify-content: center;
    align-items: flex-end; 
    gap: 0.5rem; 
    margin-bottom: -1.2rem; /* [AJUSTE] Reduzido */
    flex-wrap: wrap; /* Permite a quebra se a tela for muito pequena */
}

.price-label {
    /* [MUDANÇA PRINCIPAL] Formata para "Valor" em cima e "Total:" em baixo */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    
    font-size: 0.75rem; /* [AJUSTE] Reduzido */
    color: #666;
    font-weight: 500; 
    line-height: 1; 
    padding-bottom: 0.2rem; 
    font-size: 0; /* Esconde o texto original "Valor:" */
}
/* [NOVO] Adiciona a quebra de linha após 'Valor' */
.price-label:after {
    content: "Total:";
    display: block;
    line-height: 1;
    font-size: 0.75rem; /* Restaura o tamanho da fonte para a palavra "Total:" */
}

#price-total-display {
    font-size: 2.2rem; /* [AJUSTE] Reduzido */
    font-weight: 700;
    color: var(--color-text-light-bg);
    line-height: 1.1;
    margin-bottom: 0; /* Remove a margem que estava antes */
}
#savings-display {
    font-size: 1rem; /* [AJUSTE] Reduzido */
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    width: 100%; /* Garante que fique em uma linha separada */
    margin-bottom: 0.8rem;
}

/* O botão CTA já está estilizado, mas garantimos a largura */
.offer-display .cta-button {
    width: 100%;
    margin-top: 0.8rem; /* [AJUSTE] Reduzido */
}

.offer-display .safe-seals {
    margin-top: 1rem; /* [AJUSTE] Reduzido */
    max-width: 200px; /* [AJUSTE] Reduzido */
    margin-left: auto;   
    margin-right: auto;  
}
.offer-display .urgency-note {
    margin-top: 1rem; /* [AJUSTE] Reduzido */
    font-size: 0.85rem; /* [AJUSTE] Reduzido */
}

/* ======================================= */
/* 3.1 SETA HERO (ESTÁTICA / MOBILE)       */
/* ======================================= */

.hero-arrow {
    display: block; 
    margin: 30px auto 0; /* [AJUSTE] Reduzido */
    width: 30px; /* [AJUSTE] Reduzido */
    height: 35px; /* [AJUSTE] Reduzido */
}

.hero-arrow path {
    fill: none;
    stroke: var(--color-light); /* Cor branca (já estava certo) */
    stroke-width: 1.5;          /* [AJUSTE] Reduzido */
    stroke-linecap: round;    /* Bordas arredondadas (como na imagem) */
}

/* ======================================= */
/* 8. NOVA SEÇÃO FAQ (MOBILE-FIRST)        */
/* ======================================= */
#faq {
    background-color: var(--color-dark);
}

.faq-accordion{
  max-width: 850px;
  margin: 2rem auto 0; /* [AJUSTE] Reduzido */
  display: flex;
  flex-direction: column;
  gap: 10px; /* [AJUSTE] Reduzido */
}
.faq-item{
  background: #121212; /* Fundo do item */
  border: 1px solid #333; /* Borda sutil */
  border-radius: 8px; /* [AJUSTE] Reduzido */
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item.active{
  border-color: var(--color-primary); /* Borda laranja ao ativar */
}
.faq-question{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem; /* [AJUSTE] Reduzido (16px) */
  cursor: pointer;
  font-size: 1rem; /* [AJUSTE] Reduzido */
  font-weight: 700;
  color: var(--color-light);
}
.faq-icon{
  width: 20px; /* [AJUSTE] Reduzido */
  height: 20px; /* [AJUSTE] Reduzido */
  fill: var(--color-primary); /* Laranja */
  transition: transform .3s ease;
  flex-shrink: 0; 
}
.faq-item.active .faq-icon{
  transform: rotate(45deg);
}
.faq-answer{
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-out;
  
  
}
.faq-item.active .faq-answer {
  max-height: 500px; /* Um valor grande o suficiente para o conteúdo caber */
}

.faq-answer p{
  font-size: 0.95rem; /* [AJUSTE] Reduzido */
  color: var(--color-text-light-p); /* Cinza claro */
  line-height: 1.7;
  border-top: 1px solid #333;
  padding: 1rem; /* [AJUSTE] Reduzido (16px) */
  margin: 0;
}

/* === ATUALIZADO: Botão de Suporte === */
.support-button {
    margin: 2rem auto 0; /* [AJUSTE] Reduzido */
    display: flex; /* MUDADO: de inline-flex para flex */
    align-items: center;
    justify-content: center;
    gap: 8px; /* [AJUSTE] Reduzido */
    width: 100%; /* Ocupa a largura no mobile */
}
.support-icon {
    width: 18px; /* [AJUSTE] Reduzido */
    height: 18px; /* [AJUSTE] Reduzido */
    fill: currentColor;
}


/* ======================================= */
/* 9. MEDIA QUERIES (DESKTOP)              */
/* ======================================= */

@media (min-width: 900px) {
    /* ESCONDE A SETA NO DESKTOP (DEVE PERMANECER) */
    .hero-arrow {
        display: none;
    }
    body {
        font-weight: 300;
    }

    .section-padding {
        padding: 4rem 0; /* [AJUSTE] Reduzido para desktop */
    }

    .section-title {
        font-size: 2.3rem; /* [AJUSTE] Reduzido */
    }

    /* === ATUALIZADO (para o FAQ) === */
    .section-subtitle {
        font-size: 1.2rem; /* [AJUSTE] Reduzido */
        margin-bottom: 3rem; /* [AJUSTE] Reduzido */
    }

   /* === LAYOUT DESKTOP (IMAGEM DE FUNDO COM CONTEÚDO À ESQUERDA) === */
    #hero {
        padding: 4rem 0; /* [AJUSTE] Reduzido */
        display: flex;
        align-items: center;
        min-height: 100vh; /* [AJUSTE] Reduzido */
        position: relative;
        z-index: 1;
        /* IMAGEM DO PRODUTO AQUI */
        background-image: url('img/bg1.png'); /* ATUALIZE COM O CAMINHO DA IMAGEM DO SEU PRODUTO */
        
        /* ATUALIZADO ABAIXO: */
        background-size: cover;             /* Faz a imagem cobrir todo o fundo */
        background-repeat: no-repeat;
        background-position: center center; /* Centraliza a imagem enquanto ela cobre */
        
        background-color: var(--color-dark); /* Fundo escuro */
        overflow: visible; 
    }

    #hero .container {
        width: 90%;
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        /* Usar grid para alinhar o conteúdo à esquerda */
        display: grid;
        grid-template-columns: 1fr 1fr; /* Duas colunas iguais */
        align-items: center;
        gap: 2rem; /* [AJUSTE] Reduzido */
    }

    .hero-grid {
        display: block; 
    }

    .hero-image-wrapper {
        display: none; /* Esconde a imagem <img> do mobile no desktop */
    }

    .hero-content {
        order: 1; /* Garante que o conteúdo fique na primeira coluna (esquerda) */
        text-align: left; /* Alinha o texto à esquerda */
        padding: 0;
        position: static; 
        background-color: transparent; /* Fundo transparente */
        max-width: 100%; /* Permite ocupar a largura total da coluna */
    }
    
    #hero .hero-content .container {
        width: 100%;
        max-width: none;
    }

    .hero-title {
        font-size: 2.3rem; /* [AJUSTE] Reduzido */
        color: var(--color-text-light-h);
        line-height: 2.3rem; /* [AJUSTE] Reduzido */
    }
    
    .hero-subtitle {
        margin-left: 0;
        max-width: 600px;
        color: var(--color-text-dark-bg);
        font-size: 1.1rem; /* [AJUSTE] Reduzido */
    }
    /* === FIM LAYOUT DESKTOP === */


    /* Grid da Solução (Imagem ao lado do texto) */
    .solution-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem; /* [AJUSTE] Reduzido */
        align-items: center;
    }

    /* === ATUALIZADO: Reseta a imagem da solução no desktop === */
    .solution-image img {
        margin: 0; /* Reseta a margem do mobile */
        width: 100%; /* Reseta o 100vw */
        max-width: 100%; /* Reseta o max-width: none */
        border-radius: 10px; /* Reaplica a borda arredondada */
    }
    
    /* Grid da Autoridade (Lado a lado) */
    .authority-grid {
        flex-direction: row;
        justify-content: space-around;
        gap: 2rem;
    }

    /* === NOVO: Estilos Desktop para FAQ === */
    .faq-accordion {
        margin-top: 3rem; /* [AJUSTE] Reduzido */
    }
    .faq-question {
        font-size: 1.1rem; /* [AJUSTE] Reduzido */
        padding: 1.25rem 1.5rem; /* [AJUSTE] Reduzido */
    }
    .faq-answer p {
        font-size: 1rem; /* [AJUSTE] Reduzido */
        padding: 1rem 1.5rem 1.5rem 1.5rem; /* [AJUSTE] Reduzido */
    }
    
    /* === ATUALIZADO: Centraliza o botão no desktop === */
    .support-button {
        width: auto; /* Tamanho automático no desktop */
        margin-left: auto;
        margin-right: auto;
        display: inline-flex; /* Volta para inline-flex para não ocupar a linha toda */
    }
    
    #faq .container {
        text-align: center; /* Isso ajuda a centralizar o botão */
    }
    /* === FIM Estilos Desktop FAQ === */

    /* ========================================================= */
    /* ATUALIZADO: FORÇA O LAYOUT DE OFERTA A FICAR EMPILHADO NO TABLET */
    /* ========================================================= */
    .offer-grid {
        /* Garante que ele fique 1 coluna (empilhado) */
        grid-template-columns: 1fr;
        
        /* Adiciona uma largura máxima para não ficar gigante no tablet */
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .step-title.mobile-only {
        /* Garante que o "PASSO 2" apareça no tablet */
        display: block; 
    }

    .offer-display {
        /* Mantém o estilo de "card" do mobile no tablet */
        padding: 0rem; /* [AJUSTE] Reduzido */
        background: #fff;
        
        text-align: center;
    }
}

/* ====================================================== */
/* SÓ ATIVA O LADO-A-LADO EM DESKTOPS LARGOS (1000px+)   */
/* ====================================================== */
@media (min-width: 1000px) { 
    .offer-grid {
        /* Agora sim, 2 colunas */
        grid-template-columns: 1fr 1fr;
        gap: 2rem; /* [AJUSTE] Reduzido */
        margin-top: 3rem; /* [AJUSTE] Reduzido */
        
        /* Reseta a largura máxima do tablet */
        max-width: 1000px; 
    }

    .step-title.mobile-only {
        /* Esconde o "PASSO 2" no desktop */
        display: none; 
    }

    .offer-display {
        /* Reseta o estilo de "card" para o layout de desktop */
        padding: 0;
        background: none;
        box-shadow: none;
    }
}

/* ======================================= */
/* 10. ESTILOS DA PÁGINA DE CHECKOUT       */
/* ======================================= */

#checkout .container {
    max-width: 1200px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: empilhado */
    gap: 2rem; /* [AJUSTE] Reduzido */
    background: #fff;
    padding: 1.2rem; /* [AJUSTE] Reduzido */
    border-radius: 12px; /* [AJUSTE] Reduzido */
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.checkout-form-wrapper .section-title {
    margin-bottom: 0.5rem;
}
.checkout-form-wrapper .section-subtitle-light {
    font-size: 1rem;
    margin-bottom: 1.5rem; /* [AJUSTE] Reduzido */
    margin-top: -1.5rem;
}

.form-group {
    margin-bottom: 0.8rem; /* [AJUSTE] Reduzido */
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-size: 0.8rem; /* [AJUSTE] Reduzido */
    font-weight: 700;
    color: #333;
    margin-bottom: 0.3rem; /* [AJUSTE] Reduzido */
}
.form-group input {
    width: 100%;
    padding: 0.8rem 0.9rem; /* [AJUSTE] Reduzido */
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: var(--transition-speed);
}
.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.form-grid-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem; /* [AJUSTE] Reduzido */
}
.form-grid-third {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.8rem; /* [AJUSTE] Reduzido */
}

.form-divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 1rem 0; /* [AJUSTE] Reduzido */
}
.form-subtitle {
    font-size: 1.1rem; /* [AJUSTE] Reduzido */
    font-weight: 700;
    color: #000;
    margin-bottom: 0.8rem; /* [AJUSTE] Reduzido */
}

#checkout .cta-button {
    width: 100%;
    margin-top: 0.8rem; /* [AJUSTE] Reduzido */
}

/* Coluna da Direita: Resumo */
.order-summary-wrapper {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.2rem; /* [AJUSTE] Reduzido */
}
.order-summary h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem; /* [AJUSTE] Reduzido */
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.8rem; /* [AJUSTE] Reduzido */
}
.order-item {
    display: flex;
    gap: 0.8rem; /* [AJUSTE] Reduzido */
    align-items: center;
    margin-bottom: 1rem; /* [AJUSTE] Reduzido */
}
.order-item img {
    width: 70px; /* [AJUSTE] Reduzido */
    height: 70px; /* [AJUSTE] Reduzido */
    object-fit: cover;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
}
.order-item-desc p {
    font-size: 1rem; /* [AJUSTE] Reduzido */
    font-weight: 700;
    color: #121212;
}
.order-item-desc strong {
    font-size: 0.95rem; /* [AJUSTE] Reduzido */
    font-weight: 400;
    color: #555;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem; /* [AJUSTE] Reduzido */
    font-weight: 700;
    color: #121212;
    margin-top: 0.8rem; /* [AJUSTE] Reduzido */
}
.summary-secure {
    margin-top: 1.5rem; /* [AJUSTE] Reduzido */
    border-top: 1px solid #e0e0e0;
    padding-top: 1rem; /* [AJUSTE] Reduzido */
}
.summary-secure img {
    max-width: 200px; /* [AJUSTE] Reduzido */
    margin: 0 auto;
}

/* Ajuste do Grid no Desktop */
@media (min-width: 900px) {
    .checkout-grid {
        /* Lado a lado: 60% formulário, 40% resumo */
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
        padding: 2rem; /* [AJUSTE] Reduzido */
    }
    
    .order-summary-wrapper {
        /* Fazer o resumo "grudar" ao rolar */
        position: sticky;
        top: 2rem;
    }
}

/* ======================================= */
/* 11. BOTAO CHECKOUT EXCLUSIVO (SEM CONTONO) */
/* ======================================= */

/* 1. Estilos base do botão Checkout (Copiados de .cta-button) */
.checkout-cta-button {
    display: inline-block;
    padding: 0.8rem 2.2rem; /* [AJUSTE] Reduzido */
    background-color: var(--color-primary);
    color: var(--color-light);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 15px;
    margin-top: 1rem; /* [AJUSTE] Reduzido */
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);

    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%; 
    border: none; /* CRUCIAL: Remove qualquer borda nativa do botão */
    cursor: pointer;
}

/* 2. Pseudo-Elemento Glare (Copiado de .cta-button::before) */
.checkout-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; 
    width: 75%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.521) 50%,
        transparent 100%
    );
    transform: skewX(-25deg); 
    /* A animação 'subtle-glare' já está definida no CSS base e é reutilizada aqui */
    animation: subtle-glare 3.5s linear infinite;
    opacity: 0.7;
}

/* 3. Estados Hover e Focus (Remoção do Contorno GARANTIDA) */

.checkout-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
}

.checkout-cta-button:hover::before {
    animation: none;
    left: 100%;
    transition: left 0.8s ease;
    opacity: 1;
}

/* A REGRA QUE MATA O CONTORNO */
.checkout-cta-button:focus,
.checkout-cta-button:active {
    outline: none !important; /* MATA o contorno padrão do navegador */
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.4) !important; /* Adiciona o brilho personalizado */
}