
:root {
  --roxo: #3f2a86;
  --roxo-2: #5a3bb2;
  --roxo-3: #241b5c;
  --texto: #191438;
  --muted: #6b6384;
  --linha: #e8e0f7;
  --lilas: #f4efff;
  --creme: #fff8ec;
  --ouro: #e7c76a;
  --erro: #9b2c2c;
  --shadow: 0 24px 70px rgba(48, 31, 104, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--texto);
  background: #fffdf9;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--roxo);
  font-size: 42px;
  font-weight: 700;
  line-height: .9;
  letter-spacing: -1px;
}

.logo span {
  display: block;
  margin-left: 44px;
  margin-top: 2px;
  font-family: Inter, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--roxo-2);
  letter-spacing: 0;
}

.btn {
  border: none;
  border-radius: 12px;
  min-height: 54px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--roxo-2), var(--roxo));
  color: white;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(63, 42, 134, .22);
}

.btn:hover { filter: brightness(.96); }

.btn.secondary {
  background: transparent;
  color: var(--roxo);
  box-shadow: none;
  text-decoration: underline;
}

.btn.light {
  background: white;
  color: var(--roxo);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 224, 247, .8);
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
}

.navlinks a:hover { color: var(--roxo-2); }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 14%, rgba(91, 59, 178, .13), transparent 36%),
    linear-gradient(90deg, #fffdf9 0%, #fffaf4 52%, #f2e9df 100%);
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr .94fr;
  align-items: center;
  gap: 48px;
}

.hero h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--roxo);
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -2.5px;
}

.hero h2 {
  max-width: 560px;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.22;
}

.hero p {
  max-width: 540px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.safe {
  margin-top: 28px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-width: 520px;
  height: 520px;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(63,42,134,.07)),
    url("https://images.unsplash.com/photo-1499952127939-9bbf5af6c51c?auto=format&fit=crop&w=900&q=82");
  background-size: cover;
  background-position: center 28%;
  box-shadow: var(--shadow);
}

.quote-card {
  position: absolute;
  left: -8px;
  bottom: 70px;
  width: 270px;
  padding: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--linha);
  border-radius: 22px;
  box-shadow: 0 18px 52px rgba(48, 31, 104, .14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.45;
}

.quote-card::before {
  content: "“";
  display: block;
  margin-bottom: 10px;
  color: var(--roxo-2);
  font-size: 54px;
  line-height: .45;
  font-weight: 700;
}

.pain {
  padding: 46px 0 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
  border-top: 1px solid rgba(232,224,247,.8);
  border-bottom: 1px solid rgba(232,224,247,.8);
}

.center-title {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.25;
}

.pain-card {
  border: 1px solid var(--linha);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 52px rgba(48,31,104,.08);
  padding: 26px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.pain-item {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
  font-weight: 800;
  border-right: 1px solid var(--linha);
}

.pain-item:last-child { border-right: none; }

.icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--roxo-2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--roxo-2);
  font-weight: 900;
  font-size: 23px;
}

.pain-foot {
  margin: 18px 0 0;
  color: var(--roxo);
  text-align: center;
  font-weight: 900;
}

.about { padding: 72px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr .74fr;
  gap: 46px;
  align-items: center;
}

.section-kicker {
  color: var(--roxo-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.section-title {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--roxo);
  font-size: 42px;
  line-height: 1.1;
}

.text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-list { display: grid; gap: 18px; }

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}

.feature strong { display: block; margin-bottom: 4px; }

.feature span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.phone {
  width: 230px;
  height: 430px;
  margin: auto;
  border: 12px solid #171525;
  border-radius: 40px;
  background: #fbf8ff;
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  padding: 24px 16px;
  position: relative;
}

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 70px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #222;
}

.phone-logo {
  margin: 22px 0 18px;
  text-align: center;
  color: var(--roxo);
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 24px;
}

.bubble {
  background: #fff7e8;
  border: 1px solid #f3dfb9;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.input-fake {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  height: 42px;
  border: 1px solid var(--linha);
  border-radius: 999px;
  background: white;
  color: #aaa;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
}

.method {
  padding: 62px 0;
  background: linear-gradient(135deg, var(--roxo-3), var(--roxo));
  color: white;
}

.method-grid {
  display: grid;
  grid-template-columns: 245px 1fr 330px;
  gap: 44px;
  align-items: center;
}

.dionisio {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: url("../img/dionisio.png");
  background-size: cover;
  background-position: center;
  border: 4px solid var(--ouro);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}

.method h2 {
  margin: 0 0 18px;
  color: white;
  font-family: Georgia, serif;
  font-size: 34px;
}

.method p {
  color: rgba(255,255,255,.88);
  line-height: 1.7;
}

.method-name {
  margin-top: 18px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.method-role { color: rgba(255,255,255,.8); }

.method-points {
  display: grid;
  gap: 20px;
  border-left: 1px solid rgba(255,255,255,.25);
  padding-left: 32px;
}

.method-point {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}

.mini { color: var(--ouro); font-size: 24px; }

.warning { padding: 28px 0; }

.warning-card {
  background: linear-gradient(90deg,#fff8df,#fffdf7);
  border: 1px solid #f1dfaa;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #4f4565;
  line-height: 1.6;
}

.warning-card strong { display: block; color: var(--texto); margin-bottom: 4px; }

.test-cta { padding: 38px 0 64px; }

.cta-card {
  background: linear-gradient(135deg,#fff,#f7f2ff);
  border: 1px solid var(--linha);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.cta-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  color: var(--roxo);
  font-size: 38px;
}

.cta-card p {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.footer-band {
  background: linear-gradient(135deg,var(--roxo-3),var(--roxo));
  color: white;
  padding: 30px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
}

.chat-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(91,59,179,.13), transparent 35%),
    linear-gradient(180deg,#fffdf9 0%,#fbf8ff 100%);
  padding: 28px;
}

.chat-shell { max-width: 980px; margin: 0 auto; }

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.chat-box {
  background: white;
  border: 1px solid var(--linha);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.chat-intro {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.chat-intro h1 {
  margin: 10px 0;
  color: var(--roxo);
  font-family: Georgia, serif;
  font-size: 48px;
}

.chat-intro p { color: var(--muted); line-height: 1.6; }

.chat-input {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  border: 1px solid var(--linha);
  border-radius: 20px;
  padding: 18px;
  font-size: 17px;
  line-height: 1.55;
  outline: none;
  background: #fffdfb;
  color: var(--texto);
}

.chat-input:focus {
  border-color: var(--roxo-2);
  box-shadow: 0 0 0 4px rgba(91,59,179,.12);
}

.chat-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.status { color: var(--muted); font-size: 14px; }

.answer {
  display: none;
  margin-top: 24px;
  border: 1px solid var(--linha);
  border-radius: 22px;
  overflow: hidden;
  background: white;
}

.answer.visible { display: block; }

.answer-title {
  padding: 15px 18px;
  background: var(--lav);
  color: var(--roxo);
  font-weight: 900;
  border-bottom: 1px solid var(--linha);
}

.answer-body {
  padding: 22px;
  white-space: pre-wrap;
  font-size: 17px;
  line-height: 1.7;
}

.error { color: var(--erro); font-weight: 800; }

.thinking {
  display: none;
  text-align: center;
  margin: 24px 0;
  color: var(--roxo);
  font-weight: 900;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--roxo-2);
  animation: pulse 1.3s infinite ease-in-out;
}

.dots span:nth-child(2) { animation-delay: .2s; }
.dots span:nth-child(3) { animation-delay: .4s; }

@keyframes pulse {
  0%,100% { transform: scale(.65); opacity: .35; }
  50% { transform: scale(1.25); opacity: 1; }
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(91,59,179,.16), transparent 35%),
    linear-gradient(180deg,#fffdf9 0%,#fbf8ff 100%);
  padding: 22px;
}

.login-card {
  width: 100%;
  max-width: 430px;
  background: white;
  border: 1px solid var(--linha);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.login-card h1 {
  margin: 20px 0 8px;
  color: var(--roxo);
  font-family: Georgia, serif;
  font-size: 38px;
}

.login-card p { color: var(--muted); line-height: 1.5; }

.login-field {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.login-field input {
  height: 52px;
  border: 1px solid var(--linha);
  border-radius: 14px;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}

.login-field input:focus {
  border-color: var(--roxo-2);
  box-shadow: 0 0 0 4px rgba(91,59,179,.12);
}

.login-error {
  display: none;
  color: var(--erro);
  font-weight: 800;
  margin-top: 12px;
}

.logout {
  color: var(--roxo);
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 900px) {
  .navlinks { display: none; }
  .hero-grid, .about-grid, .method-grid, .cta-card { grid-template-columns: 1fr; }
  .hero h1 { font-size: 50px; }
  .hero-visual { min-height: 400px; }
  .hero-photo { height: 400px; }
  .quote-card { left: 18px; bottom: 22px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-item { border-right: none; border-bottom: 1px solid var(--linha); }
  .pain-item:last-child { border-bottom: none; }
  .method-points { border-left: none; padding-left: 0; }
  .footer-row { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  body, .chat-page { padding: 14px; }
  .container { padding: 0 16px; }
  .nav { height: 72px; }
  .logo { font-size: 34px; }
  .logo span { font-size: 13px; margin-left: 36px; }
  .hero h1 { font-size: 42px; }
  .hero h2 { font-size: 24px; }
  .hero-visual { display: none; }
  .section-title { font-size: 34px; }
  .cta-card { padding: 28px; }
  .cta-card h2 { font-size: 30px; }
  .chat-box { padding: 22px; }
  .chat-intro h1 { font-size: 34px; }
  .btn { width: 100%; }
}


/* Conversa em bolhas */
.conversation{display:grid;gap:18px;margin-top:26px}
.chat-message{display:grid;gap:7px;max-width:82%}
.chat-message.user{justify-self:end}
.chat-message.clara{justify-self:start}
.chat-label{font-size:13px;font-weight:900;color:var(--muted)}
.chat-message.user .chat-label{text-align:right}
.chat-bubble{padding:18px 20px;border-radius:22px;font-size:17px;line-height:1.7;white-space:pre-wrap;box-shadow:0 12px 32px rgba(48,31,104,.08)}
.chat-message.user .chat-bubble{background:linear-gradient(135deg,var(--roxo-2),var(--roxo));color:#fff;border-bottom-right-radius:7px}
.chat-message.clara .chat-bubble{background:#fff;color:var(--texto);border:1px solid var(--linha);border-bottom-left-radius:7px}
.thinking-bubble{justify-self:start;max-width:82%;margin-top:18px;display:none}
.thinking-bubble .chat-bubble{background:var(--lav);color:var(--roxo);font-weight:900;border:1px solid var(--linha)}
.thinking-phrase{display:block;margin-bottom:10px}
@media(max-width:560px){.chat-message,.thinking-bubble{max-width:100%}}


/* Tópicos do método / debug leve */
.method-toggle-row{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  color:var(--muted);
  font-size:14px;
  font-weight:800;
}

.method-toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  user-select:none;
}

.method-toggle input{
  width:18px;
  height:18px;
  accent-color:var(--roxo-2);
}

.method-topics{
  margin-top:10px;
  padding:12px 14px;
  background:#f3f1f7;
  border:1px solid #e1ddeb;
  border-radius:14px;
  color:#706982;
  font-size:13px;
  line-height:1.45;
}

.method-topics-title{
  font-weight:900;
  color:#5d5477;
  margin-bottom:6px;
}

.method-topic-item{
  display:block;
  margin-top:4px;
}

.method-topic-item strong{
  color:#51486b;
}

.chat-app-page{padding:0;overflow:hidden}
.chat-full-app{height:100vh;display:grid;grid-template-rows:auto 1fr auto;background:radial-gradient(circle at top right,rgba(91,59,179,.12),transparent 36%),linear-gradient(180deg,#fffdf9 0%,#fbf8ff 100%)}
.chat-topbar{min-height:86px;padding:18px 44px;display:flex;align-items:center;justify-content:space-between;gap:24px;background:rgba(255,253,249,.88);backdrop-filter:blur(14px);border-bottom:1px solid rgba(232,224,247,.8)}
.chat-topbar-actions{display:flex;align-items:center;gap:18px;color:var(--roxo);font-weight:900}
.plain-btn{border:1px solid var(--linha);background:#fff;color:var(--roxo);border-radius:999px;padding:10px 14px;font-weight:900;cursor:pointer}
.method-toggle.compact{display:flex;align-items:center;gap:8px;color:var(--muted);font-size:14px;font-weight:900;cursor:pointer}
.chat-main{overflow-y:auto;padding:38px 24px 28px}
.chat-welcome{max-width:780px;margin:0 auto 24px;text-align:center}
.chat-welcome h1{margin:8px 0 10px;color:var(--roxo);font-family:Georgia,serif;font-size:54px;line-height:1.06}
.chat-welcome p{color:var(--muted);font-size:18px;line-height:1.55;margin:0}
.conversation-full{max-width:960px;margin:0 auto;padding-bottom:10px}
.conversation-full .chat-message{max-width:78%}
.conversation-full .chat-message.user{justify-self:end}
.conversation-full .chat-message.clara{justify-self:start}
.conversation-full .chat-bubble{font-size:17px;line-height:1.75}
.thinking-bubble{max-width:960px;margin:18px auto 0}
.thinking-bubble .chat-bubble{width:max-content;max-width:78%}
.chat-composer{padding:18px 24px 20px;background:rgba(255,253,249,.94);backdrop-filter:blur(14px);border-top:1px solid rgba(232,224,247,.9)}
.composer-inner{max-width:960px;margin:0 auto;display:grid;grid-template-columns:1fr auto;gap:12px;align-items:end}
.composer-input{width:100%;min-height:58px;max-height:180px;resize:none;border:1px solid var(--linha);border-radius:20px;padding:17px 18px;outline:none;background:#fff;color:var(--texto);font-size:17px;line-height:1.5;box-shadow:0 12px 35px rgba(48,31,104,.07)}
.composer-input:focus{border-color:var(--roxo-2);box-shadow:0 0 0 4px rgba(91,59,179,.11)}
.composer-btn{min-width:132px;height:58px;box-shadow:0 12px 28px rgba(63,42,134,.2)}
.composer-meta{max-width:960px;margin:9px auto 0;display:flex;justify-content:space-between;gap:16px;color:var(--muted);font-size:13px;line-height:1.4}
.method-topic-item strong{display:none}
.method-topic-item::before{content:"• ";font-weight:900}
@media(max-width:700px){.chat-topbar{padding:14px 18px;align-items:flex-start}.chat-topbar-actions{flex-wrap:wrap;justify-content:flex-end;gap:10px}.chat-welcome h1{font-size:38px}.conversation-full .chat-message{max-width:100%}.composer-inner{grid-template-columns:1fr}.composer-btn{width:100%}.composer-meta{flex-direction:column}}


/* Correção v6: scroll natural da página */
.chat-app-page{
  padding:0 !important;
  overflow:auto !important;
  min-height:100vh;
}

.chat-full-app{
  min-height:100vh !important;
  height:auto !important;
  display:block !important;
}

.chat-main{
  overflow:visible !important;
  padding:38px 24px 160px !important;
}

.chat-composer{
  position:sticky;
  bottom:0;
  z-index:20;
}

.conversation-full{
  padding-bottom:40px;
}

.conversation-full .chat-message{
  max-width:78%;
}

.conversation-full .chat-bubble{
  overflow-wrap:anywhere;
}

.thinking-bubble{
  max-width:960px;
}

@media(max-width:700px){
  .chat-main{
    padding:26px 14px 190px !important;
  }

  .conversation-full .chat-message{
    max-width:100%;
  }
}


/* v7 - experiência mobile-first */
.composer-input{
  scrollbar-width:none;
}
.composer-input::-webkit-scrollbar{
  display:none;
}

@media(max-width:700px){
  .chat-topbar{
    min-height:auto;
    padding:12px 16px;
    align-items:center;
    gap:10px;
  }

  .chat-topbar .logo{
    font-size:30px;
    min-width:96px;
  }

  .chat-topbar .logo span{
    font-size:12px;
    margin-left:30px;
  }

  .chat-topbar-actions{
    gap:8px;
    font-size:12px;
  }

  .plain-btn{
    padding:8px 10px;
    font-size:12px;
  }

  .logout{
    font-size:13px;
  }

  .method-toggle.compact{
    font-size:12px;
    gap:5px;
  }

  .method-toggle.compact input{
    width:16px;
    height:16px;
  }

  .chat-main{
    padding:22px 14px 130px !important;
  }

  .chat-welcome{
    margin:0 auto 18px;
  }

  .chat-welcome .section-kicker{
    font-size:11px;
  }

  .chat-welcome h1{
    font-size:34px;
    line-height:1.04;
    margin:6px 0 8px;
  }

  .chat-welcome p{
    font-size:15px;
    line-height:1.45;
  }

  .conversation{
    gap:14px;
  }

  .conversation-full .chat-message{
    max-width:100%;
  }

  .chat-message.user{
    justify-self:end;
    max-width:92%;
  }

  .chat-message.clara{
    justify-self:start;
    max-width:100%;
  }

  .chat-bubble,
  .conversation-full .chat-bubble{
    font-size:16px;
    line-height:1.62;
    padding:15px 16px;
    border-radius:18px;
  }

  .chat-label{
    font-size:12px;
  }

  .method-topics{
    font-size:12px;
    padding:10px 12px;
    border-radius:12px;
  }

  .chat-composer{
    padding:10px 12px calc(10px + env(safe-area-inset-bottom));
  }

  .composer-inner{
    grid-template-columns:1fr;
    gap:8px;
  }

  .composer-input{
    min-height:52px;
    max-height:120px;
    border-radius:18px;
    padding:14px 15px;
    font-size:16px;
    line-height:1.45;
  }

  .composer-btn{
    width:100%;
    height:50px;
    min-height:50px;
    border-radius:14px;
    font-size:16px;
  }

  .composer-meta{
    margin-top:7px;
    font-size:11px;
    gap:4px;
    line-height:1.35;
  }

  .composer-meta span:first-child{
    display:none;
  }
}

@media(max-width:420px){
  .chat-topbar{
    padding:10px 12px;
  }

  .chat-topbar-actions{
    gap:6px;
  }

  .plain-btn{
    display:none;
  }

  .chat-welcome h1{
    font-size:30px;
  }

  .chat-welcome p{
    font-size:14px;
  }

  .chat-main{
    padding-left:10px !important;
    padding-right:10px !important;
  }

  .chat-bubble,
  .conversation-full .chat-bubble{
    font-size:15.5px;
  }
}


/* v8 - Landing Page mobile-first */
.lp-mobile-first{
  background:#fffdf9;
}

.lp-header{
  position:sticky;
  top:0;
  z-index:30;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 18px;
  background:rgba(255,253,249,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(232,224,247,.8);
}

.lp-header .logo{
  font-size:34px;
}

.lp-header .logo span{
  margin-left:35px;
  font-size:13px;
}

.lp-header-btn{
  min-height:44px;
  padding:10px 15px;
  border-radius:12px;
  font-size:14px;
  box-shadow:0 12px 24px rgba(63,42,134,.18);
}

.lp-hero{
  padding:34px 20px 28px;
  background:
    radial-gradient(circle at 90% 10%,rgba(91,59,179,.14),transparent 35%),
    linear-gradient(180deg,#fffdf9 0%,#fbf8ff 100%);
}

.lp-hero-copy{
  max-width:760px;
  margin:0 auto;
}

.lp-hero h1{
  margin:10px 0 14px;
  font-family:Georgia,serif;
  color:var(--roxo);
  font-size:38px;
  line-height:1.05;
  letter-spacing:-1.2px;
}

.lp-hero p{
  margin:0 0 22px;
  color:var(--muted);
  font-size:17px;
  line-height:1.55;
}

.lp-main-cta{
  width:100%;
  min-height:56px;
  font-size:16px;
}

.lp-safe{
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  text-align:center;
}

.lp-chat-preview{
  max-width:760px;
  margin:28px auto 0;
  display:grid;
  gap:12px;
}

.preview-user,
.preview-clara{
  padding:16px 18px;
  border-radius:22px;
  font-size:15.5px;
  line-height:1.55;
  box-shadow:0 12px 32px rgba(48,31,104,.08);
}

.preview-user{
  justify-self:end;
  max-width:88%;
  color:white;
  background:linear-gradient(135deg,var(--roxo-2),var(--roxo));
  border-bottom-right-radius:7px;
}

.preview-clara{
  justify-self:start;
  max-width:92%;
  background:white;
  border:1px solid var(--linha);
  border-bottom-left-radius:7px;
}

.lp-pains,
.lp-about,
.lp-method,
.lp-final-cta{
  padding:34px 20px;
  max-width:840px;
  margin:0 auto;
}

.lp-pains h2,
.lp-about h2,
.lp-method h2,
.lp-final-cta h2{
  margin:0 0 16px;
  font-family:Georgia,serif;
  color:var(--roxo);
  font-size:30px;
  line-height:1.12;
}

.lp-pain-list{
  display:grid;
  gap:10px;
}

.lp-pain-list div{
  background:white;
  border:1px solid var(--linha);
  border-radius:18px;
  padding:15px 16px;
  font-weight:900;
  color:var(--texto);
  box-shadow:0 10px 30px rgba(48,31,104,.06);
}

.lp-about p,
.lp-method p,
.lp-final-cta p{
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}

.lp-method{
  display:grid;
  gap:22px;
}

.lp-method-photo{
  width:160px;
  height:160px;
  border-radius:50%;
  background:url("../img/dionisio.png");
  background-size:cover;
  background-position:center;
  border:4px solid var(--ouro);
  box-shadow:0 16px 40px rgba(48,31,104,.18);
}

.lp-method ul{
  margin:14px 0 0;
  padding-left:20px;
  color:var(--muted);
  line-height:1.8;
  font-weight:700;
}

.lp-warning{
  margin:10px 20px 20px;
  padding:18px;
  border:1px solid #f1dfaa;
  border-radius:18px;
  background:linear-gradient(90deg,#fff8df,#fffdf7);
  color:#4f4565;
  line-height:1.55;
  display:grid;
  gap:5px;
}

.lp-warning strong{
  color:var(--texto);
}

.lp-final-cta{
  text-align:center;
  padding-bottom:44px;
}

.lp-footer{
  padding:28px 20px;
  background:linear-gradient(135deg,var(--roxo-3),var(--roxo));
  color:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.lp-footer .logo{
  font-size:32px;
}

.lp-footer .logo span{
  font-size:12px;
  margin-left:33px;
}

.lp-footer small{
  color:rgba(255,255,255,.78);
}

@media(min-width:760px){
  .lp-header{
    padding:14px 46px;
  }

  .lp-hero{
    padding:70px 28px 54px;
  }

  .lp-hero h1{
    font-size:58px;
    max-width:820px;
  }

  .lp-hero p{
    max-width:660px;
    font-size:19px;
  }

  .lp-main-cta{
    width:auto;
    min-width:280px;
  }

  .lp-safe{
    text-align:left;
  }

  .lp-chat-preview{
    margin-top:38px;
  }

  .preview-user,
  .preview-clara{
    font-size:17px;
  }

  .lp-pains,
  .lp-about,
  .lp-method,
  .lp-final-cta{
    padding:56px 28px;
  }

  .lp-pain-list{
    grid-template-columns:repeat(5,1fr);
  }

  .lp-pain-list div{
    text-align:center;
    min-height:92px;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .lp-method{
    grid-template-columns:190px 1fr;
    align-items:center;
  }

  .lp-method-photo{
    width:180px;
    height:180px;
  }

  .lp-warning{
    max-width:840px;
    margin:0 auto 26px;
  }

  .lp-footer{
    padding:30px 46px;
  }
}
