:root {
  --brand: #dd4b38;
  --brand-dark: #b93627;
  --ink: #111827;
  --ink-2: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f6f7f9;
  --white: #ffffff;
  --night: #0d1118;
  --night-2: #151b24;
  --green: #25d366;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 22px 60px rgba(17, 24, 39, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-navbar {
  background: rgba(13, 17, 24, .86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-navbar.is-scrolled {
  background: rgba(13, 17, 24, .97);
  box-shadow: 0 10px 34px rgba(0,0,0,.18);
}
.site-navbar .navbar-brand img { display: block; }
.site-navbar .nav-link {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  font-weight: 500;
  padding: 1.6rem .75rem !important;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus { color: #fff; }
.btn-nav-access {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: .58rem .92rem;
  font-size: .86rem;
  font-weight: 600;
}
.btn-nav-access:hover { background: #fff; color: var(--night); }

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 190px 0 130px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(221,75,56,.26), transparent 32%),
    radial-gradient(circle at 18% 80%, rgba(74,98,125,.24), transparent 36%),
    linear-gradient(135deg, #0b0f15 0%, #111827 58%, #171b23 100%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 75%, transparent);
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  font-weight: 800;
}
.eyebrow { color: rgba(255,255,255,.7); margin-bottom: 1.45rem; }
.eyebrow span { width: 28px; height: 2px; background: var(--brand); display: inline-block; }
.home-hero h1 {
  max-width: 820px;
  margin: 0 0 1.5rem;
  font-size: clamp(2.2rem, 6.4vw, 5.1rem);
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 760;
}
.home-hero h1 em { color: var(--brand); font-style: normal; }
.hero-lead {
  max-width: 750px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
}
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.hero-tags { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-tags span {
  padding: .4rem .72rem;
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
}

.hero-console {
  position: relative;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(5,8,12,.62);
  box-shadow: 0 40px 90px rgba(0,0,0,.34);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  overflow: hidden;
}
.console-top {
  height: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
}
.console-top i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.22); }
.console-top i:first-child { background: var(--brand); }
.console-top small { margin-left: auto; color: rgba(255,255,255,.38); letter-spacing: .08em; }
.console-body { padding: 22px; }
.console-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 12px;
  padding: 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.console-line span { grid-row: span 2; color: rgba(255,255,255,.25); font-family: monospace; font-size: .78rem; }
.console-line strong { font-size: 1.05rem; font-weight: 650; }
.console-line small { color: rgba(255,255,255,.4); }
.console-line.is-active { background: linear-gradient(90deg, rgba(221,75,56,.11), transparent); }
.console-line.is-active span, .console-line.is-active strong { color: #ff7864; }
.console-badge {
  position: absolute;
  right: 18px;
  bottom: -22px;
  padding: .75rem 1rem;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 700;
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
}
.console-badge i { color: var(--brand); margin-right: .4rem; }

.value-strip { background: #fff; border-bottom: 1px solid var(--line); }
.value-item { padding: 1.5rem 2rem; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-item strong, .value-item span { display: block; }
.value-item strong { font-size: .92rem; margin-bottom: .18rem; }
.value-item span { color: var(--muted); font-size: .82rem; line-height: 1.55; }

.section-pad { padding: 110px 0; }
.section-light { background: #fff; }
.section-heading { max-width: 880px; }
.section-heading.text-center { max-width: 900px; }
.section-kicker { color: var(--brand); margin-bottom: 1rem; }
.section-kicker-light { color: #ff8b7c; }
.section-heading h2,
.products-section h2,
.trial-strip h2,
.support-card h2,
.contact-box h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  font-weight: 760;
}
.section-heading p,
.section-copy,
.section-copy-light,
.contact-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}
.section-copy-light { color: rgba(255,255,255,.64); max-width: 760px; }

.service-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.1rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 30px rgba(17,24,39,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d7d9de; }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff2ef;
  color: var(--brand);
  font-size: 1.35rem;
}
.service-number { color: #b4b8c0; font-size: .72rem; letter-spacing: .12em; font-weight: 800; }
.service-card h3 { font-size: 1.35rem; margin: .28rem 0 .75rem; font-weight: 720; }
.service-card p { color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.mini-list { display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; list-style: none; }
.mini-list li { font-size: .76rem; color: #4b5563; background: var(--soft); border-radius: 999px; padding: .34rem .62rem; }

.products-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(221,75,56,.16), transparent 30%),
    linear-gradient(150deg, #111720, #0c1016 70%);
}
.product-card {
  padding: 2.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: #fff;
}
.product-card-featured { background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); }
.product-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.product-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .46rem .7rem;
  border-radius: 13px;
  background: #f5f1e8;
  border: 1px solid rgba(255,255,255,.12);
}
.product-logo {
  display: block;
  width: min(182px, 40vw);
  height: auto;
  object-fit: contain;
}
.product-logo-catalog { width: min(185px, 42vw); }
.product-badge { color: #ffc2ba; border: 1px solid rgba(255,132,115,.25); background: rgba(221,75,56,.12); border-radius: 999px; padding: .38rem .68rem; font-size: .72rem; }
.product-badge-soft { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.03); }
.product-wordmark { display: inline-flex; align-items: baseline; gap: .38rem; text-transform: uppercase; white-space: nowrap; }
.product-wordmark small { font-size: .62rem; letter-spacing: .12em; color: #747975; }
.product-wordmark strong { font-size: 1.7rem; letter-spacing: .05em; color: #bfcda9; }
.product-wordmark-box strong { color: #f3f4f6; }
.product-card h3 { font-size: 1.65rem; line-height: 1.25; margin-bottom: 1rem; }
.product-card p { color: rgba(255,255,255,.6); line-height: 1.7; max-width: 760px; }
.product-flow { display: flex; align-items: center; flex-wrap: wrap; gap: .45rem; margin: 1.5rem 0 2rem; }
.product-flow span { font-size: .78rem; padding: .34rem .55rem; border-radius: 7px; background: rgba(255,255,255,.07); }
.product-flow i { color: rgba(255,255,255,.25); font-style: normal; }
.product-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }
.product-link { color: rgba(255,255,255,.78); text-decoration: none; font-weight: 650; font-size: .9rem; }
.product-link:hover { color: #fff; }
.product-meta { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.25rem; }
.product-meta span { font-size: .78rem; color: rgba(255,255,255,.54); }
.product-meta i { color: #ff8b7c; margin-right: .28rem; }

.trial-strip { background: #f4f5f7; padding: 58px 0; border-bottom: 1px solid var(--line); }
.trial-strip h2 { font-size: clamp(1.8rem, 3vw, 3rem); margin-bottom: 0; }
.trial-steps { display: grid; gap: .75rem; }
.trial-steps span { display: flex; align-items: center; gap: .75rem; color: #4b5563; font-size: .92rem; }
.trial-steps b { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: #fff; font-size: .72rem; }

.process-list { border-top: 1px solid var(--line); }
.process-list article { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.process-list article > span { color: #b4b8c0; font-size: .72rem; letter-spacing: .1em; font-weight: 800; padding-top: .25rem; }
.process-list h3 { font-size: 1.16rem; margin-bottom: .35rem; font-weight: 720; }
.process-list p { margin: 0; color: var(--muted); line-height: 1.65; }
.text-link { color: var(--ink); text-decoration: none; font-weight: 700; border-bottom: 1px solid #cfd2d7; padding-bottom: .18rem; }
.text-link:hover { color: var(--brand); border-color: var(--brand); }

.support-section {
  padding: 64px 0 82px;
  background: #fff;
  scroll-margin-top: 92px;
}
.support-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3.2rem;
  color: #fff;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.12), transparent 25%),
    linear-gradient(135deg, #b83829, #de503c 60%, #cb402f);
  box-shadow: 0 30px 70px rgba(184,56,41,.2);
}
.support-icon { width: 72px; height: 72px; border-radius: 22px; display: grid; place-items: center; background: rgba(255,255,255,.14); font-size: 1.8rem; }
.support-card h2 { font-size: clamp(2rem, 3.4vw, 3.5rem); }
.support-copy p { max-width: 720px; color: rgba(255,255,255,.78); line-height: 1.7; }
.support-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.support-tags span { border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.78); border-radius: 999px; padding: .32rem .58rem; font-size: .75rem; }
.support-action { min-width: 220px; text-align: center; }
.support-action small { display: block; margin-top: .65rem; color: rgba(255,255,255,.58); font-size: .72rem; }

.contact-section { background: var(--soft); }
.contact-box { padding: 3.3rem; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-box h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.contact-actions { display: grid; gap: .8rem; }

.site-footer { background: #0c1016; color: rgba(255,255,255,.66); }
.site-footer h6 { color: #fff; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { display: block; color: rgba(255,255,255,.58); text-decoration: none; margin-bottom: .55rem; font-size: .88rem; }
.site-footer a:hover { color: #fff; }
.footer-logo { margin-bottom: 1rem; }
.footer-about { max-width: 390px; color: rgba(255,255,255,.45); font-size: .9rem; line-height: 1.65; }
.footer-bottom { margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: rgba(255,255,255,.34); font-size: .76rem; }

.whats-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  text-decoration: none;
  z-index: 1050;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  transition: transform .2s ease;
}
.whats-floating:hover { transform: translateY(-3px); color: #fff; }
.whats-floating i { font-size: 1.3rem; }

.cookie-banner {
  position: fixed;
  z-index: 1060;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 0;
  color: rgba(255,255,255,.8);
  background: rgba(13,17,24,.96);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,.2);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.cookie-banner.is-hidden { opacity: 0; visibility: hidden; transform: translateY(10px); pointer-events: none; }
.cookie-text { font-size: .8rem; }
.cookie-text a { color: #fff; }

/* Página de produtos */
.inner-hero {
  padding: 165px 0 88px;
  color: #fff;
  background: radial-gradient(circle at 80% 10%, rgba(221,75,56,.2), transparent 30%), linear-gradient(145deg, #0b0f15, #171d26);
}
.inner-hero h1 { font-size: clamp(3rem, 5vw, 5rem); line-height: 1; letter-spacing: -.05em; margin-bottom: 1.3rem; }
.inner-hero p { color: rgba(255,255,255,.65); max-width: 760px; font-size: 1.08rem; line-height: 1.75; }
.catalog-section { padding: 90px 0 120px; background: #f7f8fa; }
.catalog-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 2rem; height: 100%; box-shadow: 0 10px 30px rgba(17,24,39,.04); }
.catalog-card .product-wordmark strong { color: #374151; }
.catalog-card h2 { font-size: 1.65rem; margin: 1.4rem 0 .75rem; }
.catalog-card p { color: var(--muted); line-height: 1.7; }
.catalog-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.2rem 0 1.5rem; }
.catalog-tags span { background: var(--soft); padding: .34rem .6rem; border-radius: 999px; color: #4b5563; font-size: .75rem; }
.catalog-note { color: var(--muted); font-size: .78rem; margin-top: .8rem; }
.test-info { margin-top: 4rem; padding: 2rem; background: #111827; color: #fff; border-radius: 22px; }
.test-info p { color: rgba(255,255,255,.62); margin-bottom: 0; }

@media (max-width: 991.98px) {
  .site-navbar .nav-link { padding: .65rem 0 !important; }
  .btn-nav-access { display: inline-block; margin: .65rem 0 1rem; }
  .home-hero { min-height: auto; padding: 150px 0 95px; }
  .value-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .section-pad { padding: 82px 0; }
  .support-section { padding: 52px 0 68px; }
  .support-card { grid-template-columns: 1fr; padding: 2.2rem; }
  .support-action { text-align: left; }
  .support-action small { text-align: left; }
}

@media (max-width: 767.98px) {
  .home-hero h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .service-card { grid-template-columns: 1fr; }
  .product-head { flex-direction: column; }
  .contact-box { padding: 2rem; }
  .section-heading h2,
  .products-section h2,
  .trial-strip h2,
  .support-card h2,
  .contact-box h2 { letter-spacing: -.035em; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
}

/* LUPI: logo oficial nos cards de produto, 02/09/2026 */
.product-logo-lupi{width:min(205px,46vw)}
.catalog-card .product-logo-lupi{width:min(205px,46vw)}
