/* ADON.AI - Site Institucional */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --teal: #018361;
  --teal-light: #00a87e;
  --teal-dark: #01634a;
  --dark: #191919;
  --dark-secondary: #222;
  --dark-card: #1e1e1e;
  --light: #eee;
  --muted: #999;
  --border: rgba(255,255,255,0.08);
  --font-title: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 0.75rem;
  --shadow-glow: 0 10px 40px -10px rgba(1,131,97,0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

a { color: var(--teal); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--teal-light); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--teal) 0%, #00d4a0 50%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.text-muted { color: var(--muted); }
.text-teal { color: var(--teal); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px -10px rgba(1,131,97,0.6);
  color: #fff;
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--light);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: var(--light);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

/* Background */
.bg-adon {
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 60% 50% at 12% 10%, rgba(1,131,97,0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 88% 0%, rgba(1,131,97,0.14), transparent 65%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(1,131,97,0.12), transparent 70%);
  background-attachment: fixed;
}

.bg-grid {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.glass {
  background: rgba(30,30,30,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border);
}

.glass-card {
  background: rgba(30,30,30,0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(1,131,97,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -8px rgba(1,131,97,0.2);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  z-index: 1000;
  padding: 0.625rem 1.5rem;
  transition: all 0.3s ease;
  animation: navbarIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  background: rgba(22,22,22,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
}

@keyframes navbarIn {
  0% { opacity: 0; transform: translateX(-50%) translateY(-16px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes navbarInMobile {
  0% { opacity: 0; transform: translateY(-16px); }
  100% { opacity: 1; transform: translateY(0); }
}

.navbar.scrolled {
  background: rgba(18,18,18,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}

.nav-center a,
.nav-right a {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  text-decoration: none;
}

.nav-center a {
  color: var(--muted);
  padding: 0.25rem 0;
}

.nav-right a {
  color: var(--muted);
  padding: 0.25rem 0;
}

.nav-right a.btn {
  color: #fff;
  padding: 0.75rem 1.75rem;
}

.nav-center a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-center a:hover::before,
.nav-center a.active::before {
  width: 100%;
}

.nav-center a:hover,
.nav-center a.active {
  color: var(--light);
}

.nav-right a:not(.btn):hover,
.nav-right a.active {
  color: var(--light);
}

.navbar-login-btn {
  white-space: nowrap;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-dropdown-trigger:hover {
  color: var(--light);
}

.nav-dropdown-trigger.open {
  color: var(--light);
}

.nav-dropdown-trigger.open .material-symbols-sharp,
.nav-dropdown:hover .nav-dropdown-trigger .material-symbols-sharp {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.96);
  min-width: 380px;
  background: rgba(22,22,22,0.94);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  box-shadow: 0 24px 80px -16px rgba(0,0,0,0.6);
  transform-origin: top center;
}

.nav-dropdown-menu.open,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px) scale(1);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--light);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.04);
  transform: translateX(4px);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--light);
  transition: background 0.2s;
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.05);
}

.nav-dropdown-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.nav-dropdown-item span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.nav-dropdown-icons {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.nav-dropdown-icons .material-symbols-sharp {
  font-size: 1rem;
  font-variation-settings: 'wght' 700;
}

.icon-green { color: var(--teal); }
.icon-red { color: #ef4444; opacity: 0.5; }

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 9rem;
}

.hero .container {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: initial;
}

/* Hero Image Card — almost full-width, large radius */
.hero-card {
  position: relative;
  width: calc(100vw - 128px);
  margin: 0 auto 2.5rem;
  border-radius: 6rem;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px -16px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(25,25,25,0.75) 0%, rgba(25,25,25,0.4) 50%, rgba(25,25,25,0.6) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  background-blend-mode: multiply, normal;
}

/* Hero card glow effect */
.hero-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(1,131,97,0.15), transparent 40%, rgba(1,131,97,0.08));
  z-index: 2;
  pointer-events: none;
}

.hero-card-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 680px;
  padding: 3rem 3rem;
}

.hero-card-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(1,131,97,0.18);
  border: 1px solid rgba(1,131,97,0.35);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-card-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
  color: var(--light);
}

.hero-card-content p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-card .hero-chat {
  position: relative;
  z-index: 3;
  max-width: 480px;
  width: 100%;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Chat Bar */
.hero-chat {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(30,30,30,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--teal);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 0 30px rgba(1,131,97,0.08);
  animation: pulseGlow 3s ease-in-out infinite, fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-chat-conversation {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.06) transparent;
}

.hero-chat-conversation::-webkit-scrollbar { width: 4px; }
.hero-chat-conversation::-webkit-scrollbar-track { background: transparent; }
.hero-chat-conversation::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }

.hero-chat-bubble {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  animation: bubbleIn 0.35s ease-out both;
}

@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-chat-contact {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
  font-family: var(--font-title);
}

.hero-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111 url('../../app/assets/logo/icone_minimal_green.svg') no-repeat center / 60%;
  border: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.hero-chat-body {
  text-align: left;
}

.hero-chat-text {
  background: rgba(255,255,255,0.06);
  padding: 0.625rem 1rem;
  border-radius: 0 1rem 1rem 1rem;
  font-size: 0.9375rem;
  color: var(--light);
  line-height: 1.5;
}

/* Answer pills */
.hero-chat-answer {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(1,131,97,0.12);
  border: 1px solid rgba(1,131,97,0.25);
  border-radius: 999px;
  padding: 0.375rem 0.625rem 0.375rem 0.875rem;
  font-size: 0.8125rem;
  position: relative;
  transition: all 0.2s;
  animation: answerPop 0.3s ease-out both;
  cursor: default;
  margin-bottom: 0.25rem;
}

@keyframes answerPop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.hero-chat-answer-label {
  font-weight: 600;
  color: var(--teal-light);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-chat-answer-value {
  color: var(--light);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-chat-answer-edit {
  opacity: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: rgba(1,131,97,0.3);
  color: var(--light);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  flex-shrink: 0;
  margin-left: 0.125rem;
}

.hero-chat-answer:hover .hero-chat-answer-edit {
  opacity: 1;
}

.hero-chat-answer-edit .material-symbols-sharp {
  font-size: 0.75rem;
  font-variation-settings: 'wght' 400;
}

.hero-chat-answer.editing {
  opacity: 0.5;
  border-style: dashed;
}

/* Demo button */
.hero-chat-demo-area {
  text-align: center;
  animation: bubbleIn 0.4s ease-out both;
}

.hero-chat-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  margin-top: 0.5rem;
}

.hero-chat-demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px -10px rgba(1,131,97,0.6);
  color: #fff;
}

.hero-chat-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.hero-chat-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.3s;
}

.hero-chat-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(1,131,97,0.1);
}

.hero-chat-input::placeholder {
  color: #555;
}

.hero-chat-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hero-chat-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(1,131,97,0.4);
}

.hero-chat-btn .material-symbols-sharp {
  font-size: 1.25rem;
  font-variation-settings: 'wght' 400;
}

/* Agentes Grid */
.agentes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.agente-card {
  position: relative;
  overflow: hidden;
}

.agente-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(1,131,97,0.15);
  color: var(--teal-light);
}

.agente-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.agente-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.agente-card-step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(1,131,97,0.3);
}

/* Pipeline Flow */
.pipeline-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem;
  background: rgba(30,30,30,0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 130px;
  text-align: center;
  position: relative;
}

.pipeline-step-icon {
  font-size: 1.5rem;
  color: var(--teal);
}

.pipeline-step-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.pipeline-step-count {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light);
}

.pipeline-arrow {
  color: var(--teal);
  font-size: 1.25rem;
  opacity: 0.5;
}

/* Charts */
.chart-container {
  background: rgba(30,30,30,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.chart-container h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--light);
}

.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Cenário Pages */
.cenario-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
}

.cenario-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(1,131,97,0.12);
  border: 1px solid rgba(1,131,97,0.25);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
}

.cenario-dor {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--teal);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.cenario-dor p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--muted);
}

.cenario-solucao {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Preços */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  text-align: center;
  padding: 2rem;
}

.pricing-card.featured {
  border-color: var(--teal);
  background: rgba(1,131,97,0.06);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Mais Popular';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 600;
  margin: 1rem 0;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

/* Demo Form */
.demo-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(1,131,97,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  padding: 2rem 0 4rem;
  margin-top: 4rem;
}

.footer-bg {
  position: relative;
  width: calc(100vw - 128px);
  margin: 0 auto;
  border-radius: 3rem;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bg > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(25,25,25,0.85) 0%, rgba(25,25,25,0.5) 50%, rgba(25,25,25,0.8) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  background-blend-mode: multiply, normal;
}

.footer-bg .container {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  text-align: center;
  max-width: initial;
}

.footer-cta {
  padding: 128px 0;
}

.footer-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.footer-cta .btn {
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

.footer-card {
  background: rgba(25,25,25,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 3rem;
  margin: 32px 0;
  text-align: left;
}

.footer-brand .navbar-logo {
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand .navbar-logo img {
  height: 28px;
  width: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.25rem 0;
}

.footer-col a:hover { color: var(--light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-bottom-left a {
  color: var(--muted);
  transition: color 0.3s;
}

.footer-bottom-left a:hover {
  color: var(--light);
}

.footer-sep {
  color: rgba(255,255,255,0.15);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--light);
  border-color: var(--teal);
  background: rgba(1,131,97,0.15);
}

.footer-social-link .material-symbols-sharp,
.footer-social-link .social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* First section spacing (below fixed navbar) */
.section-first {
  padding-top: 13rem;
}

.legal-text h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--light);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-text p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.legal-text ul li {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.25rem;
}

.legal-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
}

/* Section Numbers */
.section-number {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

/* Feature list */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.feature-list li .icon {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Comparação */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.comparison-col {
  padding: 1.5rem;
  border-radius: var(--radius);
}

.comparison-col.antes {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.comparison-col.depois {
  background: rgba(1,131,97,0.06);
  border: 1px solid rgba(1,131,97,0.2);
}

.comparison-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.comparison-col ul {
  list-style: none;
}

.comparison-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Page Header */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 0.25rem;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== EXPRESSIVE ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(1,131,97,0.2); }
  50% { box-shadow: 0 0 40px rgba(1,131,97,0.4); }
}

@keyframes reveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

.anim-fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.anim-fade-in.visible {
  opacity: 1;
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.anim-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.anim-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.anim-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.anim-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.anim-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.anim-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Agent Log Preview - macOS Window */
.agent-log-window {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  background: #141414;
  max-width: 680px;
  margin: 2rem auto 0;
}

.agent-log-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}

.agent-log-dots {
  display: flex;
  gap: 6px;
}

.agent-log-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.agent-log-dot.red { background: #ff5f57; }
.agent-log-dot.yellow { background: #febc2e; }
.agent-log-dot.green { background: #28c840; }

.agent-log-title {
  font-size: 0.75rem;
  color: #777;
  margin-left: 0.375rem;
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.agent-log-body {
  padding: 0.75rem 1rem;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.06) transparent;
}

.agent-log-body::-webkit-scrollbar { width: 4px; }
.agent-log-body::-webkit-scrollbar-track { background: transparent; }
.agent-log-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 4px; }

.agent-log-entry {
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  animation: logSlideIn 0.4s ease-out both;
}

.agent-log-entry:last-child {
  border-bottom: none;
}

@keyframes logSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.agent-log-entry-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.agent-log-agent {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem 0.125rem 0.375rem;
  border-radius: 999px;
  font-family: var(--font-title);
  letter-spacing: 0.01em;
}

.agent-log-time {
  font-size: 0.625rem;
  color: #555;
  font-family: var(--font-body);
}

.agent-log-text {
  font-size: 0.8125rem;
  color: #ccc;
  line-height: 1.5;
  font-family: var(--font-body);
}

.agent-log-text strong {
  color: var(--light);
  font-weight: 600;
}

.agent-log-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.375rem;
}

.agent-log-pills .pill {
  display: inline-flex;
  font-size: 0.625rem;
  font-weight: 500;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  border: 1px solid;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

.agent-log-box {
  margin-top: 0.5rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid;
  background: rgba(255,255,255,0.02);
}

.agent-log-box-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 0.25rem;
  font-family: var(--font-title);
}

.agent-log-box-text {
  font-size: 0.6875rem;
  color: #999;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0.375rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    top: 0.75rem;
    left: 0.75rem;
    width: calc(100% - 1.5rem);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    transform: none;
    animation: navbarInMobile 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .navbar .container {
    padding: 0;
  }

  .navbar-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    background: rgba(25,25,25,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 0;
    gap: 0.25rem;
    z-index: 999;
    overflow: hidden;
  }

  .navbar-links.open {
    display: flex;
  }

  .nav-center {
    position: static;
    transform: none;
  }

  .nav-center,
  .nav-right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.25rem;
  }

  .nav-center a,
  .nav-right a {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    width: 100%;
    display: block;
  }

  .navbar-links .btn.navbar-login-btn {
    margin: 0.25rem 1.5rem;
    width: auto;
    display: inline-flex;
    text-align: center;
    justify-content: center;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    width: 100%;
    justify-content: flex-start;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    display: none;
  }

  .nav-dropdown-menu.open {
    display: block;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }

  .nav-dropdown:hover .nav-dropdown-trigger .material-symbols-sharp {
    transform: rotate(0deg);
  }

  .nav-dropdown-item {
    padding: 0.5rem 0.75rem;
    transform: none !important;
  }

  .nav-dropdown-item:hover {
    transform: none !important;
    background: transparent;
  }

  .nav-dropdown-item strong {
    font-size: 0.8125rem;
  }

  .nav-dropdown-item span {
    font-size: 0.6875rem;
  }

  .navbar-toggle {
    display: block;
    z-index: 1001;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }

  .hero-card {
    width: calc(100% - 1rem);
    border-radius: 3.75rem;
    min-height: 50vh;
  }

  .hero-card-content {
    padding: 2rem 1.25rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }

  .charts-grid {
    grid-template-columns: 1fr;
  }

  .footer-bg {
    border-radius: 2rem;
    min-height: auto;
  }

  .footer-bg .container {
    padding: 0 1.25rem;
  }

  .footer-card {
    padding: 2rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-left {
    justify-content: center;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .agent-log-window {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .footer-bg {
    border-radius: 1.5rem;
  }

  .footer-bg .container {
    padding: 0 1rem;
  }

  .footer-card {
    padding: 1.5rem 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-chat {
    padding: 1rem;
  }

  .hero-chat-conversation {
    max-height: 300px;
  }

  .hero-chat-answer-value {
    max-width: 120px;
  }

  .hero-chat-demo-btn {
    font-size: 0.8125rem;
    padding: 0.625rem 1.25rem;
    width: 100%;
    justify-content: center;
  }

  .agent-log-body {
    max-height: 340px;
    padding: 0.5rem 0.75rem;
  }
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}
.whatsapp-float img {
  width: 28px;
  height: 28px;
  display: block;
}
