:root{--purple:#8f85f4;--purple-deep:#763eff;--blue:#005eb8;--blue-deep:#003f82;--bg:#eff3ee;--ink:#1a2340;--bubble-bg:#fbfaff}*{box-sizing:border-box;margin:0;padding:0}body{font-family:Figtree,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif}.hero-wrapper,body{background:var(--bg);min-height:100vh}.hero-wrapper{width:100%;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}.hero-glow{position:absolute;width:1800px;height:1000px;left:50%;top:50%;transform:translate(-50%,-50%);background:radial-gradient(ellipse 50% 50% at 50% 50%,rgba(143,133,244,.5) 0,rgba(199,194,249,.25) 50%,rgba(227,224,252,.13) 75%,hsla(0,0%,100%,0) 100%);pointer-events:none}.hero-content{position:relative;z-index:1;width:100%;max-width:620px;padding:32px 24px 40px;display:flex;flex-direction:column;align-items:center;text-align:center;opacity:1;transition:opacity .25s ease}.hero-content.is-leaving{opacity:0}.hero-logo{height:40px;width:auto;margin-bottom:28px}.hero-title{font-size:clamp(26px,5vw,40px);font-weight:700;color:var(--purple-deep);line-height:1.25;margin-bottom:14px}.hero-subtitle,.hero-title{font-family:Campuni Demo,Figtree,sans-serif}.hero-subtitle{font-size:clamp(16px,3vw,22px);font-weight:500;color:var(--blue);line-height:1.4;margin-bottom:32px}.hero-subtitle strong{font-weight:700}.hero-input-row{width:100%;display:flex;align-items:center;gap:10px;background:var(--bg);border-radius:13px;border-right:4px solid var(--purple);border-bottom:4px solid var(--purple);padding:14px 12px 14px 20px;margin-bottom:22px}.hero-input{flex:1 1;border:none;background:transparent;resize:none;font-family:Figtree,sans-serif;font-size:16px;color:var(--ink);line-height:1.5;text-align:center;min-height:24px;max-height:120px}.hero-input:focus{outline:none}.hero-input::placeholder{color:#9e9fa6;font-weight:300}.hero-send-btn{flex-shrink:0;width:40px;height:40px;border-radius:50%;border:none;background:var(--purple);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .15s ease}.hero-send-btn:hover:not(:disabled){background:var(--purple-deep)}.hero-send-btn:disabled{opacity:.45;cursor:not-allowed}.chat-wrapper{align-items:flex-start;justify-content:center}.chat-container,.chat-wrapper{width:100%;min-height:100vh;display:flex}.chat-container{position:relative;max-width:500px;flex-direction:column;box-shadow:0 4px 32px rgba(118,62,255,.12)}.chat-panel-bg{position:absolute;inset:0;z-index:0;border-radius:inherit;background:linear-gradient(180deg,#ece9fc,#ded7fb);pointer-events:none}.chat-header,.messages-area,.question-area{position:relative;z-index:1}@media (min-width:760px){.chat-container{max-width:700px;min-height:calc(100vh - 48px);margin:24px 0;border-radius:20px;overflow:hidden}}@media (min-width:1100px){.chat-container{max-width:920px}}.chat-header{background:transparent;padding:22px 24px 14px;display:flex;align-items:center;justify-content:space-between;flex-shrink:0}.header-logo{height:24px;width:auto}.messages-area{flex:1 1;overflow-y:auto;padding:24px 16px 12px;display:flex;flex-direction:column;gap:12px;scroll-behavior:smooth}.messages-area::-webkit-scrollbar{width:4px}.messages-area::-webkit-scrollbar-track{background:transparent}.messages-area::-webkit-scrollbar-thumb{background:rgba(118,62,255,.25);border-radius:4px}.message{display:flex;gap:10px;align-items:flex-end;max-width:min(90%,480px);animation:fadeIn .2s ease}.message.bot{align-self:flex-start}.message.user{align-self:flex-end;flex-direction:row-reverse}@keyframes fadeIn{0%{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}@media (prefers-reduced-motion:no-preference){.chat-enter-fade{animation:fadeIn .8s ease .7s both}}.avatar{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}.avatar-bot{background:var(--blue)}.avatar-user{background:var(--purple)}.bubble{padding:11px 15px;border-radius:18px;font-size:14px;line-height:1.55}.message.bot .bubble{background:var(--bubble-bg);color:var(--ink);border-bottom-left-radius:4px}.message.user .bubble{background:#fff;color:var(--ink);border-bottom-right-radius:4px}.bubble.typing{display:flex;gap:5px;align-items:center;padding:14px 18px}.bubble.typing span{width:7px;height:7px;background:var(--blue);border-radius:50%;animation:bounce 1.2s infinite;opacity:.5}.bubble.typing span:nth-child(2){animation-delay:.2s}.bubble.typing span:nth-child(3){animation-delay:.4s}@keyframes bounce{0%,60%,to{transform:translateY(0);opacity:.5}30%{transform:translateY(-7px);opacity:1}}.solutions-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));grid-gap:10px;gap:10px;width:100%;animation:fadeIn .3s ease}.solution-card{background:#fff;border:1.5px solid #e3defa;border-radius:12px;padding:14px 12px;text-decoration:none;color:inherit;display:flex;flex-direction:column;gap:6px;transition:all .15s ease;cursor:pointer}.solution-card:hover{border-color:var(--purple);box-shadow:0 3px 14px rgba(143,133,244,.25);transform:translateY(-2px)}.solution-badge{font-size:10px;font-weight:700;color:var(--blue);text-transform:uppercase;letter-spacing:.5px;background:#e8eefb;padding:2px 8px;border-radius:20px;display:inline-block;width:-moz-fit-content;width:fit-content}.solution-name{font-size:13px;font-weight:600;color:#111;line-height:1.4}.solution-approx{font-size:10px;color:#8a6d00;background:#fff8e1;border-left:3px solid #f0c040;padding:4px 8px;border-radius:0 6px 6px 0;line-height:1.4}.solution-why{font-size:12px;color:var(--blue-deep);font-weight:600;line-height:1.45;background:#eef3ff;border-left:3px solid var(--blue);padding:5px 8px;border-radius:0 6px 6px 0}.solution-desc{font-size:11px;color:#666;line-height:1.45;flex:1 1}.solution-score{margin-top:4px}.solution-score,.ver-mais-btn{font-size:11px;color:var(--blue);font-weight:700}.ver-mais-btn{background:none;border:none;padding:0;font-family:Figtree,sans-serif;cursor:pointer;white-space:nowrap}.ver-mais-btn:hover{color:var(--blue-deep);text-decoration:underline}.load-more-btn{width:100%;background:var(--bubble-bg);border:1.5px solid var(--blue);border-radius:10px;padding:10px 16px;font-family:Figtree,sans-serif;font-size:13px;font-weight:600;color:var(--blue);cursor:pointer;transition:all .15s ease;animation:fadeIn .2s ease}.load-more-btn:hover{background:#fff}.no-solutions{background:var(--bubble-bg);border-radius:10px;padding:14px 16px;font-size:13px;color:#555;width:100%;animation:fadeIn .3s ease}.question-area{padding:12px 16px 20px;border-top:1px solid hsla(0,0%,100%,.5);background:transparent;flex-shrink:0}.question-card{background:#fff;border-radius:14px;box-shadow:0 4px 18px rgba(118,62,255,.14);overflow:hidden}.question-card-title{font-size:13px;font-weight:600;color:var(--ink);padding:14px 16px 10px}.question-card-options{display:flex;flex-direction:column}.question-card-option{display:flex;align-items:center;gap:10px;width:100%;background:none;border:none;border-top:1px solid #eee;padding:10px 16px;font-family:Figtree,sans-serif;font-size:12px;color:#444;text-align:left;cursor:pointer;transition:background .13s ease,color .13s ease}.question-card-option:hover:not(:disabled){background:#f6f4fe;color:var(--ink)}.question-card-option:disabled{opacity:.5;cursor:not-allowed}.question-card-num{width:18px;height:18px;border-radius:5px;background:#ede9fe;color:var(--purple-deep);font-size:10px;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0}.question-card-reply{border-top:1px solid #eee;background:#faf9fd;padding:10px 16px}.question-card-input{width:100%;border:1px solid #ddd;border-radius:8px;padding:7px 10px;font-family:Figtree,sans-serif;font-size:12px;background:#fff;color:var(--ink)}.question-card-input:focus{outline:none;border-color:var(--purple)}.question-card-input:disabled{opacity:.6}.question-card-error{font-size:11px;color:#a13d3d;background:#fdf2f2;padding:8px 16px;border-top:1px solid #f5dede}.header-restart-btn{background:#fff;border:1.5px solid var(--purple);color:var(--purple-deep);font-family:Figtree,sans-serif;font-size:11px;font-weight:700;border-radius:20px;padding:6px 12px;cursor:pointer;transition:background .13s ease}.header-restart-btn:hover{background:#f6f4fe}