/* xPH Solution - Tema claro, organizado e moderno */

:root {
  --color-bg: #f3f4f6;
  --color-surface: #ffffff;
  --color-surface-soft: #f9fafb;
  --color-primary: #16a34a;
  --color-primary-soft: rgba(22, 163, 74, 0.08);
  --color-secondary: #0ea5e9;
  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 1.25rem;
  --radius-md: 0.9rem;
  --radius-pill: 999px;
  --transition-fast: 0.18s ease;
  --transition-med: 0.25s ease;
}

@keyframes techGlow {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0.25;
  }
  50% {
    transform: translate3d(18px, -12px, 0);
    opacity: 0.45;
  }
  100% {
    transform: translate3d(-12px, 12px, 0);
    opacity: 0.3;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: -25%;
  background:
    radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(22, 163, 74, 0.2), transparent 55%);
  opacity: 0.5;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: -1;
  animation: techGlow 22s ease-in-out infinite alternate;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: 70vh;
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.section {
  padding: 3rem 0;
}

.section,
.subhero,
.hero-panel,
.card,
.wa-highlight-card,
.section-illustration,
.form-card,
.contact-side-card,
.section-cta-final {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s var(--transition-fast),
    transform 0.6s var(--transition-fast);
}

.reveal-in-view {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  margin-bottom: 2rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-secondary);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 2.3vw, 2.3rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  margin-bottom: 0.6rem;
}

.section-subtitle {
  color: var(--color-text-muted);
  max-width: 40rem;
  font-size: 0.96rem;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.chip {
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  background: var(--color-surface);
}

/* HEADER / NAV */

.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border);
}

.app-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 18rem;
  height: 6rem;
  border-radius: 0.9rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-main {
  font-weight: 650;
  letter-spacing: -0.05em;
  font-size: 1.05rem;
}

.brand-text-sub {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.nav-spacer {
  flex: 1 1 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.nav-icon {
  font-size: 0.95rem;
}

/* Menu: apenas a página atual fica destacada; sem hover de seleção. */
.nav-links a:hover {
  color: inherit;
  border-color: transparent;
  background: transparent;
}

.nav-links a.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-color: transparent;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.btn,
.btn-outline {
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition-med);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(120deg, var(--color-primary), var(--color-secondary), #4ade80);
  background-size: 200% 200%;
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(22, 163, 74, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(22, 163, 74, 0.4);
  background-position: 100% 0;
}

.btn-outline {
  border-color: var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
}

.btn-outline:hover {
  color: var(--color-text);
  border-color: #9ca3af;
  background: var(--color-surface-soft);
}

.btn-icon {
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span {
  font-size: 1.2rem;
}

/* HERO HOME */

.hero {
  padding: 3rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem 0.25rem 0.3rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: 0.75rem;
  margin-bottom: 1.1rem;
}

.hero-kicker-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--color-primary);
}

.hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  background: rgba(22, 163, 74, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.5);
  font-size: 0.8rem;
  color: var(--color-text);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.18);
  margin-bottom: 0.8rem;
}

.hero-price-pill strong {
  font-weight: 700;
  color: var(--color-primary);
}

.hero-title {
  font-size: clamp(2.3rem, 3.4vw, 3.1rem);
  letter-spacing: -0.06em;
  line-height: 1.08;
  margin-bottom: 0.9rem;
}

.hero-title span.highlight {
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--color-text-muted);
  max-width: 32rem;
  font-size: 0.98rem;
}

.hero-subtitle strong {
  color: var(--color-text);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1.7rem 0 1.2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.hero-meta strong {
  color: var(--color-text);
}

.hero-right {
  position: relative;
}

.hero-illustration {
  margin-bottom: 1.2rem;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  background: #000;
}

.hero-panel {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.4rem 1.3rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from 180deg, rgba(14, 165, 233, 0.1), rgba(22, 163, 74, 0.16), rgba(56, 189, 248, 0.1));
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-med);
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.hero-panel-title {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero-panel-pill {
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
}

.hero-panel-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric-card {
  border-radius: 1rem;
  padding: 0.8rem 0.85rem;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
}

.metric-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 1.22rem;
  font-weight: 650;
}

.metric-tag {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--color-primary);
}

.hero-panel-footer {
  margin-top: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.hero-panel-footer span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.hero-panel-badge {
  font-size: 0.78rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary-soft);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  min-width: 11rem;
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}

.card,
.wa-highlight-card,
.section-cta-final,
.form-card,
.contact-side-card,
.hero-panel {
  transition:
    transform var(--transition-med),
    box-shadow var(--transition-med),
    border-color var(--transition-med),
    background var(--transition-med);
}

.card:hover,
.wa-highlight-card:hover,
.section-cta-final:hover,
.form-card:hover,
.contact-side-card:hover,
.hero-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  border-color: rgba(14, 165, 233, 0.45);
}

.hero-panel:hover::before {
  opacity: 1;
}

/* GRID / CARDS */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.card-header-pill {
  font-size: 0.78rem;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
  background: var(--color-surface-soft);
}

.card-title {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.card-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.7rem;
}

.card-list li {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.card-list li::before {
  content: "•";
  color: var(--color-primary);
  margin-top: 0.12rem;
}

.card-footer-link {
  font-size: 0.85rem;
  color: var(--color-secondary);
}

.card-footer-link span {
  font-size: 0.95rem;
}

/* PRODUTOS - SEÇÃO ESPECIAL */

.section-products .products-grid {
  gap: 1.8rem;
}

.section-products .card {
  position: relative;
  overflow: hidden;
}

.section-products .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.18), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(22, 163, 74, 0.16), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.section-products .card-header-pill {
  background: rgba(248, 250, 252, 0.95);
  border-color: rgba(148, 163, 184, 0.55);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.section-products .card-header-pill span:first-child {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #ffffff, rgba(14, 165, 233, 0.25));
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.section-products .card:hover::before {
  opacity: 1;
}

.section-products .card-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}

.section-products .card-footer-link span {
  transition: transform var(--transition-fast);
}

.section-products .card-footer-link:hover span {
  transform: translateX(2px);
}

/* SERVIÇOS - SEÇÃO ESPECIAL */

.section-services .services-grid {
  gap: 1.8rem;
}

.section-services .card {
  position: relative;
  overflow: hidden;
}

.section-services .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0% 0%, rgba(148, 163, 184, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(14, 165, 233, 0.12), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.section-services .card-header-pill {
  background: rgba(248, 250, 252, 0.96);
  border-color: rgba(148, 163, 184, 0.6);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.section-services .card-header-pill span:first-child {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #ffffff, rgba(148, 163, 184, 0.4));
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
}

.section-services .card:hover::before {
  opacity: 1;
}

.section-services .card-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 500;
}

.section-services .card-footer-link span {
  transition: transform var(--transition-fast);
}

.section-services .card-footer-link:hover span {
  transform: translateX(2px);
}

.section-illustration {
  margin-top: 1.6rem;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  max-width: 520px;
}

.section-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.section-automation-whatsapp .automation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: stretch;
}

.section-automation-whatsapp .automation-cards .grid-3 {
  grid-template-columns: minmax(0, 1fr);
}

.section-automation-whatsapp .automation-illustration {
  justify-self: center;
}

/* LAYOUT ESPECIAL WHATSAPP */

.wa-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.whatsapp-layout .card,
.whatsapp-layout .wa-highlight-card {
  position: relative;
  overflow: hidden;
}

.whatsapp-layout .card::before,
.whatsapp-layout .wa-highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(22, 163, 74, 0.14), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.whatsapp-layout .card:hover::before,
.whatsapp-layout .wa-highlight-card:hover::before {
  opacity: 1;
}

.whatsapp-layout .card-header-pill {
  background: rgba(248, 250, 252, 0.96);
  border-color: rgba(148, 163, 184, 0.6);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.whatsapp-layout .card-header-pill span:first-child {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #ffffff, rgba(56, 189, 248, 0.45));
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
}

.wa-highlight-card {
  border-radius: 1.5rem;
  padding: 1.5rem 1.4rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.wa-highlight-title {
  font-size: 1.18rem;
  font-weight: 650;
  margin-bottom: 0.55rem;
}

.wa-highlight-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.wa-highlight-text strong {
  color: var(--color-text);
}

.wa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.wa-item {
  border-radius: 1rem;
  padding: 0.8rem 0.85rem;
  background: var(--color-surface-soft);
  border: 1px solid var(--color-border);
  font-size: 0.82rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.wa-item-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), rgba(22, 163, 74, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.wa-item-body strong {
  display: block;
  margin-bottom: 0.15rem;
}

.wa-disclaimer {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* SEÇÃO CTA FINAL */

.section-cta-final {
  border-radius: 1.5rem;
  padding: 1.6rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.section-cta-final-main {
  flex: 1 1 260px;
}

.section-cta-final-title {
  font-size: 1.25rem;
  font-weight: 650;
  margin-bottom: 0.5rem;
}

.section-cta-final-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.section-cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Avisos do formulário de contato */
.form-alert {
  display: none;
  margin-bottom: 0.9rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

.form-alert-success {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.5);
  color: var(--color-text);
}

.form-alert-error {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.6);
  color: var(--color-text);
}

/* Popup de sucesso do formulário */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.popup-card {
  background: var(--color-surface);
  border-radius: 1.25rem;
  padding: 1.6rem 1.5rem 1.4rem;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
}

.popup-card-title {
  font-size: 1.15rem;
  font-weight: 650;
  margin-bottom: 0.4rem;
}

.popup-card-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.popup-card-actions {
  display: flex;
  justify-content: flex-end;
}

/* FORMULÁRIO CONTATO */

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

.form-card {
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 0.95rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.9rem;
}

.form-row textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.4);
}

.contact-side-card {
  border-radius: 1.25rem;
  padding: 1.4rem 1.3rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.contact-list {
  list-style: none;
  margin-top: 0.7rem;
}

.contact-list li {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.contact-list span {
  color: var(--color-text);
}

/* PÁGINAS INTERNAS - HERO MENOR */

.subhero {
  padding: 2.4rem 0 1.9rem;
}

.subhero-title {
  font-size: clamp(1.9rem, 2.5vw, 2.3rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  margin-bottom: 0.6rem;
}

.subhero-subtitle {
  color: var(--color-text-muted);
  max-width: 40rem;
}

.breadcrumb {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.breadcrumb a {
  color: var(--color-secondary);
}

/* RODAPÉ */

.app-footer {
  border-top: 1px solid var(--color-border);
  padding: 1.6rem 1.5rem 2rem;
  margin-top: 1.5rem;
  background: var(--color-surface);
}

.app-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--color-text-muted);
}

/* BOTÃO FLUTUANTE WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 60;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--color-primary), #16a34a);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1px solid #15803d;
  box-shadow: 0 16px 38px rgba(22, 163, 74, 0.55);
}

.whatsapp-float span.icon {
  font-size: 1.1rem;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
}

/* Banner de cookies */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: 0.9rem 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
  font-size: 0.8rem;
}

.cookie-banner-inner p {
  flex: 1 1 220px;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* RESPONSIVIDADE */

@media (max-width: 960px) {
  .hero-inner,
  .wa-layout,
  .form-grid,
  .section-automation-whatsapp .automation-layout {
    grid-template-columns: minmax(0, 1fr);
  }


  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .app-header-inner {
    padding-inline: 1rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .app-header.nav-open .nav-links,
  .app-header.nav-open .nav-cta {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 3.1rem;
    padding: 0.9rem 1rem 1rem;
    border-radius: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
  }

  .nav-links {
    align-items: flex-start;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .section {
    padding: 2.4rem 0;
  }

  .grid-3,
  .grid-2,
  .wa-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-wrapper {
    padding-inline: 1rem;
  }

  .hero-panel-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel-badge {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .brand-mark {
    width: 9rem;
    height: 4rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .section-cta-final {
    padding: 1.4rem 1.2rem;
  }

  .whatsapp-float {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }

  .cookie-banner {
    padding-inline: 1rem;
  }
}

/* -----------------------------
   NOVA CAMADA PREMIUM (HOME + LPs)
------------------------------ */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700&display=swap");

:root {
  --premium-bg: #f7fbff;
  --premium-ink: #0f172a;
  --premium-muted: #475569;
  --premium-line: #dbe4f0;
  --premium-cyan: #0284c7;
  --premium-green: #0f766e;
  --premium-gold: #b45309;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(2, 132, 199, 0.08), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(15, 118, 110, 0.08), transparent 45%),
    var(--premium-bg);
  color: var(--premium-ink);
}

h1,
h2,
h3,
.section-title,
.hero-title {
  font-family: "Sora", "Manrope", sans-serif;
}

.app-header {
  background: rgba(247, 251, 255, 0.85);
  backdrop-filter: blur(12px);
}

.brand-mark {
  width: 9.8rem;
  height: 3.6rem;
}

.brand-text-main,
.brand-text-sub {
  display: none;
}

.premium-hero {
  padding-top: 3.2rem;
}

.hero-kicker {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.28);
  color: var(--premium-cyan);
  font-weight: 700;
}

.hero-price-pill {
  background: rgba(15, 118, 110, 0.1);
  border-color: rgba(15, 118, 110, 0.4);
  color: var(--premium-green);
  font-weight: 700;
}

.hero-title {
  max-width: 20ch;
}

.hero-subtitle {
  max-width: 56ch;
  color: var(--premium-muted);
}

.hero-panel,
.card,
.form-card,
.contact-side-card,
.section-cta-final {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(219, 228, 240, 0.95);
}

.hero-panel::after,
.card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.14), rgba(15, 118, 110, 0.1));
}

.hero-panel:hover::after,
.card:hover::after {
  opacity: 1;
}

.urgency-bar {
  margin-top: 1rem;
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(180, 83, 9, 0.35);
  background: rgba(251, 191, 36, 0.16);
  color: #92400e;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.logos-strip {
  padding-top: 0.4rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.logo-pill {
  border: 1px solid var(--premium-line);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  text-align: center;
  padding: 0.55rem 0.8rem;
  font-size: 0.82rem;
  color: #0b3b63;
  font-weight: 600;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.video-placeholder {
  min-height: 220px;
  border-radius: 1rem;
  border: 1px dashed #93c5fd;
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.18), rgba(15, 118, 110, 0.16)),
    #f8fbff;
  display: grid;
  place-items: center;
  color: #0c4a6e;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.screen-stack {
  display: grid;
  gap: 0.7rem;
}

.screen-mock {
  border-radius: 0.9rem;
  padding: 1rem;
  background: linear-gradient(130deg, rgba(226, 232, 240, 0.62), rgba(186, 230, 253, 0.45));
  border: 1px solid #bfdbfe;
  font-weight: 600;
  color: #0f172a;
}

.spotlight-card {
  border-color: rgba(2, 132, 199, 0.46);
  box-shadow: 0 16px 35px rgba(2, 132, 199, 0.2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metrics-band {
  padding-top: 1.2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric-tile {
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(2, 132, 199, 0.13), rgba(15, 118, 110, 0.12));
  border: 1px solid rgba(2, 132, 199, 0.25);
  padding: 1rem;
  text-align: center;
}

.metric-tile strong {
  font-size: 1.5rem;
  display: block;
}

.metric-tile span {
  font-size: 0.78rem;
  color: #0f172a;
  text-transform: lowercase;
}

.testimonial-card .card-title {
  font-size: 0.86rem;
  color: #334155;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid var(--premium-line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.8rem 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}

.faq-item p {
  margin-top: 0.55rem;
  color: #334155;
  font-size: 0.9rem;
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 61;
  padding: 0.6rem 0.8rem;
  gap: 0.6rem;
  background: rgba(247, 251, 255, 0.96);
  border-top: 1px solid var(--premium-line);
}

.mobile-cta-bar .btn {
  flex: 1 1 0;
}

.landing-hero {
  padding-top: 2.5rem;
}

.landing-hero .hero-title {
  max-width: 16ch;
}

.landing-hero .hero-subtitle {
  max-width: 52ch;
}

.lp-form-wrap {
  margin-top: 1rem;
}

.lp-form-wrap .form-card {
  max-width: 720px;
}

.product-hero-image {
  width: 100%;
  border-radius: 1.2rem;
  border: 1px solid var(--premium-line);
  box-shadow: 0 14px 32px rgba(2, 132, 199, 0.16);
}

.product-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-summary-card {
  padding: 1rem;
}

.product-summary-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0.9rem;
  border: 1px solid var(--premium-line);
  margin-bottom: 0.75rem;
}

.product-detail-list {
  display: grid;
  gap: 1rem;
}

.product-detail-item {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.product-detail-image {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid var(--premium-line);
}

.app-header {
  border-bottom: 1px solid rgba(2, 132, 199, 0.2);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.08);
}

.nav-links a {
  color: #1e293b;
  font-weight: 600;
}

.nav-links a:hover {
  color: #0b4b76;
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.2);
}

.nav-links a.active {
  background: linear-gradient(135deg, #0ea5e9, #0f766e);
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.35);
}

.subhero {
  border-radius: 1.1rem;
  padding: 2rem 1.2rem 1.6rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(14, 165, 233, 0.14), transparent 50%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(240, 249, 255, 0.94));
  border: 1px solid rgba(2, 132, 199, 0.18);
}

.card {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.card:hover {
  transform: translateY(-6px);
}

.chip {
  border-color: rgba(2, 132, 199, 0.25);
  background: rgba(255, 255, 255, 0.92);
  color: #0f4f75;
}

.solutions-showcase {
  margin-top: 1rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(2, 132, 199, 0.25);
  min-height: 250px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.showcase-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.82), rgba(2, 6, 23, 0.12));
  z-index: 1;
}

.showcase-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  color: #f8fafc;
}

.showcase-caption h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.showcase-caption p {
  font-size: 0.86rem;
  opacity: 0.92;
}

.showcase-item:hover img {
  transform: scale(1.06);
}

.segment-card {
  text-align: left;
}

.segment-icon {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  margin-bottom: 0.8rem;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.segment-card:hover .segment-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 30px rgba(2, 132, 199, 0.28);
}

@media (max-width: 960px) {
  .logo-grid,
  .demo-grid,
  .process-grid,
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-item {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.3rem);
  }

  .logo-grid,
  .demo-grid,
  .process-grid,
  .metrics-grid,
  .product-summary-grid,
  .showcase-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mobile-cta-bar {
    display: flex;
  }

  .whatsapp-float {
    bottom: 4.7rem;
  }

  body {
    padding-bottom: 4.3rem;
  }
}
