/* ================================
   Rei do Zap - Landing Page Omnichannel
   Tema: Dark + Azul Moderno
   ================================ */

/* ---------- Paleta e tokens ---------- */
:root{
  --bg:#0a0a0a;
  --bg-2:#111;
  --card:#151515;

  --text:#f5f5f5;
  --muted:#b6b6b6;

  --brand:#00a3ff;     /* azul principal */
  --brand-2:#4cc9ff;   /* azul claro/hover */
  --brand-dark:#0086d9;

  --ok:#2ecc71;
  --danger:#ff5c5c;

  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --radius-sm: 12px;
  --outline: 1px solid rgba(255,255,255,.06);
  --maxw: 1160px;
}

/* ---------- Reset ---------- */
*{
  box-sizing:border-box;
  -webkit-font-smoothing: antialiased;
}

html{
  scroll-behavior: smooth;
}

html,body{
  height:100%;
  margin:0;
  padding:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(0,163,255,.12), transparent 60%),
    var(--bg);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Layout base ---------- */
.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 22px;
}

.muted{ color:var(--muted); }

/* ---------- Botões ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(180deg, var(--brand), var(--brand-2));
  color:#111;
  font-weight:800;
  border:none;
  padding:14px 20px;
  border-radius:14px;
  cursor:pointer;
  box-shadow: var(--shadow);
  transition:transform .15s ease, filter .2s ease;
  font-size:15px;
  text-decoration:none;
}
.btn:hover{
  transform:translateY(-2px);
  filter:saturate(1.1);
}
.btn.outline{
  background:transparent;
  border:1px solid rgba(255,255,255,.25);
  color:var(--text);
  box-shadow:none;
}
.btn.outline:hover{
  border-color:var(--brand);
  color:var(--brand);
  background: rgba(0,163,255,.08);
}
.btn.primary {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  font-size: 16px;
  padding: 16px 28px;
  box-shadow: 0 8px 24px rgba(0,163,255,0.35);
}
.btn.primary:hover {
  box-shadow: 0 12px 32px rgba(0,163,255,0.45);
}

/* Animação de pulso para o botão principal */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0,163,255,0.35);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0,163,255,0.6), 0 0 0 8px rgba(0,163,255,0.1);
  }
}
.btn.pulse {
  animation: pulse 2s infinite;
}

/* Botão Black Friday */
.btn.blackfriday-btn {
  background: linear-gradient(135deg, #ff6b00, #ff0000);
  font-size: 18px;
  padding: 18px 32px;
  box-shadow: 0 8px 24px rgba(255,107,0,0.5);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.5px;
  animation: pulseFire 1.5s infinite;
  border: 2px solid #ffa500;
}
.btn.blackfriday-btn:hover {
  box-shadow: 0 12px 32px rgba(255,107,0,0.7);
  transform: translateY(-3px) scale(1.02);
}
@keyframes pulseFire {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(255,107,0,0.5);
  }
  50% {
    box-shadow: 0 8px 24px rgba(255,107,0,0.8), 0 0 0 10px rgba(255,107,0,0.15);
  }
}

/* ---------- Header ---------- */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background:linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.65));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap: 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width:36px;
  height:36px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:linear-gradient(225deg, var(--brand-2), var(--brand));
  color:#141414;
  font-weight:900;
  box-shadow:var(--shadow);
}
.nav-links{
  display:flex;
  gap:24px;
  align-items: center;
}
.nav-links a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  transition: color .2s;
}
.nav-links a:hover{ 
  color:var(--text); 
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-nav {
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: all .2s;
}

.btn-nav.login {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--text);
}

.btn-nav.login:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(0,163,255,.08);
}

.btn-nav.signup {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(0,163,255,0.25);
}

.btn-nav.signup:hover {
  box-shadow: 0 6px 16px rgba(0,163,255,0.35);
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--text);
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.mobile-menu-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ---------- Hero ---------- */
.hero{
  padding:64px 0 28px;
  display:grid;
  gap:36px;
}
.hero-grid{
  display:grid;
  gap:28px;
  grid-template-columns: 1.1fr .9fr;
}
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(0,163,255,.12);
  color:var(--brand-2);
  border:1px dashed rgba(0,163,255,.35);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  width: fit-content;
}
.hero h1{
  font-size:clamp(28px, 4.2vw, 48px);
  font-weight:900;
  line-height:1.08;
  margin:0 0 14px;
}
.hero h1 .highlight{
  background:linear-gradient(180deg, var(--brand-2), var(--brand));
  -webkit-background-clip:text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color:transparent;
}
.hero .lead{
  color:var(--muted);
  font-size:clamp(16px, 2vw, 18px);
  max-width:64ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.badge i {
  color: var(--brand);
  font-size: 16px;
}

/* ---------- Notebook Mock ---------- */
.notebook-mock{
  display:flex;
  justify-content:center;
  margin-top:20px;
}
.notebook-frame{
  position:relative;
  width:720px;
  height:420px;
  background:#000;
  border:8px solid #222;
  border-radius:14px 14px 0 0;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.7);
}
.notebook-screen{
  position:absolute;
  top:0; left:0; right:0; bottom:0;
  overflow:hidden;
}
.notebook-screen video{
  width:100%;
  height:100%;
  object-fit:cover;
  background:#000;
  position: relative;
  z-index: 1;
}
.notebook-base{
  position:absolute;
  bottom:-18px;
  left:50%;
  transform:translateX(-50%);
  width:760px;
  height:20px;
  background:#222;
  border-radius:0 0 10px 10px;
  box-shadow:0 6px 18px rgba(0,0,0,.8);
}
@media (max-width:768px){
  .notebook-frame{ 
    width:100%; 
    height: auto;
    aspect-ratio:16/9; 
  }
  .notebook-base{ display:none; }
}

/* ---------- Seções ---------- */
.section{
  padding:64px 0;
}
.section h2{
  font-size:clamp(26px, 3.5vw, 38px);
  font-weight:900;
  margin:0 0 18px;
  text-align: center;
}
.section p.section-lead{
  color:var(--muted);
  font-size:16px;
  max-width:70ch;
  text-align: center;
  margin: 0 auto 40px;
}

/* ---------- Canais Section ---------- */
.channels-section {
  background: linear-gradient(180deg, rgba(0,163,255,.03), transparent);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.channel-card {
  background: linear-gradient(135deg, #101010, #0a0a0a);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all .3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.channel-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,163,255,.2);
}

.channel-card i {
  font-size: 48px;
  margin-bottom: 12px;
  display: block;
}

/* entry animations and hover float */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px) scale(.995); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.channels-scroller .channel-card {
  animation: fadeInUp .48s cubic-bezier(.2,.9,.2,1) both;
  will-change: transform, opacity;
  transform-origin: center bottom;
}

/* stagger delays for nicer entrance */
.channels-scroller .channel-card:nth-child(1){ animation-delay: 0ms; }
.channels-scroller .channel-card:nth-child(2){ animation-delay: 60ms; }
.channels-scroller .channel-card:nth-child(3){ animation-delay: 120ms; }
.channels-scroller .channel-card:nth-child(4){ animation-delay: 180ms; }
.channels-scroller .channel-card:nth-child(5){ animation-delay: 240ms; }
.channels-scroller .channel-card:nth-child(6){ animation-delay: 300ms; }
.channels-scroller .channel-card:nth-child(7){ animation-delay: 360ms; }
.channels-scroller .channel-card:nth-child(8){ animation-delay: 420ms; }
.channels-scroller .channel-card:nth-child(9){ animation-delay: 480ms; }
.channels-scroller .channel-card:nth-child(10){ animation-delay: 540ms; }
.channels-scroller .channel-card:nth-child(11){ animation-delay: 600ms; }
.channels-scroller .channel-card:nth-child(12){ animation-delay: 660ms; }
.channels-scroller .channel-card:nth-child(13){ animation-delay: 720ms; }
.channels-scroller .channel-card:nth-child(14){ animation-delay: 780ms; }
.channels-scroller .channel-card:nth-child(15){ animation-delay: 840ms; }
.channels-scroller .channel-card:nth-child(16){ animation-delay: 900ms; }

.channel-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.channel-card i { transition: transform .28s ease, color .18s ease; }
.channel-card:hover i { transform: translateY(-4px) rotate(-6deg) scale(1.05); }

/* subtle floating animation on icons */
@keyframes floatY { 0% { transform: translateY(0); } 50% { transform: translateY(-6px); } 100% { transform: translateY(0); } }
.channels-scroller .channel-card i { animation: floatY 4s ease-in-out infinite; opacity: .98; }

/* make sure long text wraps nicely */
.channels-scroller .channel-card h3 { font-size: 14px; margin-bottom:6px; }
.channels-scroller .channel-card p { font-size: 12px; color: var(--muted); margin:0; }

.channel-card h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--text);
  font-weight: 800;
}

.channel-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* Cores específicas por canal */
.channel-card.whatsapp i,
.channel-card.whatsapp-business i { color: #25D366; }
.channel-card.instagram i { 
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.channel-card.facebook i { color: #1877F2; }
.channel-card.linkedin i { color: #0A66C2; }
.channel-card.webchat i { color: #2196F3; }
.channel-card.magalu i { color: #0086FF; }
.channel-card.telegram i { color: #0088cc; }
.channel-card.tiktok i { color: #ff0050; }
.channel-card.mercadolivre i { color: #FFE600; }
.channel-card.olx i { color: #6E0AD6; }
.channel-card.sms i { color: #00BFA5; }
.channel-card.email i { color: #EA4335; }
.channel-card.youtube i { color: #FF0000; }
.channel-card.google i { 
  background: linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.channel-card.shopee i { color: #EE4D2D; }
.channel-card.shein i { color: #000000; }

.channels-cta {
  text-align: center;
  background: rgba(0,163,255,.08);
  border: 1px solid rgba(0,163,255,.2);
  border-radius: 16px;
  padding: 28px 24px;
}

/* Keyboard focus styles for channel cards */
.channel-card:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,163,255,0.16), 0 12px 30px rgba(0,0,0,0.35);
  transform: translateY(-6px) scale(1.02);
}
.channel-card:focus-visible {
  outline: 3px solid rgba(0,163,255,0.28);
  outline-offset: 3px;
}

/* Ensure anchors are keyboard-friendly */
.channels-scroller .channel-card { cursor: pointer; }

/* ---------- Channels scroller (horizontal) ---------- */
.channels-scroller-wrapper{
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.channels-scroller{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 6px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.channels-scroller::-webkit-scrollbar{ height:8px; }
.channels-scroller::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.08); border-radius:8px; }
.channels-scroller .channel-card{ min-width:200px; flex: 0 0 auto; }
.channels-arrow{
  width:36px;
  height:36px;
  border-radius:50%;
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.channels-arrow:hover{ transform: translateY(-3px); background: rgba(0,0,0,.6); }
.channels-arrow.left{ margin-left: -6px; }
.channels-arrow.right{ margin-right: -6px; }

@media (max-width: 980px){
  .channels-scroller .channel-card{ min-width:160px; }
  .channels-arrow{ display: none; }
}

.channels-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text);
  flex-wrap: wrap;
}

.channels-highlight i {
  color: var(--brand);
  font-size: 24px;
}

/* ---------- Cards dos Planos ---------- */
.plans-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:18px;
}
.card{
  background:linear-gradient(180deg,#101010,#0a0a0a);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  color:#fafafa;
  transition: all .3s ease;
}
.card:hover {
  border-color:var(--brand);
  transform:translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,163,255,.25);
}
.card h3{
  margin:0 0 8px;
  color:#fff;
  font-size: 18px;
}
.price{
  font-weight:900;
  font-size:24px;
  color:#fff;
}

/* Plan card specific styles */
.plan-card{ padding:22px; display:flex; flex-direction:column; gap:12px; }
.plan-card.popular{ border:2px solid var(--brand-2); box-shadow:0 18px 40px rgba(0,163,255,0.12); }
.plan-badge{ position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:linear-gradient(135deg,var(--brand),var(--brand-2)); color:#fff; padding:6px 14px; border-radius:20px; font-weight:800; font-size:13px; box-shadow:0 8px 20px rgba(0,163,255,0.12); }
.plan-header .plan-title{ margin:0; font-size:18px; font-weight:900; }
.plan-header .plan-sub{ color:var(--muted); font-size:13px; margin-top:4px; }
.plan-price{ display:flex; align-items:baseline; gap:10px; }
.price-big{ font-size:36px; font-weight:900; color:var(--brand-2); }
.price-label{ color:var(--muted); font-size:13px; }
.plan-setup{ color:var(--muted); font-size:13px; }
.plan-features{ list-style:none; padding:0; margin:12px 0; display:block; }
.plan-features li{ margin:8px 0; color:#dfefff; font-size:14px; display:flex; gap:8px; align-items:center; }
.plan-features .mdi-check-circle{ color:#2ecc71; font-size:16px; }
.plan-cta{ display:flex; gap:10px; margin-top:8px; }
.plan-cta .btn{ flex:1; }
.plan-foot{ display:flex; gap:12px; align-items:center; color:var(--muted); font-size:13px; margin-top:12px; }
.guarantee{ background: rgba(255,255,255,0.03); padding:6px 10px; border-radius:10px; }
.support{ background: rgba(255,255,255,0.03); padding:6px 10px; border-radius:10px; }

/* make plan cards responsive */
@media (max-width:980px){
  .plans-grid{ grid-template-columns:1fr; }
  .price-big{ font-size:30px; }
}
.setup{
  color:#c9c9c9;
  font-size:14px;
  margin-bottom:10px;
}
.features{
  margin:10px 0 14px 16px;
}
.features li{
  color:#cfcfcf;
  margin:6px 0;
  font-size: 14px;
}
.cta{
  margin-top:auto;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
#planos .btn{
  background:linear-gradient(180deg, var(--brand), var(--brand-2));
  color:#111;
  font-weight:800;
}
#planos .btn.outline{
  border:1px solid var(--brand-2);
  color:var(--brand-2);
}

/* ---------- FAQ ---------- */
.faq{
  display:grid;
  gap:12px;
  margin-top:24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item{
  background:#0f0f0f;
  border:var(--outline);
  border-radius:16px;
  padding:16px 18px;
  box-shadow:var(--shadow);
  transition: all .2s;
}
.faq-item:hover {
  border-color: rgba(0,163,255,.15);
}
.faq-item[open]{ 
  outline:1px solid rgba(0,163,255,.28); 
  background: linear-gradient(135deg, rgba(0,163,255,.08), transparent);
}
summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-weight:800;
  font-size:15px;
  color:var(--text);
}
summary::-webkit-details-marker{ display:none; }
.faq-desc{
  color:var(--muted);
  margin:12px 0 2px;
  font-size:14px;
  line-height: 1.6;
}
.faq-desc a {
  color: var(--brand);
  text-decoration: underline;
}

/* ---------- CTA Contato ---------- */
#contato {
  text-align: center;
}
#contato .cta {
  justify-content: center;
  margin-top: 24px;
}

/* ---------- Footer ---------- */
.footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding:28px 0;
  color:var(--muted);
  font-size:13px;
  text-align: center;
}
.footer p {
  margin: 8px 0;
}
.footer a{
  color:var(--brand);
  font-weight:500;
  text-decoration:none;
}
.footer a:hover{ color:var(--brand-2); }

/* ---------- Responsividade Mobile ---------- */
@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  
  .nav-links.active,
  .nav-actions.active {
    display: flex;
  }
  
  .nav-actions.active {
    padding-top: 0;
    gap: 8px;
  }
  
  .nav-actions .btn-nav {
    width: 100%;
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .plans-grid { 
    grid-template-columns:1fr; 
  }
  
  .channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
  
  .channel-card {
    padding: 20px 16px;
  }
  
  .channel-card i {
    font-size: 36px;
  }
  
  .channel-card h3 {
    font-size: 14px;
  }
  
  .channel-card p {
    font-size: 12px;
  }
}

@media (max-width:600px){
  .hero-actions{ 
    flex-direction:column; 
    align-items:stretch; 
  }
  
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero {
    padding: 40px 0 28px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer{ text-align:center; }
  
  .channels-highlight {
    flex-direction: column;
    text-align: center;
  }
}

/* Small screens: make webchat widget responsive */
@media (max-width: 480px) {
  #channel-chat-container {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    max-height: 80vh;
    border-radius: 12px;
  }
  .urgency-badge { display: none; }
  .sticky-cta { left: 12px; right: 12px; bottom: 12px; width: auto; border-radius: 12px; }
  #whatsapp-float { right: 12px; bottom: 18px; }
  .whatsapp-badge { display: none; }
}

@media (max-width: 400px) {
  .channels-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- WebChat Widget Styles ---------- */
#channel-chat-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 360px;
  max-height: 600px;
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  display: none;
  flex-direction: column;
  z-index: 9999;
  border: 1px solid rgba(0,163,255,.3);
}

#channel-chat-container.open {
  display: flex;
}

.channel-chat-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  padding: 16px;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.channel-chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
}

.channel-chat-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.channel-chat-info .channel-status {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 6px;
}

.channel-status-indicator {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

#channel-chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: #ffffff;
  max-height: 400px;
}

.channel-message {
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  max-width: 80%;
  word-wrap: break-word;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.5;
}

.channel-sent {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  margin-left: auto;
  text-align: right;
  border: 1px solid #90caf9;
  color: #0d47a1;
}

.channel-received {
  background: linear-gradient(135deg, #f5f5f5, #eeeeee);
  margin-right: auto;
  text-align: left;
  border: 1px solid #e0e0e0;
  color: #212121;
}

.channel-ack {
  margin-left: 6px;
  font-size: 12px;
}

.channel-media img,
.channel-media video {
  max-width: 100%;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 8px;
}

.channel-media-caption {
  font-size: 13px;
  margin-top: 6px;
  color: #333;
}

.channel-media-document {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  text-decoration: none;
  padding: 8px;
  background: #f0f0f0;
  border-radius: 8px;
}

#channel-chat-input-area {
  display: flex;
  padding: 12px;
  gap: 8px;
  background: #f9f9f9;
  border-radius: 0 0 16px 16px;
  border-top: 1px solid #e0e0e0;
}

#channel-chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
  background: #fff;
  color: #1a1a1a;
}

#channel-chat-input:focus {
  outline: none;
  border-color: var(--brand);
}

.channel-chat-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .2s;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-chat-btn:hover {
  transform: scale(1.1);
  background: var(--brand-2);
}

.channel-chat-btn.recording {
  background: #ff5c5c;
  animation: pulse 1s infinite;
}

#channel-audio-recording {
  display: none;
  padding: 12px;
  background: #fff3cd;
  border-top: 1px solid #ffc107;
  align-items: center;
  gap: 12px;
}

#channel-audio-timer {
  font-weight: 700;
  color: #d32f2f;
  font-size: 16px;
}

.channel-audio-controls {
  display: flex;
  gap: 8px;
}

#channel-chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,163,255,.4);
  z-index: 9998;
  transition: transform .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#channel-chat-toggle:hover {
  transform: scale(1.1);
}

/* ---------- CTA Flutuante Sticky ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff6b00, #ff0000);
  padding: 16px;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(255,107,0,.4);
  z-index: 9997;
  transform: translateY(100%);
  transition: transform .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.sticky-cta-text {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta-timer {
  background: rgba(0,0,0,.3);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.sticky-cta .btn {
  background: #fff;
  color: #ff0000;
  font-weight: 900;
  padding: 12px 28px;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

/* ---------- Urgency Badges ---------- */
.urgency-badge {
  background: linear-gradient(135deg, #ff0000, #ff6b00);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: pulseFire 2s infinite;
  box-shadow: 0 4px 12px rgba(255,0,0,.3);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- Social Proof Section ---------- */
.social-proof {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  padding: 60px 0;
  text-align: center;
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  border: var(--outline);
  text-align: left;
}

.testimonial-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--muted);
}

.company-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: .6;
  margin-top: 48px;
  filter: grayscale(100%);
}

.company-logo {
  font-size: 32px;
  color: var(--muted);
}

/* ---------- Lead Capture Quiz ---------- */
.lead-quiz {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  padding: 48px;
  border-radius: var(--radius);
  margin: 48px 0;
  text-align: center;
}

.lead-quiz h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 16px;
}

.lead-quiz p {
  color: rgba(255,255,255,.9);
  font-size: 16px;
  margin-bottom: 32px;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.quiz-option {
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.3);
  padding: 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s;
  color: #fff;
}

.quiz-option:hover,
.quiz-option.selected {
  background: rgba(255,255,255,.25);
  border-color: #fff;
  transform: translateY(-4px);
}

.quiz-option-number {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.quiz-option-label {
  font-size: 14px;
  opacity: .9;
}

@media (max-width: 600px) {
  .sticky-cta {
    padding: 12px;
  }
  
  .sticky-cta-content {
    flex-direction: column;
    gap: 8px;
  }
  
  .sticky-cta-text {
    font-size: 14px;
  }
  
  .sticky-cta .btn {
    width: 100%;
    padding: 12px 20px;
  }
  
  #channel-chat-container {
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    max-height: 80vh;
  }
  
  .social-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .company-logos {
    gap: 20px;
  }
  
  .company-logo {
    font-size: 24px;
  }
  
  .lead-quiz {
    padding: 28px 20px;
  }
  
  .quiz-options {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp button */
#whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(0);
}
#whatsapp-float a {
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}
.whatsapp-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  background: linear-gradient(135deg,#25D366,#00a86b);
  display:grid;
  place-items:center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.18);
}
.whatsapp-badge{
  background: rgba(0,0,0,0.7);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.whatsapp-badge .coupon{
  background: #fff;
  color:#111;
  padding:2px 6px;
  border-radius:6px;
  font-weight:900;
  font-size:12px;
}

@media (max-width:480px){
  #whatsapp-float { right: 12px; bottom: 80px; }
  .whatsapp-badge{ display:none; }
}
