/* OVERLAY */
.hp-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* CAIXA */
.hp-popup {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg,#0a0a0a,#050505);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  animation: hpPopupIn 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* ANIMAÇÃO DE ENTRADA MAIS SUAVE */
@keyframes hpPopupIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ANIMAÇÃO DE SAÍDA SUAVE */
.hp-popup.hp-popup-hide {
  animation: hpPopupOut 0.5s ease forwards;
}

@keyframes hpPopupOut {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(20px) scale(0.96); visibility: hidden; }
}

/* BOTÃO FECHAR */
.hp-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255,255,255,.4);
  font-size: 18px;
  cursor: pointer;
  transition: .2s;
}

.hp-popup-close:hover {
  color: #fff;
}

/* ÍCONE */
.hp-popup-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

/* TÍTULO */
.hp-popup h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXTO */
.hp-popup p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* DOMÍNIO DESTACADO */
.hp-popup-domain {
  margin: 16px 0;
  font-size: 15px;
  font-weight: 700;
  color: #FF8B33;
  background: rgba(255,106,0,.08);
  border: 1px solid rgba(255,106,0,.25);
  padding: 10px;
  border-radius: 10px;
}

/* BOTÕES */
.hp-popup-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* BOTÃO PRINCIPAL */
.hp-popup-ok {
  background: linear-gradient(135deg,#FF6A00,#e85d00);
  color: #000;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: .3s;
}

.hp-popup-ok:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(255,106,0,.3);
}

/* WHATSAPP */
.hp-popup-wpp {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: 10px;
  transition: .3s;
}

.hp-popup-wpp:hover {
  border-color: rgba(255,106,0,.3);
  color: #FF8B33;
}

/* Ajustar botão Suporte Online Atendimento até 22:00 */

.hp-status-container {
    display: flex;
    justify-content: center;
    padding: 5px 0 15px 0;
    margin-top: -40px;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.hp-status-bar {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px;
    background-color: #0c0c0f;
    border: 1px solid rgba(255, 106, 0, 0.4);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

.hp-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2dce89;
    box-shadow: 0 0 10px #2dce89;
    position: relative;
}

.hp-status-dot.online::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: hp-pulse 2s infinite;
}

@keyframes hp-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.8); opacity: 0; }
}

.hp-status-text {
    color: #ff8b33; 
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: capitalize;
}

.hp-status-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,106,0,0.25); 
}

.hp-status-time {
    color: #ff8b33;
    font-size: 13px;
    font-weight: 500;
}

.hp-sec-cta {
    margin-top: 20px;
}

.status-offline {
    border-color: rgba(245, 54, 92, 0.4) !important;
}

.dot-offline {
    background-color: #f5365c !important;
    box-shadow: 0 0 10px #f5365c !important;
}

.dot-offline::after { display: none !important; }

.hp-status-text.off { color: #f5365c !important; }

.hp-status-time.off { color: rgba(255,255,255,0.7) !important; }

/* =========================
   PRINCIPAIS CANAIS
========================= */

.hp-channels {
  padding: 80px 24px;
  text-align: center;
}

.hp-channels h2 {
  font-size: clamp(30px,5vw,44px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.hp-channels h2 span {
  color: #FF6A00;
}

.hp-channels p {
  color: rgba(255,255,255,.5);
  margin-bottom: 30px;
  font-size: 15px;
}

/* GRID */
.hp-ch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 30px;
}

/* CARD */
.hp-ch-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}

/* HOVER BONITO */
.hp-ch-item:hover {
  transform: scale(1.05);
  border-color: rgba(255,106,0,.4);
}

/* IMAGENS */
.hp-ch-item img {
  max-width: 90%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* BOTÃO */
.hp-ch-more {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #FF8B33;
  font-size: 14px;
  transition: opacity .2s;
}

.hp-ch-more:hover {
  opacity: 0.8;
}

/* RESPONSIVO */
@media(max-width:768px){
  .hp-ch-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:480px){
  .hp-ch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-ch-item img {
    max-height: 32px;
  }
}

.faq-box {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #111;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.faq-item p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.hl {
  color: #667eea;
  font-weight: 600;
}

.hl-strong {
  color: #00e0ff;
  font-weight: 700;
}

@media (max-width: 600px) {
  .faq-item {
    padding: 15px;
  }
  .faq-item h3 {
    font-size: 16px;
  }
  .faq-item p {
    font-size: 14px;
  }
}

/* =============================================
   BOTÃO VOLTAR AO TOPO - AJUSTADO PARA FICAR ACIMA DO CHAT
   ============================================= */
#backToTop {
    position: fixed;
    bottom: 100px;  /* mais para cima (antes estava 30px) */
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8b33 0%, #d65e02 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 2px solid rgba(255,255,255,0.2);
}

#backToTop:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff8b33 0%, #d65e02 100%);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

#backToTop.show { 
    display: flex; 
}

/* Desktop: quando o chat está aberto, o botão sobe um pouco mais */
@media (min-width: 769px) {
    .ana-chat-widget.chat-open ~ #backToTop,
    .ana-chat-widget.chat-open + #backToTop,
    body:has(.ana-chat-widget.chat-open) #backToTop {
        bottom: 160px; /* ainda mais para cima quando o chat está aberto */
        right: 30px;
        display: flex !important;
    }
}

/* Celular: botão some APENAS quando o chat está ABERTO (tela cheia) */
@media (max-width: 768px) {
    #backToTop { 
        bottom: 80px;  /* mais para cima no celular também */
        right: 20px; 
        width: 45px; 
        height: 45px; 
        font-size: 20px; 
    }
    
    /* No celular, quando o chat abre em tela cheia, o botão desaparece completamente */
    .ana-chat-widget.chat-open ~ #backToTop,
    .ana-chat-widget.chat-open + #backToTop,
    body:has(.ana-chat-widget.chat-open) #backToTop {
        display: none !important;
    }
}

.aztv-notify {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #0c0c0f;
    border: 1px solid rgba(255, 106, 0, 0.4);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 6px 25px rgba(0,0,0,0.7);
    display: flex;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease;
    z-index: 9999;
    max-width: 300px;
}

.aztv-notify.show {
    opacity: 1;
    transform: translateY(0);
}

.aztv-ico {
    font-size: 18px;
}

.aztv-text strong {
    color: #ff8b33;
}

.aztv-counter {
    position: fixed;
    bottom: 120px;
    right: 6px;
    background: #0c0c0f;
    border: 1px solid rgba(255, 106, 0, 0.4);
    color: #ff8b33;
    padding: 10px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    z-index: 9999;
    animation: pulseFire 2s infinite;
    display: none;
}

@keyframes pulseFire {
    0% { box-shadow: 0 0 0 0 rgba(255,139,51,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(255,139,51,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,139,51,0); }
}

@media (max-width: 768px) {
    #aztv-notify {
        left: 10px !important;
        right: auto !important;
        bottom: 20px;
        transform: none !important;
    }
    .aztv-counter {
        left: 10px;
        right: auto;
        transform: none;
        bottom: 110px;
    }
}

 /* ====== RESET + VARS ====== */
    #ana-widget,
    #ana-widget *,
    #ana-widget *::before,
    #ana-widget *::after {
      box-sizing: border-box !important;
      margin: 0 !important;
      padding: 0 !important;
      border: none !important;
      outline: none !important;
      text-decoration: none !important;
      text-transform: none !important;
      list-style: none !important;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif !important;
      -webkit-font-smoothing: antialiased !important;
      -moz-osx-font-smoothing: grayscale !important;
    }
    #ana-widget img {
      max-width: 100% !important;
      border: none !important;
      outline: none !important;
    }

    /* ====== FAB BUTTON ====== */
    #ana-widget #ana-fab {
      position: fixed !important;
      bottom: 24px !important;
      right: 24px !important;
      z-index: 99990 !important;
      width: 60px !important;
      height: 60px !important;
      border-radius: 50% !important;
      background: linear-gradient(135deg, #FF6A00, #e85d00) !important;
      cursor: pointer !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      transition: transform 0.2s ease, box-shadow 0.2s ease !important;
      -webkit-tap-highlight-color: transparent !important;
      overflow: visible !important;
      box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.08) !important;
    }
    #ana-widget #ana-fab:hover {
      transform: scale(1.06) !important;
    }
    #ana-widget #ana-fab:active {
      transform: scale(0.96) !important;
    }

    /* pulse rings */
    #ana-widget .ana-pulse {
      position: absolute !important;
      inset: -6px !important;
      border-radius: 50% !important;
      border: 2px solid rgba(255, 106, 0, 0.5) !important;
      animation: anaPulse 2s ease-out infinite !important;
      pointer-events: none !important;
    }
    #ana-widget .ana-pulse::before {
      content: '' !important;
      position: absolute !important;
      inset: -4px !important;
      border-radius: 50% !important;
      border: 2px solid rgba(255, 106, 0, 0.3) !important;
      animation: anaPulse 2s ease-out 0.5s infinite !important;
    }
    @keyframes anaPulse {
      0%   { transform: scale(1);   opacity: 0.6; }
      100% { transform: scale(1.9); opacity: 0; }
    }

    /* ====== CHAT WINDOW - GLASS TRANSPARENT ====== */
    #ana-widget #ana-chat {
      position: fixed !important;
      bottom: 96px !important;
      right: 24px !important;
      z-index: 99989 !important;
      width: 400px !important;
      max-height: min(620px, calc(100vh - 120px)) !important;
      border-radius: 28px !important;
      background: rgba(12, 12, 18, 0.85) !important;
      backdrop-filter: blur(20px) saturate(180%) !important;
      -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 106, 0, 0.2) !important;
      display: none !important;
      flex-direction: column !important;
      overflow: hidden !important;
    }
    #ana-widget #ana-chat.ana-open {
      display: flex !important;
      animation: anaOpen 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    }
    #ana-widget #ana-chat.ana-closing {
      animation: anaClose 0.2s ease forwards !important;
    }
    @keyframes anaOpen {
      from { opacity: 0; transform: translateY(12px) scale(0.96); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    @keyframes anaClose {
      from { opacity: 1; transform: translateY(0) scale(1); }
      to   { opacity: 0; transform: translateY(10px) scale(0.96); }
    }

    /* ====== HEADER COM ONLINE ====== */
    #ana-widget .ana-hdr {
      padding: 18px 20px !important;
      background: rgba(255, 106, 0, 0.08) !important;
      backdrop-filter: blur(4px) !important;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
      display: flex !important;
      align-items: center !important;
      gap: 14px !important;
      flex-shrink: 0 !important;
    }
    #ana-widget .ana-hdr-av {
      position: relative !important;
      flex-shrink: 0 !important;
    }
    #ana-widget .ana-hdr-av-img {
      width: 48px !important;
      height: 48px !important;
      border-radius: 18px !important;
      background: linear-gradient(135deg, #FF6A00, #e85d00) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      overflow: hidden !important;
    }
    #ana-widget .ana-hdr-av-img img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }
    #ana-widget .ana-hdr-dot {
      position: absolute !important;
      bottom: 0px !important;
      right: -1px !important;
      width: 14px !important;
      height: 14px !important;
      border-radius: 50% !important;
      background: #2ecc71 !important;
      border: 2.5px solid rgba(12,12,18,0.9) !important;
      animation: onlinePulse 1.8s infinite !important;
    }
    @keyframes onlinePulse {
      0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6); }
      70% { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
      100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
    }
    #ana-widget .ana-hdr-txt {
      flex: 1 !important;
    }
    #ana-widget .ana-hdr-name {
      font-size: 16px !important;
      font-weight: 700 !important;
      color: #fff !important;
      display: flex !important;
      align-items: center !important;
      gap: 8px !important;
      flex-wrap: wrap !important;
    }
    #ana-widget .ana-online-badge {
      background: rgba(46, 204, 113, 0.18) !important;
      padding: 3px 8px !important;
      border-radius: 30px !important;
      font-size: 10px !important;
      font-weight: 600 !important;
      color: #2ecc71 !important;
      display: inline-flex !important;
      align-items: center !important;
      gap: 4px !important;
    }
    #ana-widget .ana-online-badge::before {
      content: "●" !important;
      font-size: 8px !important;
      color: #2ecc71 !important;
      animation: blinkOnline 1.2s infinite !important;
    }
    @keyframes blinkOnline {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    #ana-widget .ana-hdr-status {
      font-size: 11px !important;
      color: rgba(255, 255, 255, 0.45) !important;
      margin-top: 3px !important;
    }
    #ana-widget .ana-hdr-close {
      width: 36px !important;
      height: 36px !important;
      border-radius: 12px !important;
      background: rgba(255, 255, 255, 0.05) !important;
      cursor: pointer !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    /* ====== MESSAGES AREA ====== */
    #ana-widget .ana-body {
      flex: 1 !important;
      overflow-y: auto !important;
      padding: 20px 18px !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 16px !important;
      min-height: 200px !important;
      scroll-behavior: smooth !important;
    }
    #ana-widget .ana-body::-webkit-scrollbar { width: 4px !important; }
    #ana-widget .ana-body::-webkit-scrollbar-track { background: transparent !important; }
    #ana-widget .ana-body::-webkit-scrollbar-thumb { background: rgba(255,106,0,0.3) !important; border-radius: 4px !important; }

    /* ====== MESSAGE ROW ====== */
    #ana-widget .ana-m {
      display: flex !important;
      gap: 10px !important;
      align-items: flex-end !important;
      animation: anaMIn 0.25s ease both !important;
    }
    #ana-widget .ana-m-b { justify-content: flex-start !important; }
    #ana-widget .ana-m-u { justify-content: flex-end !important; }
    @keyframes anaMIn {
      from { opacity: 0; transform: translateY(6px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    #ana-widget .ana-m-av {
      width: 32px !important;
      height: 32px !important;
      border-radius: 12px !important;
      background: linear-gradient(135deg, #FF6A00, #e85d00) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      flex-shrink: 0 !important;
      overflow: hidden !important;
    }
    #ana-widget .ana-m-av img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
    }

    /* BUBBLES - com suporte a negrito real */
    #ana-widget .ana-b {
      max-width: 80% !important;
      padding: 12px 16px !important;
      font-size: 13.5px !important;
      line-height: 1.55 !important;
      word-break: break-word !important;
      white-space: pre-line !important;
    }
    #ana-widget .ana-b-b {
      border-radius: 20px 20px 20px 6px !important;
      background: rgba(255, 255, 255, 0.07) !important;
      backdrop-filter: blur(4px) !important;
      border: 0.5px solid rgba(255, 255, 255, 0.08) !important;
      color: rgba(255, 255, 255, 0.9) !important;
    }
    #ana-widget .ana-b-u {
      border-radius: 20px 20px 6px 20px !important;
      background: linear-gradient(135deg, #FF6A00, #e85d00) !important;
      color: #000 !important;
      font-weight: 500 !important;
    }
    /* Estilos para negrito dentro das mensagens */
    #ana-widget .ana-b strong, 
    #ana-widget .ana-b b {
      font-weight: 700 !important;
      color: #FFB366 !important;
    }
    #ana-widget .ana-b-u strong, 
    #ana-widget .ana-b-u b {
      color: #000 !important;
      font-weight: 700 !important;
    }
    #ana-widget .ana-b a {
      color: #FFB366 !important;
      text-decoration: underline !important;
      cursor: pointer !important;
    }

    /* TYPING INDICATOR - estilo WhatsApp */
    #ana-widget .ana-typ {
      display: flex !important;
      gap: 6px !important;
      padding: 10px 0 !important;
      align-items: center !important;
    }
    #ana-widget .ana-typ i {
      width: 8px !important;
      height: 8px !important;
      border-radius: 50% !important;
      background: rgba(255, 255, 255, 0.5) !important;
      display: block !important;
      animation: anaTyp 1.4s ease-in-out infinite !important;
    }
    #ana-widget .ana-typ i:nth-child(1) { animation-delay: 0s; }
    #ana-widget .ana-typ i:nth-child(2) { animation-delay: 0.2s; }
    #ana-widget .ana-typ i:nth-child(3) { animation-delay: 0.4s; }
    @keyframes anaTyp {
      0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
      30% { transform: translateY(-6px); opacity: 1; }
    }

    /* QUICK BUTTONS */
    #ana-widget .ana-qw {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 8px !important;
      padding: 8px 0 6px !important;
      margin-top: 4px !important;
    }
    #ana-widget .ana-qb {
      display: inline-flex !important;
      align-items: center !important;
      gap: 8px !important;
      padding: 10px 18px !important;
      background: rgba(255, 255, 255, 0.05) !important;
      backdrop-filter: blur(4px) !important;
      border: 0.5px solid rgba(255, 255, 255, 0.1) !important;
      border-radius: 40px !important;
      color: rgba(255, 255, 255, 0.8) !important;
      font-size: 13px !important;
      font-weight: 500 !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
    }
    #ana-widget .ana-qb:hover {
      background: rgba(255, 106, 0, 0.2) !important;
      border-color: rgba(255, 106, 0, 0.4) !important;
      color: #FF6A00 !important;
    }
    #ana-widget .ana-qb:active { transform: scale(0.96) !important; }
    #ana-widget .ana-qi { font-size: 15px !important; }

    /* WHATSAPP BUTTONS */
    #ana-widget .ana-wpp-wrap {
      display: flex !important;
      flex-direction: column !important;
      gap: 10px !important;
      margin-top: 12px !important;
    }
    #ana-widget .ana-wpp {
      display: inline-flex !important;
      align-items: center !important;
      gap: 10px !important;
      padding: 12px 18px !important;
      background: rgba(37, 211, 102, 0.12) !important;
      border: 1px solid rgba(37, 211, 102, 0.25) !important;
      border-radius: 16px !important;
      color: #25d366 !important;
      font-size: 13px !important;
      font-weight: 600 !important;
      cursor: pointer !important;
      justify-content: center !important;
    }
    #ana-widget .ana-wpp:hover {
      background: rgba(37, 211, 102, 0.22) !important;
    }

    /* PLAN BUTTONS */
    #ana-widget .ana-ckout {
      display: inline-flex !important;
      align-items: center !important;
      gap: 12px !important;
      padding: 12px 20px !important;
      background: linear-gradient(135deg, rgba(255,106,0,0.15), rgba(255,106,0,0.05)) !important;
      border: 1px solid rgba(255,106,0,0.35) !important;
      border-radius: 18px !important;
      color: #FF6A00 !important;
      font-size: 14px !important;
      font-weight: 700 !important;
      cursor: pointer !important;
      margin-top: 8px !important;
      width: 100% !important;
      justify-content: center !important;
      transition: 0.15s !important;
    }
    #ana-widget .ana-ckout:hover {
      background: linear-gradient(135deg, rgba(255,106,0,0.25), rgba(255,106,0,0.1)) !important;
      border-color: rgba(255,106,0,0.6) !important;
    }

    /* INPUT */
    #ana-widget .ana-foot {
      padding: 14px 18px 18px !important;
      border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
      background: rgba(0, 0, 0, 0.2) !important;
      backdrop-filter: blur(4px) !important;
      display: flex !important;
      gap: 10px !important;
      align-items: center !important;
      flex-shrink: 0 !important;
    }
    #ana-widget #ana-inp {
      flex: 1 !important;
      padding: 12px 16px !important;
      background: rgba(255, 255, 255, 0.06) !important;
      border: 1px solid rgba(255, 255, 255, 0.1) !important;
      border-radius: 28px !important;
      color: #fff !important;
      font-size: 14px !important;
    }
    #ana-widget #ana-inp:focus {
      border-color: rgba(255, 106, 0, 0.5) !important;
    }
    #ana-widget #ana-inp::placeholder {
      color: rgba(255, 255, 255, 0.25) !important;
    }
    #ana-widget #ana-snd {
      width: 46px !important;
      height: 46px !important;
      border-radius: 28px !important;
      background: rgba(255, 106, 0, 0.15) !important;
      cursor: pointer !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    #ana-widget #ana-snd:active { transform: scale(0.94) !important; }

    /* MOBILE FULLSCREEN */
    @media (max-width: 640px) {
      #ana-widget #ana-chat {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100dvh !important;
        max-height: none !important;
        border-radius: 0 !important;
        background: rgba(8, 8, 14, 0.94) !important;
      }
      #ana-widget.ana-mob-open #ana-fab { display: none !important; }
      #ana-widget #ana-fab { bottom: 20px !important; right: 20px !important; width: 56px !important; height: 56px !important; }
      html.ana-lock { overflow: hidden !important; height: 100% !important; }
      html.ana-lock body { overflow: hidden !important; height: 100% !important; }
    }
	
	/* ========== ESTILOS DO APK OFICIAL COM CARROSSEL ========== */
.ana-apk-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 16px;
  padding: 16px;
  margin: 12px 0;
  border: 2px solid #FF6A00;
  text-align: center;
}

/* Container do carrossel */
.ana-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.ana-carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.ana-carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.ana-carousel-image {
  width: 100%;
  max-width: 180px;
  border-radius: 20px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.ana-carousel-image:hover {
  transform: scale(1.02);
}

/* Botões de navegação */
.ana-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #FF6A00;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.ana-carousel-btn:hover {
  background: #FF6A00;
  color: #fff;
}

.ana-carousel-prev {
  left: 5px;
}

.ana-carousel-next {
  right: 5px;
}

/* Indicadores/dots */
.ana-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 8px 0;
}

.ana-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ana-carousel-dot.active {
  background: #FF6A00;
  width: 20px;
  border-radius: 4px;
}

/* Título e badge */
.ana-apk-title {
  font-weight: bold;
  font-size: 16px;
  color: #FF6A00;
  margin: 12px 0 4px 0;
}

.ana-apk-badge {
  background: #FF6A00;
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin: 8px 0;
}

/* Aviso de segurança */
.ana-warning {
  background: rgba(255,100,0,0.15);
  border-left: 3px solid #FF6A00;
  padding: 10px 12px;
  border-radius: 10px;
  margin: 10px 0;
  font-size: 12px;
  text-align: left;
}

.ana-warning strong {
  color: #FF6A00;
}

/* Botão de download */
.ana-apk-download {
  display: inline-block;
  background: #FF6A00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  margin-top: 10px;
  transition: all 0.2s;
}

.ana-apk-download:hover {
  background: #e05e00;
  transform: scale(1.02);
}

/* ============================================
   SEÇÃO DE DEPOIMENTOS (PROVA SOCIAL)
   Combinado com o design AZTV Family
   ============================================ */

/* Grid dos cards */
.hp-dep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 0 16px;
}

/* Card individual */
.hp-dep-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    position: relative;
}

/* Efeito hover nos cards */
.hp-dep-card:hover {
    border-color: rgba(255, 106, 0, 0.3);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Estrelas de avaliação */
.hp-dep-stars {
    font-size: 18px;
    letter-spacing: 2px;
    color: #FF8B33;
    margin-bottom: 18px;
    font-weight: 500;
}

/* Texto do depoimento */
.hp-dep-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    font-style: normal;
    font-weight: 400;
}

/* Container do autor */
.hp-dep-author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
    margin-top: 4px;
}

/* Avatar/Ícone do autor (letra inicial) */
.hp-dep-av {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0.05));
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: #FF8B33;
    text-transform: uppercase;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

/* Responsivo: ajustes para tablets */
@media (max-width: 768px) {
    .hp-dep-grid {
        gap: 18px;
        padding: 0 20px;
    }
    
    .hp-dep-card {
        padding: 22px 20px;
    }
    
    .hp-dep-text {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Responsivo: ajustes para celulares */
@media (max-width: 480px) {
    .hp-dep-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .hp-dep-card {
        padding: 20px 18px;
    }
    
    .hp-dep-stars {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .hp-dep-text {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .hp-dep-author {
        font-size: 12px;
        gap: 10px;
        padding-top: 14px;
    }
    
    .hp-dep-av {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* ============================================
   SEÇÃO DE AUTENTICIDADE (ALERTA CONTRA GOLPES)
   COM EFEITO DE BRILHO PULSANTE NA LOGO
   ============================================ */

/* Container principal da seção */
.hp-auth {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

/* Card principal */
.hp-auth-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 106, 0, 0.15);
    border-radius: 28px;
    padding: 48px 40px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hp-auth-card:hover {
    border-color: rgba(255, 106, 0, 0.35);
    background: rgba(255, 255, 255, 0.035);
}

/* Ícone principal com EFEITO DE BRILHO PULSANTE */
.hp-auth-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Container do ícone para o efeito de luz */
.hp-auth-icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Efeito de brilho pulsante (luz que se afasta e aproxima) */
.hp-auth-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.6) 0%, rgba(255, 106, 0, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 2.5s ease-in-out infinite;
    pointer-events: none;
}

/* Segundo anel de brilho (mais externo) */
.hp-auth-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.3) 0%, rgba(255, 106, 0, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlowOuter 3s ease-in-out infinite;
    pointer-events: none;
}

/* Imagem do ícone */
.hp-auth-icon img {
    position: relative;
    z-index: 2;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(5deg) brightness(103%) contrast(105%);
    transition: transform 0.3s ease;
    width: 48px;
    height: auto;
}

.hp-auth-card:hover .hp-auth-icon img {
    transform: scale(1.08);
}

/* Animações do brilho pulsante */
@keyframes pulseGlow {
    0% {
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }
    50% {
        width: 90px;
        height: 90px;
        opacity: 0.3;
    }
    100% {
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }
}

@keyframes pulseGlowOuter {
    0% {
        width: 50px;
        height: 50px;
        opacity: 0.5;
    }
    50% {
        width: 120px;
        height: 120px;
        opacity: 0.15;
    }
    100% {
        width: 50px;
        height: 50px;
        opacity: 0.5;
    }
}

/* Título da seção */
.hp-auth-card h3 {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: #fff;
}

.hp-auth-card h3 span {
    color: #FF6A00;
    background: linear-gradient(135deg, #FF6A00, #FF8B33);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Descrição principal */
.hp-auth-card > p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto 28px;
}

/* Destaque do domínio oficial */
.hp-auth-domain {
    display: inline-block;
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: 60px;
    padding: 10px 28px;
    font-size: 18px;
    font-weight: 700;
    color: #FF8B33;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    font-family: monospace;
    transition: all 0.2s ease;
}

.hp-auth-domain:hover {
    background: rgba(255, 106, 0, 0.2);
    transform: translateY(-2px);
}

/* Lista de dicas */
.hp-auth-tips {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.hp-auth-tips li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.hp-auth-tips li:last-child {
    border-bottom: none;
}

.hp-auth-tips li:hover {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 4px;
}

/* Ícones das dicas */
.tip-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 106, 0, 0.08);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.hp-auth-tips li:hover .tip-icon {
    background: rgba(255, 106, 0, 0.18);
    transform: scale(1.05);
}

.tip-icon img {
    width: 14px;
    height: auto;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(5deg) brightness(103%) contrast(105%);
}

/* Texto em negrito dentro das dicas */
.hp-auth-tips li strong {
    color: #FF8B33;
    font-weight: 600;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Tablets */
@media (max-width: 768px) {
    .hp-auth {
        padding: 0 20px;
        margin: 0 auto 40px;
    }
    
    .hp-auth-card {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .hp-auth-domain {
        font-size: 16px;
        padding: 8px 22px;
    }
    
    .hp-auth-tips li {
        padding: 14px 0;
        gap: 12px;
        font-size: 13px;
    }
    
    .tip-icon {
        width: 26px;
        height: 26px;
    }
    
    .hp-auth-icon img {
        width: 42px;
    }
    
    .hp-auth-icon::before {
        width: 50px;
        height: 50px;
    }
    
    .hp-auth-icon::after {
        width: 70px;
        height: 70px;
    }
}

/* Celulares */
@media (max-width: 480px) {
    .hp-auth {
        padding: 0 16px;
        margin: 0 auto 30px;
    }
    
    .hp-auth-card {
        padding: 24px 18px;
        border-radius: 20px;
    }
    
    .hp-auth-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .hp-auth-card > p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .hp-auth-domain {
        font-size: 14px;
        padding: 6px 18px;
        margin-bottom: 24px;
    }
    
    .hp-auth-tips li {
        padding: 12px 0;
        gap: 10px;
        font-size: 12px;
    }
    
    .tip-icon {
        width: 24px;
        height: 24px;
    }
    
    .tip-icon img {
        width: 12px;
    }
    
    .hp-auth-tips li strong {
        font-weight: 600;
    }
    
    .hp-auth-icon img {
        width: 38px;
    }
    
    .hp-auth-icon::before {
        width: 45px;
        height: 45px;
    }
    
    .hp-auth-icon::after {
        width: 60px;
        height: 60px;
    }
}

/* Telas muito pequenas */
@media (max-width: 380px) {
    .hp-auth-card {
        padding: 20px 14px;
    }
    
    .hp-auth-tips li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    
    .tip-icon {
        margin-bottom: 4px;
    }
}

/* ============================================
   FOOTER - RODAPÉ ESTILIZADO
   Design baseado na imagem fornecida
   ============================================ */

/* Container principal do footer */
.hp-foot {
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 24px 30px;
    margin-top: 60px;
}

/* Topo do footer - Grid de colunas */
.hp-foot-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Coluna da marca/brand */
.hp-foot-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hp-foot-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin-bottom: 5px;
}

.hp-foot-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    max-width: 300px;
}

/* Contatos do rodapé */
.hp-foot-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.hp-foot-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hp-foot-contact-item img {
    width: 18px;
    height: 18px;
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(5deg) brightness(103%) contrast(105%);
    opacity: 0.8;
}

.hp-foot-contact-item a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hp-foot-contact-item a:hover {
    color: #FF8B33;
}

/* Colunas de navegação e recursos */
.hp-foot-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-foot-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.hp-foot-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.2s ease;
}

.hp-foot-col a:hover {
    color: #FF8B33;
    transform: translateX(3px);
}

/* Seção do meio - Selo de autenticidade */
.hp-foot-mid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hp-foot-auth-strip {
    background: rgba(255, 106, 0, 0.05);
    border: 1px solid rgba(255, 106, 0, 0.12);
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
}

.hp-foot-auth-badge {
    display: inline-block;
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.25);
    border-radius: 60px;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 700;
    color: #FF8B33;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.hp-foot-auth-text {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

/* Bottom do footer - Copyright e selo Android */
.hp-foot-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
}

.hp-foot-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hp-foot-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.hp-foot-android {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 14px;
    border-radius: 30px;
}

.hp-foot-android svg {
    width: 14px;
    height: 14px;
    fill: #a4c639;
}

/* ============================================
   RESPONSIVIDADE DO FOOTER
   ============================================ */

/* Tablets */
@media (max-width: 768px) {
    .hp-foot {
        padding: 45px 20px 25px;
    }
    
    .hp-foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .hp-foot-brand {
        grid-column: span 2;
    }
    
    .hp-foot-desc {
        max-width: 100%;
    }
    
    .hp-foot-auth-strip {
        padding: 20px;
    }
    
    .hp-foot-auth-badge {
        font-size: 11px;
        padding: 5px 16px;
    }
    
    .hp-foot-auth-text {
        font-size: 11px;
    }
}

/* Celulares */
@media (max-width: 480px) {
    .hp-foot {
        padding: 35px 16px 20px;
        margin-top: 40px;
    }
    
    .hp-foot-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 35px;
    }
    
    .hp-foot-brand {
        grid-column: span 1;
    }
    
    .hp-foot-logo {
        height: 32px;
    }
    
    .hp-foot-desc {
        font-size: 12px;
    }
    
    .hp-foot-col h4 {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .hp-foot-col a {
        font-size: 12px;
    }
    
    .hp-foot-mid {
        padding: 30px 0 25px;
    }
    
    .hp-foot-auth-strip {
        padding: 16px;
        border-radius: 12px;
    }
    
    .hp-foot-auth-badge {
        font-size: 10px;
        padding: 4px 14px;
        margin-bottom: 10px;
    }
    
    .hp-foot-auth-text {
        font-size: 10px;
        line-height: 1.5;
    }
    
    .hp-foot-bottom {
        padding-top: 25px;
    }
    
    .hp-foot-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .hp-foot-copy {
        font-size: 10px;
    }
    
    .hp-foot-android {
        font-size: 10px;
        padding: 5px 12px;
    }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
    .hp-foot {
        padding: 30px 14px 18px;
    }
    
    .hp-foot-top {
        gap: 22px;
        padding-bottom: 28px;
    }
    
    .hp-foot-contact-item a {
        font-size: 11px;
    }
    
    .hp-foot-contact-item img {
        width: 15px;
        height: 15px;
    }
}

/* ============ COMPARATIVO DE VALOR ============ */
.sec {
  padding: 80px 24px;
}

.sec-center {
  text-align: center;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.sec-head {
  margin-bottom: 48px;
}

.sec-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FF6A00;
  background: rgba(255,106,0,0.08);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.sec-head h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sec-head h2 strong {
  color: #FF6A00;
}

.sec-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============ COMPARATIVO DE VALOR (VERSÃO COMPACTA COM BOTÃO VERDE) ============ */
.sec {
  padding: 80px 24px;
}

.sec-center {
  text-align: center;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.sec-head {
  margin-bottom: 48px;
}

.sec-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FF6A00;
  background: rgba(255,106,0,0.08);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.sec-head h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sec-head h2 strong {
  color: #FF6A00;
}

.sec-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Tabela comparativa */
.compare-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.compare-col {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px 24px;
  flex: 1;
  min-width: 260px;
  backdrop-filter: blur(4px);
  transition: transform 0.2s, border-color 0.2s;
}

.compare-col:hover {
  border-color: rgba(255,106,0,0.3);
  transform: translateY(-2px);
}

.compare-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
  color: #fff;
}

.compare-label .dot {
  width: 8px;
  height: 8px;
  background: #FF6A00;
  border-radius: 50%;
  display: inline-block;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.compare-list .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}

.compare-list .name {
  color: rgba(255,255,255,0.7);
}

.compare-list .price {
  font-weight: 600;
  color: #fff;
}

.incl svg {
  width: 18px;
  height: 18px;
  stroke: #10b981;
  stroke-width: 2.5;
}

.compare-total {
  background: rgba(255,106,0,0.1);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.compare-total-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.compare-total-value {
  font-size: 28px;
  font-weight: 800;
  color: #FF6A00;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-self: center;
}

/* Box de economia - agora com largura controlada e botão verde interno */
.compare-savings {
  max-width: 860px;            /* ← controle de largura */
  margin: 40px auto 0 auto;    /* centraliza */
  background: linear-gradient(135deg, #FF6A10, #e05a00);
  border-radius: 24px;
  padding: 24px 28px;
  text-align: center;
  color: #000;
}

.compare-savings .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.8;
}

.compare-savings .month {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 4px;
}

.compare-savings .year {
  font-size: 13px;
  margin-top: 12px;
  font-weight: 500;
  opacity: 0.9;
}

.compare-savings .year strong {
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Área do teste drive (dentro do box laranja) */
.compare-testdrive {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.testdrive-text {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0;
  text-align: left;
  flex: 2;
}

/* Botão verde exatamente igual à imagem */
.btn-testdrive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #b54e0e;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(34,197,94,0.3);
  white-space: nowrap;
}

.btn-testdrive:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(34,197,94,0.4);
}

/* Botão principal laranja */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FF6A00;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 60px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(255,106,0,0.3);
}

.btn-primary svg {
  width: 18px;
  height: 18px;
  stroke: #000;
  stroke-width: 2.2;
}

.btn-primary:hover {
  background: #ff8433;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,106,0,0.4);
}

/* Responsivo */
@media (max-width: 768px) {
  .sec {
    padding: 60px 20px;
  }
  
  .compare-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .compare-vs {
    margin: 8px 0;
  }
  
  .compare-col {
    width: 100%;
  }
  
  .compare-savings {
    max-width: 100%;      /* no mobile ocupa quase toda tela */
    padding: 20px;
  }
  
  .compare-savings .month {
    font-size: 26px;
  }
  
  .compare-testdrive {
    flex-direction: column;
    text-align: center;
  }
  
  .testdrive-text {
    text-align: center;
  }
  
  .btn-testdrive {
    white-space: normal;
  }
}

/* ============ FAQ - VERSÃO ULTRA FINA E COMPACTA ============ */
#faq {
  padding: 60px 24px;
  background: linear-gradient(180deg, #050505 0%, #0a0500 100%);
}

#faq .wrap {
  max-width: 760px;
  margin: 0 auto;
}

#faq .sec-head {
  margin-bottom: 36px;
  text-align: center;
}

#faq .sec-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #FF6A00;
  background: rgba(255,106,0,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

#faq h2 {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 8px;
  color: #fff;
}

#faq h2 strong {
  color: #FF6A00;
}

#faq .sec-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Lista de FAQ - gap mínimo */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Card FINO e compacto */
.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(255,106,0,0.25);
  background: rgba(255,255,255,0.03);
}

/* Pergunta - padding mínimo */
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  gap: 12px;
}

.faq-q svg {
  width: 16px;
  height: 16px;
  stroke: #FF6A00;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

/* Resposta - área oculta com padding reduzido */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid transparent;
}

.faq-item.open .faq-a {
  max-height: 500px;
  border-top-color: rgba(255,255,255,0.04);
}

.faq-a-inner {
  padding: 10px 14px 14px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.55;
}

.faq-a-inner strong {
  color: #FF6A00;
  font-weight: 600;
}

.faq-a-inner a {
  color: #FF6A00;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,106,0,0.4);
}

/* Botões de WhatsApp - compactos */
.faq-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0 8px;
}

.faq-support-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.15);
  border-radius: 10px;
  padding: 8px 12px;
  text-decoration: none;
  transition: all 0.2s;
}

.faq-support-btn svg {
  width: 24px;
  height: 24px;
  fill: #25d366;
  flex-shrink: 0;
}

.faq-support-info {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.faq-support-info small {
  font-weight: 400;
  font-size: 9px;
  color: rgba(255,255,255,0.45);
}

.faq-support-btn:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.3);
}

/* Horários de atendimento - compacto */
.faq-hours {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: 6px;
}

.faq-hours > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.faq-hours .day {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.5);
}

.faq-hours .hour {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* Responsivo - ainda mais compacto em mobile */
@media (max-width: 640px) {
  #faq {
    padding: 50px 16px;
  }

  .faq-q {
    padding: 8px 12px;
    font-size: 13px;
  }

  .faq-a-inner {
    padding: 8px 12px 12px;
    font-size: 12.5px;
  }

  .faq-support-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .faq-hours {
    flex-direction: column;
    gap: 6px;
  }

  .faq-hours > div {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============ SUPPORT BOX ============ */
.support {
  max-width: 560px;
  margin: 40px auto 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 24px 28px;
  text-align: center;
  transition: border-color 0.2s;
}

.support:hover {
  border-color: rgba(255,106,0,0.25);
}

.support-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.support-head p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.support-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 40px;
  padding: 8px 18px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.support-btn svg {
  width: 22px;
  height: 22px;
  fill: #25d366;
  flex-shrink: 0;
}

.support-btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.support-btn-content small {
  font-weight: 400;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.support-btn:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.4);
  transform: translateY(-1px);
}

/* Responsivo */
@media (max-width: 640px) {
  .support {
    margin: 32px 16px;
    padding: 18px 20px;
  }

  .support-head h3 {
    font-size: 16px;
  }

  .support-head p {
    font-size: 12px;
  }

  .support-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .support-btn {
    justify-content: center;
    padding: 8px 14px;
  }
}

/* ============ COMO FUNCIONA (3 PASSOS) ============ */
.sec {
  padding: 70px 24px;
}

.sec-center {
  text-align: center;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.sec-head {
  margin-bottom: 48px;
}

.sec-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #FF6A00;
  background: rgba(255,106,0,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.sec-head h2 {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: #fff;
}

.sec-head h2 strong {
  color: #FF6A00;
}

.sec-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Grid dos 3 passos - centralizada */
.steps-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.step {
  flex: 1;
  min-width: 240px;
  max-width: 280px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 24px 16px 20px;
  text-align: center;
  transition: all 0.2s ease;
}

.step:hover {
  border-color: rgba(255,106,0,0.2);
  transform: translateY(-2px);
  background: rgba(255,255,255,0.025);
}

.step-num {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #FF6A00, #E05A00);
  color: #000;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 14px;
  box-shadow: 0 2px 6px rgba(255,106,0,0.15);
}

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
  margin: 0 auto;
}

/* Responsivo */
@media (max-width: 850px) {
  .steps-grid {
    gap: 16px;
  }
  .step {
    min-width: 220px;
    padding: 20px 12px 18px;
  }
  .step p {
    font-size: 12px;
  }
}

@media (max-width: 700px) {
  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .step {
    max-width: 380px;
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .sec {
    padding: 50px 16px;
  }
  .step {
    padding: 18px 14px;
  }
  .step-num {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .step h3 {
    font-size: 15px;
  }
}

/* Vídeo de fundo - cobre toda a seção, fica atrás do conteúdo */
.hp-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* garante que preencha sem distorcer */
  z-index: 0;
}

/* Overlay escuro (gradiente) - igual ao que você tinha no ::after */
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.46) 0%, rgba(5,5,5,.67) 50%, #050505 100%);
  z-index: 1;
  pointer-events: none; /* não bloqueia cliques nos botões */
}

/* Fallback caso o vídeo não carregue (opcional) */
.hp-bg-fallback {
  position: absolute;
  inset: 0;
  background: url('wp-content/uploads/2026/04/backgro10.webp') center/cover no-repeat;
  z-index: -1;
}

/* Garante que o conteúdo fique sobre o vídeo e o overlay */
.hp-hero-c {
  position: relative;
  z-index: 2;
}

/* O glow continua funcionando normalmente */
.hp-hero-glow {
  z-index: 1; /* fica sobre o overlay, mas atrás do conteúdo */
}