/* Fretes.AI hotsite — paleta alinhada ao admin (Positivando / Fretes.AI) */

:root {
  --primary: #ff6b35;
  --primary-dark: #e8591c;
  --secondary: #0a2463;
  --secondary-light: #3e60a3;
  --success: #06d6a0;
  --text: #1a1a2e;
  --text-light: #505168;
  --muted: #8892a6;
  --border: #d5dae1;
  --surface: #ffffff;
  --bg: #f5f6f8;
  --shadow: 0 4px 24px rgba(10, 36, 99, 0.08);
  --shadow-lg: 0 24px 64px rgba(10, 36, 99, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 72px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--secondary-light);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 248, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--secondary);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: #fff;
  font-size: 1.1rem;
}

.logo-mark.sm {
  width: 32px;
  height: 32px;
  font-size: 0.95rem;
}

.logo-dot {
  color: var(--primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--secondary);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--secondary);
  margin-inline: auto;
  transition: transform 0.2s, opacity 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-outline {
  background: var(--surface);
  color: var(--secondary);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--secondary-light);
  color: var(--secondary);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0a2463 0%, #152a5c 45%, #1a3270 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(6, 214, 160, 0.08) 0%, transparent 40%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-copy {
  color: #e8ecf4;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--success);
  margin: 0 0 0.75rem;
}

.eyebrow-light {
  color: rgba(6, 214, 160, 0.95);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, #ff6b35, #ffb703);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text-alt {
  background: linear-gradient(90deg, #06d6a0, #3e9eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.0625rem;
  color: rgba(232, 236, 244, 0.88);
  margin: 0 0 1.75rem;
  max-width: 34rem;
}

.lead strong {
  color: #fff;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.hero-cta-note {
  margin: 0 0 1.75rem;
  font-size: 0.9rem;
  color: rgba(232, 236, 244, 0.85);
}

.hero-cta-note a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(232, 236, 244, 0.75);
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-badges li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

/* Mock chat */
.hero-visual {
  position: relative;
}

.mock-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.25rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}

.mock-chat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-chat-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.mock-title {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mock-bubble {
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.8125rem;
  line-height: 1.45;
  margin-bottom: 0.5rem;
  max-width: 92%;
}

.mock-bubble.user {
  margin-left: auto;
  background: rgba(255, 107, 53, 0.2);
  color: #ffe8df;
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.mock-bubble.ai {
  background: rgba(255, 255, 255, 0.08);
  color: #e8ecf4;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mock-bubble.ai.result {
  background: rgba(6, 214, 160, 0.12);
  border-color: rgba(6, 214, 160, 0.25);
  color: #d4fff4;
}

.ai-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--success);
  margin-bottom: 0.35rem;
}

.mock-floating {
  position: absolute;
  bottom: -12px;
  right: -8px;
  background: var(--surface);
  color: var(--secondary);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-icon {
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.section-head p {
  margin: 0;
  color: var(--text-light);
  font-size: 1.0625rem;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  border-color: rgba(62, 96, 163, 0.25);
  box-shadow: 0 8px 32px rgba(10, 36, 99, 0.1);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--secondary);
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* IA spotlight */
.ia-spotlight {
  background: linear-gradient(180deg, #fff 0%, #eef1f6 100%);
  border-block: 1px solid var(--border);
}

.ia-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .ia-layout {
    grid-template-columns: 1fr;
  }
}

.ia-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text);
}

.ia-copy p {
  color: var(--text-light);
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
}

.ia-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
}

.ia-list li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.ia-list li::marker {
  color: var(--primary);
}

.ia-panel {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.ia-orbit {
  position: absolute;
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed rgba(62, 96, 163, 0.25);
  animation: spin 28s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ia-core {
  position: relative;
  width: min(100%, 280px);
  background: linear-gradient(145deg, var(--secondary) 0%, #122a66 100%);
  color: #e8ecf4;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(10, 36, 99, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ia-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--success);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.ia-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 1rem;
}

.ia-mini {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: rgba(232, 236, 244, 0.85);
}

.ia-mini li {
  padding: 0.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ia-mini li:first-child {
  border-top: 0;
  padding-top: 0;
}

.ia-arrow {
  text-align: center;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0.75rem 0;
}

.ia-engine {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffb703;
}

/* Steps */
.steps {
  background: var(--surface);
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.step-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.step-list h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: var(--secondary);
}

.step-list p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* Pricing */
.pricing {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .price-card.featured {
    transform: none;
  }
}

.ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--success);
  color: #063d30;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.price-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  color: var(--secondary);
}

.tier-badge {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--secondary-light);
  letter-spacing: 0.02em;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.price-tag .currency {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 0.15rem;
}

.price-tag .period {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
}

.price-tag.custom {
  font-size: 1.5rem;
  color: var(--secondary-light);
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0 0 1.25rem;
  min-height: 2.6rem;
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 0.9375rem;
  flex: 1;
}

.price-card ul li {
  margin-bottom: 0.45rem;
}

.price-card .btn {
  width: 100%;
}

/* CTA */
.cta-band {
  background: linear-gradient(135deg, var(--secondary) 0%, #0d2d75 100%);
  color: #e8ecf4;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 0 0 0.5rem;
  color: #fff;
}

.cta-inner > div:first-child p {
  margin: 0;
  max-width: 36rem;
  color: rgba(232, 236, 244, 0.88);
}

.cta-actions {
  text-align: right;
}

/* WhatsApp flutuante */
.wa-float {
  position: fixed;
  z-index: 60;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem 0.65rem 0.85rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  font-family: inherit;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(10, 36, 99, 0.12);
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.wa-float:hover {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(10, 36, 99, 0.15);
}

.wa-float:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.wa-float-icon {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
}

.wa-float-icon svg {
  display: block;
}

@media (max-width: 380px) {
  .wa-float-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .wa-float {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

/* Footer */
.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--secondary);
}

.footer-copy {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.footer-top {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-light);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-note {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
  }

  .hero-cta-note a {
    font-weight: 600;
  }

  .mock-floating {
    position: static;
    margin-top: 1rem;
  }
}

/* Modal demonstração IA (hotsite) */
.demo-ia-dialog {
  width: min(560px, 100vw - 2rem);
  max-height: min(90vh, 720px);
  padding: 0;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.demo-ia-dialog::backdrop {
  background: rgba(10, 36, 99, 0.45);
}

.demo-ia-inner {
  padding: 1.25rem 1.35rem 1.5rem;
  max-height: min(90vh, 720px);
  overflow: auto;
}

.demo-ia-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.demo-ia-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--secondary);
}

.demo-ia-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.demo-ia-close:hover {
  background: var(--border);
}

.demo-ia-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-light);
}

.demo-ia-aviso {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  background: #fff3cd;
  color: #664d03;
  border: 1px solid #ffecb5;
}

.demo-ia-aviso.is-danger {
  background: #f8d7da;
  color: #58151c;
  border-color: #f1aeb5;
}

.demo-ia-aviso.is-hidden {
  display: none;
}

.demo-ia-fields {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.demo-ia-label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.demo-ia-label-text .req {
  color: var(--primary-dark);
}

.demo-ia-label-text .opt {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85em;
}

.demo-ia-input,
.demo-ia-textarea {
  font: inherit;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 100%;
}

.demo-ia-textarea {
  resize: vertical;
  min-height: 120px;
}

.demo-ia-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.demo-ia-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.demo-ia-resultado {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.demo-ia-resultado .demo-ia-resumo {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.demo-ia-resultado .demo-ia-pedido {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.65rem;
  background: var(--bg);
}

.demo-ia-resultado .demo-ia-pedido-tit {
  font-weight: 600;
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
}

.demo-ia-resultado dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.75rem;
  font-size: 0.82rem;
}

.demo-ia-resultado dt {
  color: var(--muted);
}

.demo-ia-resultado .demo-ia-aviso-pedido {
  margin-top: 0.5rem;
  padding: 0.45rem 0.5rem;
  background: #fff3cd;
  border-radius: 6px;
  font-size: 0.82rem;
}

.demo-ia-resultado .demo-ia-card-cot {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.5rem;
  background: var(--surface);
}

.demo-ia-resultado .demo-ia-card-cot strong {
  color: var(--secondary);
}

.demo-ia-resultado .demo-ia-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a7a5c;
  margin-top: 0.25rem;
}
