/*
  e-Reobot - Base visual compartilhada
  Mantém as mesmas classes, variáveis e comportamentos visuais já existentes.
*/

:root{
  --bg:#eef4ff;
  --bg-2:#dfeafb;
  --bg-3:#c2d8f8;
  --surface:rgba(255,255,255,.78);
  --surface-strong:rgba(255,255,255,.92);
  --surface-dark:#0b179a;
  --surface-dark-2:#2338ff;
  --text:#0d2340;
  --muted:#385474;
  --line:rgba(13,35,64,.12);
  --primary:#1f5fae;
  --primary-2:#5b92e3;
  --accent:#18a6ff;
  --white:#ffffff;
  --shadow:0 16px 40px rgba(39, 87, 148, .14);
  --shadow-strong:0 22px 48px rgba(40,86,145,.18);
  --radius:24px;
  --radius-lg:32px;
  --max:1240px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    linear-gradient(180deg,#ffffff 0%,#f8fbff 20%,#eef5ff 42%,#dbe9ff 72%,#a9c8f4 100%);
  overflow-x:hidden;
  background-attachment:fixed;
}

body::before{
  content:"";
  position:fixed;inset:0;
  pointer-events:none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.55) 1px, transparent 1px),
    radial-gradient(circle, rgba(46,102,185,.12) 1px, transparent 1px);
  background-size:42px 42px, 96px 96px;
  background-position:0 0, 24px 36px;
  opacity:.22;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.28));
}

a{color:inherit;text-decoration:none}

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

.container{width:min(calc(100% - 32px), var(--max));margin:0 auto}

.section{padding:88px 0}

.muted{color:var(--muted)}

.site-header{
  position:sticky;top:0;z-index:55;
  background:rgba(255,255,255,.74);
  border-bottom:1px solid rgba(17,55,103,.10);
  box-shadow:0 10px 30px rgba(40,86,145,.10);
  backdrop-filter:blur(14px);
}

.nav{
  min-height:82px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
}

.brand{
  display:flex;gap:12px;align-items:center;
  font-weight:800;letter-spacing:.02em;color:var(--text);
}

.brand-badge{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;padding:6px;
  background:linear-gradient(135deg, rgba(216,232,255,.96), rgba(192,215,249,.88));
  border:1px solid rgba(17,55,103,.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.35);
}

.brand-badge img{
  width:100%;height:100%;object-fit:contain;
  filter:drop-shadow(0 0 8px rgba(63,125,221,.25));
}

.brand small{display:block;font-size:.72rem;color:var(--muted);font-weight:600;margin-top:2px}

.nav-links{display:flex;align-items:center;gap:22px;color:var(--muted);font-weight:600}

.nav-cta{display:flex;align-items:center;gap:12px}

.menu-btn{
  display:none;
  width:44px;height:44px;border-radius:14px;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(17,55,103,.16);
  color:#163a6a;
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:54px;padding:0 22px;border-radius:16px;
  border:1px solid transparent;
  font-weight:800;letter-spacing:.01em;
  cursor:pointer;transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow:0 14px 28px rgba(40,86,145,.22);
}

.btn-primary:hover{box-shadow:0 18px 34px rgba(40,86,145,.28)}

.btn-secondary{
  color:#123b73;
  background:rgba(255,255,255,.8);
  border-color:rgba(17,55,103,.12);
}

.btn-secondary:hover{background:rgba(255,255,255,.96)}

.btn-block{width:100%}

.hero{position:relative;overflow:hidden;padding:46px 0 34px}

.hero-shell{display:grid;gap:16px}

.hero-headline{min-height:88px;display:flex;align-items:flex-end}

.hero-title-typed{
  display:flex;align-items:baseline;gap:.12em;flex-wrap:nowrap;white-space:nowrap;
  margin:0;
  color:var(--text);
  font-size:clamp(1.42rem, 1.85vw, 1.78rem);
  line-height:1.04;
  letter-spacing:-.04em;
}

.hero-title-static{display:inline}

.hero-title-dynamic-wrap{
  display:inline-flex;align-items:baseline;gap:6px;
  min-width:17.8ch;justify-content:flex-start;white-space:nowrap;
}

.hero-title-dynamic{color:var(--accent)}

.typing-caret{
  display:inline-block;width:2px;height:.95em;
  background:currentColor;color:var(--text);
  vertical-align:-0.06em;
  animation:blink-caret .8s step-end infinite;
}

@keyframes blink-caret{0%,100%{opacity:1}50%{opacity:0}}

.hero-grid{
  display:grid;grid-template-columns:minmax(0,1.02fr) minmax(430px,.98fr);
  gap:38px;align-items:start;
}

.hero-copy{max-width:560px}

.hero-copy-body{display:grid;grid-template-rows:auto auto;align-content:start}

.hero-copy-top{max-width:548px}

.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:0}

.glow{
  position:absolute;width:520px;height:520px;border-radius:50%;
  background:radial-gradient(circle, rgba(51,212,255,.20), rgba(51,212,255,.06), transparent 68%);
  filter:blur(10px);animation:floatGlow 7s ease-in-out infinite;
}

.glow.g2{
  width:380px;height:380px;top:80px;right:10px;
  background:radial-gradient(circle, rgba(111,141,255,.18), rgba(111,141,255,.05), transparent 68%);
  animation-duration:8s;
}

@keyframes floatGlow{0%,100%{transform:translateY(0)}50%{transform:translateY(-18px)}}

.section-head h2{
  margin:0 0 12px;
  font-size:clamp(1.9rem, 3vw, 3.35rem);
  line-height:1.05;
  letter-spacing:-.04em;
  color:var(--text);
}

.section-head p{
  margin:0;color:var(--muted);line-height:1.75;font-size:1.02rem;
}

.cta-band{
  position:relative;overflow:hidden;
  border-radius:34px;padding:42px 40px;
  background:
    radial-gradient(circle at 16% 20%, rgba(145,188,245,.40), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(106,149,218,.26), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(231,241,255,.90));
  border:1px solid var(--line);
  box-shadow:0 22px 48px rgba(40,86,145,.14);
}

.cta-band::after{
  content:"";
  position:absolute;inset:auto -10% -40% auto;
  width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle, rgba(79,134,216,.16), transparent 68%);
  pointer-events:none;
}

.cta-band-layout{
  display:grid;grid-template-columns:minmax(0, 1.28fr) minmax(280px, 360px);
  gap:34px;align-items:center;
}

.cta-copy{max-width:none}

.cta-band h3{
  margin:0 0 12px;
  color:var(--text);
  white-space:nowrap;
  font-size:clamp(1.7rem, 3.15vw, 3rem);
  line-height:1.05;
  letter-spacing:-.045em;
}

.cta-band p{
  margin:0 0 22px;color:var(--muted);line-height:1.8
}

.cta-band .panel-visual-image img{
  width:100%;height:100%;min-height:268px;
  object-fit:cover;object-position:center;
  border-radius:inherit;
}

.stats-band{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;margin-top:28px;
}

.stat{
  padding:24px 18px;border-radius:22px;
  background:rgba(255,255,255,.84);border:1px solid var(--line);
  box-shadow:0 14px 34px rgba(40,86,145,.10);
  text-align:center;
}

.stat strong{display:block;margin-bottom:10px;font-size:1.28rem;color:var(--text)}

.stat span{display:block;color:var(--muted);line-height:1.65;font-size:.95rem}

.section-controle-carousel{padding-top:72px;padding-bottom:72px}

.section-controle-carousel .section-head{margin-bottom:28px}

#controle .section-head h2{
  white-space:nowrap;
  font-size:clamp(1.85rem, 3.45vw, 3.5rem);
}

#controle .section-head p{
  white-space:nowrap;
  font-size:clamp(.92rem, 1.18vw, 1.05rem);
}

.control-wrap{display:block;max-width:1180px;margin:0 auto}

.control-carousel{
  position:relative;max-width:1120px;margin:0 auto;padding:0 58px 12px;
}

.control-carousel-window{overflow:hidden;border-radius:40px}

.control-carousel-track{
  display:flex;width:100%;
  transition:transform .85s cubic-bezier(.22,.61,.36,1);
  will-change:transform;
}

.stack-card{
  position:relative;
  flex:0 0 100%;
  width:100%;
  min-height:56vh;
  margin:0;
  padding:34px 38px;
  display:flex;align-items:center;
  border-radius:40px;overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 80px rgba(16,34,84,.28);
}

.stack-card:nth-child(1){background:linear-gradient(135deg,#000a68 0%, #0617b7 100%)}

.stack-card:nth-child(2){background:linear-gradient(135deg,#0a17cc 0%, #2137ff 100%)}

.stack-card:nth-child(3){background:linear-gradient(135deg,#001b83 0%, #1334d8 100%)}

.stack-card:nth-child(4){background:linear-gradient(135deg,#04106f 0%, #0f25be 100%)}

.stack-card::before{
  content:"";
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.18), transparent 18%),
    radial-gradient(circle at 82% 56%, rgba(255,255,255,.08), transparent 22%);
  pointer-events:none;
}

.carousel-slide{opacity:.7;transition:opacity .45s ease, transform .45s ease}

.carousel-slide.is-active{opacity:1}

.stack-card .panel-grid{
  position:relative;z-index:2;
  display:grid;grid-template-columns:minmax(320px,.9fr) minmax(360px,1.1fr);
  gap:44px;align-items:center;width:100%;
}

.stack-card .panel-copy h3{
  margin:0 0 22px;
  color:#fff;
  font-size:clamp(2.4rem, 4.8vw, 4.2rem);
  line-height:.95;
  letter-spacing:-.05em;
  max-width:10ch;
}

.stack-card .panel-copy p{
  margin:0;
  color:rgba(255,255,255,.92);
  font-size:1.08rem;
  line-height:1.45;
  max-width:20ch;
}

.stack-card .panel-list{
  display:grid;gap:14px;margin-top:28px;width:100%;max-width:560px;
}

.stack-card .panel-list div{
  width:100%;min-height:82px;padding:14px 16px;
  display:flex;align-items:center;
  border-radius:16px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
  color:#f6fbff;
}

.stack-card .panel-visual-image,
.stack-card .panel-card-visual{
  position:relative;
  width:100%;height:100%;
  min-height:360px;
  border-radius:34px;overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 18px 36px rgba(3,10,70,.18);
}

.stack-card .panel-visual-image img,
.stack-card .panel-card-visual img,
.stack-card .panel-card-visual picture{
  width:100%;height:100%;min-height:360px;display:block;
}

.stack-card .panel-visual-image img,
.stack-card .panel-card-visual img{
  object-fit:cover;object-position:center;
}

.stack-card:nth-child(1) .panel-copy p{
  white-space:nowrap;
  max-width:none;
  font-size:clamp(.78rem, .92vw, .9rem);
  line-height:1.28;
  letter-spacing:-.01em;
}

.stack-card:nth-child(2) .panel-grid,
.stack-card:nth-child(3) .panel-grid{grid-template-columns:minmax(320px,.9fr) minmax(420px,1.1fr)}

.stack-card:nth-child(2) .panel-copy p,
.stack-card:nth-child(3) .panel-copy p,
.stack-card:nth-child(4) .panel-copy p{
  white-space:nowrap;max-width:none;line-height:1.3
}

.stack-card:nth-child(2) .panel-copy p{font-size:clamp(.82rem, .98vw, .98rem)}

.stack-card:nth-child(3) .panel-copy p{font-size:clamp(.78rem, .92vw, .94rem)}

.stack-card:nth-child(4) .panel-copy p{
  font-size:clamp(.68rem, .82vw, .82rem);
  letter-spacing:-.01em;
}

.stack-card:nth-child(4) .panel-grid{
  grid-template-columns:minmax(440px,1.06fr) minmax(320px,.94fr)
}

.carousel-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:44px;height:44px;border-radius:50%;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.92);color:#1f5fae;
  display:inline-flex;align-items:center;justify-content:center;
  padding:0;font-size:1.35rem;font-weight:700;line-height:1;
  cursor:pointer;z-index:6;
  backdrop-filter:blur(12px);
  box-shadow:0 12px 24px rgba(3,10,70,.18);
  transition:transform .25s ease, background .25s ease, color .25s ease;
}

.carousel-arrow:hover{
  transform:translateY(-50%) scale(1.06);
  background:#fff;color:#174377;
}

.carousel-arrow-prev{left:4px}

.carousel-arrow-next{right:4px}

.carousel-controls{
  display:flex;align-items:center;justify-content:center;gap:18px;
  margin-top:18px;
}

.carousel-dots{display:flex;align-items:center;gap:8px}

.carousel-dot{
  width:10px;height:10px;border-radius:999px;
  border:0;padding:0;background:rgba(18,59,115,.24);
  cursor:pointer;transition:width .25s ease, background .25s ease, transform .25s ease;
}

.carousel-dot.is-active{width:28px;background:#1f5fae}

#solucoes .section-head h2,
#solucoes .section-head p{white-space:nowrap}

.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}

.service-card{
  position:relative;min-height:100%;
  padding:28px;border-radius:28px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:transform .28s ease, border-color .28s ease;
}

.service-card:hover{transform:translateY(-6px);border-color:rgba(31,95,174,.22)}

.service-card::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(120deg, transparent 10%, rgba(79,134,216,.12) 30%, transparent 48%);
  transform:translateX(-120%);transition:transform .9s ease;
}

.service-card:hover::before{transform:translateX(120%)}

.service-card h3{margin:0 0 10px;font-size:1.14rem;color:var(--text)}

.service-card p{margin:0;color:var(--muted);line-height:1.72}

.service-tag{display:inline-block;margin-top:14px;color:#174377;font-weight:800;font-size:.92rem}

.logo-carousel-wrap{
  position:relative;overflow:hidden;
  mask-image:linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.logo-track{
  display:flex;gap:16px;width:max-content;
  animation:scrollLogos 30s linear infinite;
}

.logo-track.reverse{animation-direction:reverse;animation-duration:34s;margin-top:16px}

@keyframes scrollLogos{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.logo-card{
  flex:0 0 auto;min-width:180px;height:120px;
  display:flex;align-items:center;justify-content:center;
  padding:16px 20px;border-radius:18px;
  background:rgba(255,255,255,.82);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.contact-grid{
  display:grid;grid-template-columns:.92fr 1.08fr;gap:24px;align-items:stretch;
}

.card{
  padding:30px;border-radius:30px;
  background:var(--surface);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.contact-card h3,.form-card h3{margin:14px 0 12px;font-size:1.55rem;color:var(--text)}

.contact-card p,.form-card p{margin:0 0 20px;color:var(--muted);line-height:1.8}

.contact-list{display:grid;gap:14px}

.contact-item{
  display:flex;gap:14px;align-items:flex-start;
  padding:16px;border-radius:18px;
  background:rgba(255,255,255,.72);border:1px solid var(--line);
}

.contact-item img,.contact-icon{
  width:46px;height:46px;border-radius:14px;flex:0 0 46px;
  display:grid;place-items:center;
}

.contact-icon{
  background:linear-gradient(135deg, rgba(216,232,255,.96), rgba(192,215,249,.88));
  border:1px solid var(--line);
}

.contact-item h4{margin:2px 0 6px;font-size:1rem;color:var(--text)}

.contact-item a,.contact-item span{color:var(--muted);line-height:1.6}

.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}

form{display:grid;gap:16px}

.field{display:grid;gap:8px}

.field.full{grid-column:1 / -1}

.field label{font-weight:700;font-size:.94rem;color:#123b73}

.field input,.field select,.field textarea{
  width:100%;padding:15px 16px;border-radius:16px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(17,55,103,.14);
  color:#0d2340;font:inherit;outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input::placeholder,.field textarea::placeholder{color:#5d7796}

.field input:focus,.field select:focus,.field textarea:focus{
  border-color:rgba(31,95,174,.48);
  box-shadow:0 0 0 4px rgba(79,134,216,.14);
  background:rgba(255,255,255,.97);
}

.field textarea{min-height:110px;resize:vertical}

.success-message{
  display:none;padding:14px 16px;border-radius:16px;
  background:rgba(223,246,235,.95);
  border:1px solid rgba(59,143,108,.18);
  color:#18583b;font-weight:700;
}

#faq .section-head h2{margin-bottom:10px}

.faq{display:grid;gap:14px}

.faq-item{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:20px;overflow:hidden;
}

.faq-question{
  width:100%;background:transparent;border:0;
  color:var(--text);font:inherit;font-weight:800;
  padding:20px 22px;display:flex;justify-content:space-between;align-items:center;
  text-align:left;cursor:pointer;
}

.faq-answer{
  max-height:0;overflow:hidden;transition:max-height .3s ease;
  color:var(--muted);line-height:1.75;padding:0 22px;
}

.faq-item.active .faq-answer{padding:0 22px 20px}

.faq-question span:last-child{transition:transform .25s ease;color:#174377}

.faq-item.active .faq-question span:last-child{transform:rotate(45deg)}

footer{
  padding:28px 0 98px;
  border-top:1px solid var(--line);
  background:rgba(255,255,255,.55);
}

.footer-wrap{
  display:grid;grid-template-columns:1fr auto 1fr;
  gap:16px;align-items:center;color:var(--muted);
}

.footer-wrap > div:first-child{justify-self:start}

.footer-links{display:flex;gap:18px;flex-wrap:wrap;justify-self:end}

.footer-social{
  display:flex;align-items:center;justify-content:center;gap:14px;
}

.footer-social a{
  width:48px;height:48px;border-radius:50%;
  display:inline-flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(17,55,103,.14);
  box-shadow:0 10px 24px rgba(40,86,145,.12);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color:#123b73;
}

.footer-social a:hover{
  transform:translateY(-3px) scale(1.04);
  border-color:rgba(31,95,174,.28);
  box-shadow:0 16px 28px rgba(40,86,145,.18);
}

.footer-social svg{width:22px;height:22px;display:block;fill:currentColor}

.sticky-mobile{
  display:none;
  position:fixed;left:14px;right:14px;bottom:14px;z-index:80;
  padding:10px;border-radius:22px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(17,55,103,.12);
  box-shadow:0 16px 36px rgba(40,86,145,.16);
  backdrop-filter:blur(14px);
  gap:10px;
}

.sticky-mobile .btn{flex:1;min-height:50px}

.reveal{
  opacity:0;transform:translateY(28px) scale(.985);
  transition:opacity .75s ease, transform .75s ease;
}

.reveal.visible{opacity:1;transform:translateY(0) scale(1)}

.faq-chatbot-toggle-pulse{position:absolute!important;inset:-6px!important;border-radius:inherit!important;border:2px solid rgba(24,166,255,.28)!important;animation:eReobotChatPulse 1.9s ease-out infinite!important;z-index:-1!important}

@keyframes eReobotChatPulse{0%{transform:scale(.92);opacity:.9}80%,100%{transform:scale(1.18);opacity:0}}

.faq-chatbot-reset,.faq-chatbot-close{width:38px!important;height:38px!important;border:0!important;border-radius:999px!important;background:rgba(255,255,255,.14)!important;color:#fff!important;font-weight:900!important;line-height:1!important;cursor:pointer!important}

.faq-chatbot-reset{font-size:1.65rem!important}

.faq-chatbot-close{font-size:1.25rem!important}

.faq-chatbot-reset:hover,.faq-chatbot-close:hover{background:rgba(255,255,255,.24)!important}

.faq-chatbot-logo{width:44px!important;height:44px!important;border-radius:15px!important;display:grid!important;place-items:center!important;background:#fff!important;color:var(--primary)!important;font-weight:950!important;box-shadow:0 10px 22px rgba(7,31,61,.18)!important}

.faq-chatbot-title{display:grid!important;gap:3px!important;min-width:0!important}

.faq-chatbot-title strong{font-size:1rem!important;line-height:1.15!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}

.faq-chatbot-title small{color:rgba(255,255,255,.80)!important;font-size:.72rem!important;font-weight:800!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}

.faq-chatbot-subheader{display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important;padding:9px 16px!important;background:#fff!important;border-bottom:1px solid var(--line)!important;color:var(--muted)!important;font-size:.75rem!important;font-weight:800!important}

.faq-chatbot-message-system{align-self:center!important;max-width:100%!important;padding:6px 10px!important;border-radius:999px!important;background:rgba(31,95,174,.08)!important;color:var(--muted)!important;font-size:.72rem!important;font-weight:900!important;box-shadow:none!important}

.faq-chatbot-typing{width:max-content!important;display:inline-flex!important;align-items:center!important;gap:4px!important}

.faq-chatbot-typing span{width:6px!important;height:6px!important;border-radius:50%!important;background:rgba(31,95,174,.52)!important;animation:eReobotTyping .9s ease-in-out infinite!important}

.faq-chatbot-typing span:nth-child(2){animation-delay:.12s!important}

.faq-chatbot-typing span:nth-child(3){animation-delay:.24s!important}

@keyframes eReobotTyping{0%,100%{transform:translateY(0);opacity:.38}50%{transform:translateY(-4px);opacity:1}}

.faq-chatbot-suggestions{padding:12px 14px 14px!important;background:#fff!important;border-top:1px solid var(--line)!important;display:flex!important;flex-wrap:wrap!important;gap:8px!important;max-height:168px!important;overflow:auto!important}

.faq-chatbot-option,.faq-chatbot-link{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:40px!important;padding:9px 13px!important;border-radius:999px!important;border:1px solid rgba(31,95,174,.24)!important;background:#fff!important;color:var(--primary)!important;font-weight:900!important;font-size:.81rem!important;line-height:1.2!important;cursor:pointer!important;text-align:center!important;font-family:inherit!important;text-decoration:none!important;transition:transform .22s ease,background .22s ease,color .22s ease,border-color .22s ease,box-shadow .22s ease!important}

.faq-chatbot-option:hover,.faq-chatbot-link:hover{transform:translateY(-2px)!important;background:linear-gradient(135deg,var(--primary),var(--primary-2))!important;color:#fff!important;border-color:transparent!important;box-shadow:0 10px 22px rgba(31,95,174,.18)!important}

.faq-chatbot-option.is-primary,.faq-chatbot-link.is-primary{background:linear-gradient(135deg,var(--primary),var(--primary-2))!important;color:#fff!important;border-color:transparent!important;box-shadow:0 10px 22px rgba(31,95,174,.18)!important}

.faq-chatbot-send:hover{filter:brightness(1.04)!important}

.faq-chatbot-send:disabled{opacity:.7!important;cursor:not-allowed!important}

@media (max-width:840px){.faq-chatbot{right:12px!important;bottom:84px!important}.faq-chatbot-toggle{width:58px!important;height:58px!important}.faq-chatbot-box{right:-4px!important;bottom:74px!important;width:min(380px,calc(100vw - 16px))!important;height:min(590px,calc(100vh - 184px))!important;border-radius:24px!important}.faq-chatbot-header{grid-template-columns:36px 40px minmax(0,1fr) 36px!important;min-height:70px!important}.faq-chatbot-logo{width:40px!important;height:40px!important}.faq-chatbot-message{font-size:.89rem!important}.faq-chatbot-suggestions{max-height:146px!important}.faq-chatbot-option,.faq-chatbot-link{font-size:.78rem!important;min-height:38px!important;padding:8px 11px!important}.faq-chatbot-form{grid-template-columns:minmax(0,1fr) 74px!important;gap:8px!important}.faq-chatbot-send{padding:0 12px!important}}
