/* =========================================================
   TAGBRAZIL - SITE INSTITUCIONAL
   HTML + CSS + JavaScript puro

   Estrutura:
   01. Variáveis
   02. Reset/Base
   03. Componentes globais
   04. Header
   05. Hero
   06. Seções
   07. Cards com efeito lines
   08. Planograma + ESL
   09. Timeline
   10. Tecnologias
   11. Diferenciais
   12. Roadmap / CTA / Contato
   13. Footer
   14. Responsivo
========================================================= */

/* =========================================================
   01. VARIÁVEIS
========================================================= */
:root {
  --bg: #020617;
  --bg-soft: #041028;
  --topbar: #050b16;
  --card: rgba(8, 16, 36, 0.78);
  --card-strong: rgba(8, 18, 42, 0.94);
  --border: rgba(148, 163, 184, 0.13);
  --border-soft: rgba(255, 255, 255, 0.08);

  --text: #ffffff;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-strong: #06b6d4;

  --container: 1180px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --font-heading: "Outfit", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}

/* =========================================================
   02. RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(6, 182, 212, 0.1), transparent 28%),
    radial-gradient(circle at 10% 40%, rgba(34, 211, 238, 0.06), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font-family: inherit;
}

button {
  border: 0;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: rgba(34, 211, 238, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #020617;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(34, 211, 238, 0.45);
}

/* =========================================================
   03. COMPONENTES GLOBAIS
========================================================= */
.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 124px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.045), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(34, 211, 238, 0.035), transparent 30%);
}

.section > .container {
  position: relative;
  z-index: 2;
}

.section-anchor {
  scroll-margin-top: 90px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.052em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.text-stack {
  display: grid;
  gap: 18px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-header.two-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 80px;
  max-width: none;
  align-items: end;
}

.section-header.two-columns p:last-child {
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn-primary {
  background: #ffffff;
  color: #020617;
  border: 1px solid #ffffff;
  box-shadow: 0 18px 52px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.24);
}

.btn-ghost {
  background: rgba(2, 6, 23, 0.38);
  color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.48);
  color: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   04. HEADER
========================================================= */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(5, 11, 22, 0.88), rgba(5, 11, 22, 0.38), transparent);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    backdrop-filter 260ms ease,
    box-shadow 260ms ease;
}

.site-header.scrolled {
  background: rgba(5, 11, 22, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #ffffff;
  color: #020617;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 16px 38px rgba(0,0,0,0.22);
}

.brand-icon svg {
  width: 20px;
  height: 20px;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  color: rgba(226, 232, 240, 0.72);
  font-size: 14px;
  font-weight: 700;
  transition: color 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* =========================================================
   BOTÃO DE IDIOMA / TRANSLATE
   Toggle PT / EN com slide animado.
   Funciona com a classe .active que seu JavaScript já aplica nos botões.
========================================================= */
.language-switch {
  position: relative;
  width: 94px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 10px 30px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

/* Pill branca que desliza */
.language-switch::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 4px;
  width: 40px;
  height: 32px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 8px 20px rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: translateX(0);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    box-shadow 220ms ease;
}

/* Move a pill para o EN quando o botão EN estiver ativo */
.language-switch:has(.lang-btn[data-lang="en"].active)::before {
  transform: translateX(44px);
}

.lang-btn {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 32px;
  min-width: 40px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(226, 232, 240, 0.62);
  font-weight: 900;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

/* Aqui resolve o problema: ativo fica sempre texto escuro */
.lang-btn.active {
  color: #020617 !important;
}

.lang-btn:not(.active):hover {
  color: #ffffff;
}

.lang-btn:active {
  transform: scale(0.96);
}


.header-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #020617;
  font-size: 14px;
  font-weight: 900;
}

.header-pill svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.14);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 220ms ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* =========================================================
   05. HERO
========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 176px 0 110px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(2, 6, 23, 0.05) 0%,
      rgba(2, 6, 23, 0.12) 38%,
      rgba(2, 6, 23, 0.72) 76%,
      #020617 100%
    ),
    url("assets/background-home.png");
  background-size: cover;
  background-position: center 16%;
  background-repeat: no-repeat;
}

/* Mantém removido qualquer efeito fake/partícula extra */
.hero-section::before,
.hero-section::after {
  display: none !important;
  content: none !important;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 42%, rgba(2, 6, 23, 0.22) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.36) 0%, transparent 32%, rgba(2, 6, 23, 0.2) 60%, #020617 100%),
    radial-gradient(circle at 84% 0%, rgba(34, 211, 238, 0.22), transparent 33%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 286px);
  display: grid;
  align-items: center;
}

.hero-content {
  max-width: 780px;
}

.hero-badge {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  height: 36px;
  padding: 0 16px;
  margin-bottom: 44px;
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(2, 6, 23, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(14px);
}

.title-light {
  display: block;
  font-size: 0.9em;
  line-height: 1;
  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.18);
  font-weight: 800;

  letter-spacing: -0.02em;
}

.title-strong {
  display: block;
  line-height: 1.05;
}

/* LIGHT MODE */
body.light-mode .title-light {
  color: rgba(2, 6, 23, 0.25);
}

body.light-mode .title-strong {
  color: #020617;
}


.hero-badge strong {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 900;
}

.hero-content h1 {
  margin-bottom: 28px;
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.075em;
}

.hero-description {
  max-width: 690px;
  margin-bottom: 46px;
  color: rgba(226, 232, 240, 0.88);
  font-size: 21px;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  min-height: 58px;
  padding: 0 30px;
  font-size: 16px;
}

.hero-metrics {
  width: min(100%, 650px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 78px;
}

.hero-metrics div {
  min-height: 118px;
  padding: 12px 28px 18px;
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 1px solid rgba(148, 163, 184, 0.18);
  background: transparent;
}

.hero-metrics div:last-child {
  border-right: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-metrics svg {
  width: 20px;
  height: 20px;
  margin-bottom: 21px;
  color: var(--cyan);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-metrics span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* =========================================================
   06. SEÇÕES
========================================================= */
.about-grid,
.featured-grid,
.contact-grid,
.roadmap-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 92px;
  align-items: center;
}

.section-copy {
  max-width: 690px;
}

.section-copy > p:not(.eyebrow) {
  margin-bottom: 18px;
}

.about-visual {
  display: flex;
  justify-content: flex-end;
}

.about-card {
  width: min(100%, 410px);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 16, 36, 0.7), rgba(3, 10, 26, 0.96));
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.36);
}

.about-card-image {
  height: 330px;
  background:
    linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.92)),
    radial-gradient(circle at 60% 10%, rgba(34, 211, 238, 0.12), transparent 35%),
    linear-gradient(135deg, #0f172a, #020617);
  position: relative;
}

.about-card-image::before {
  content: "";
  position: absolute;
  inset: 45px 60px;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.1), transparent),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.09) 0 2px, transparent 2px 16px);
  opacity: 0.38;
  transform: rotate(-8deg);
}

.about-card-footer {
  height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-card-footer span {
  width: 34px;
  height: 3px;
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.8);
}

.about-card-footer small {
  color: var(--muted);
  font-size: 12px;
}

/* =========================================================
   07. CARDS COM EFEITO LINES
========================================================= */
.cards-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.line-card {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}

.line-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  transition: opacity 280ms ease;
  background:
    linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0.85) 48%, transparent 100%) top left / 100% 1px no-repeat,
    linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0.55) 48%, transparent 100%) bottom left / 100% 1px no-repeat,
    linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.6) 48%, transparent 100%) top left / 1px 100% no-repeat,
    linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.42) 48%, transparent 100%) top right / 1px 100% no-repeat;
}

.line-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 280ms ease;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(34, 211, 238, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(34, 211, 238, 0.05), transparent 42%);
}

.line-card:hover::before,
.line-card:hover::after {
  opacity: 1;
}

.service-card,
.mini-card {
  min-height: 220px;
  padding: 30px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 211, 238, 0.06), transparent 38%),
    rgba(8, 16, 36, 0.78);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.service-card:hover,
.mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.38);
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 211, 238, 0.12), transparent 42%),
    rgba(8, 18, 42, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.service-card svg,
.mini-card svg {
  width: 24px;
  height: 24px;
  margin-bottom: 28px;
  color: var(--cyan);
}

.service-card h3,
.mini-card h3 {
  color: #ffffff;
}

.service-card p,
.mini-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

/* =========================================================
   08. PLANOGRAMA + ESL
========================================================= */
.product-preview {
  min-height: 410px;
  display: flex;
  align-items: center;
}

.shelf-preview {
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(2, 6, 23, 0.2)),
    radial-gradient(circle at 50% 120%, rgba(34, 211, 238, 0.22), transparent 42%),
    linear-gradient(120deg, #111827, #020617);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
}

.shelf-preview::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 84px;
  height: 90px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent),
    #020617;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.price-tag {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 105px;
  transform: translateX(-50%);
  padding: 13px 28px;
  background: #020617;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 28px;
  font-weight: 500;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
}

.neon-line {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 102px;
  width: 4px;
  height: 64px;
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.95);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px 18px;
  margin-top: 28px;
}

.feature-list span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.35;
}

.feature-list b {
  font-weight: 600;
}

.feature-list svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--cyan);
}

/* =========================================================
   09. TIMELINE
========================================================= */
.flow-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}

.timeline {
  position: relative;
  display: grid;
  gap: 34px;
  max-width: 620px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 83px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.65), transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 34px;
  align-items: center;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 78px;
  top: 50%;
  width: 11px;
  height: 11px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.9);
}

.timeline-number {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.timeline-item h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.timeline-item p {
  margin-bottom: 0;
  font-size: 14px;
}

/* =========================================================
   10. TECNOLOGIAS
========================================================= */
.tech-orbit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.tech-card {
  min-height: 128px;
  padding: 22px 16px;
  display: grid;
  place-items: center;
  gap: 13px;
  text-align: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.07), transparent 42%),
    rgba(8, 16, 36, 0.68);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;

    animation: floatSoft 6s ease-in-out infinite;
}

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

}

.tech-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(34, 211, 238, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.14), transparent 48%),
    rgba(8, 18, 42, 0.96);
  box-shadow:
    0 0 40px rgba(34, 211, 238, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.tech-card svg {
  width: 29px;
  height: 29px;
  color: rgba(226, 232, 240, 0.74);
  transition: color 220ms ease, filter 220ms ease;
}

.tech-card:hover svg {
  color: var(--cyan);
  filter: drop-shadow(0 0 16px rgba(34, 211, 238, 0.8));
}

.tech-card span {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
}

/* =========================================================
   11. DIFERENCIAIS
========================================================= */
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mini-card {
  min-height: 178px;
}

/* =========================================================
   12. ROADMAP / CTA / CONTATO
========================================================= */
.roadmap-grid {
  align-items: start;
}

.roadmap-list {
  display: grid;
  gap: 12px;
}

.roadmap-list div {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-radius: 12px;
  color: var(--muted-strong);
  background: rgba(8, 16, 36, 0.82);
}

.roadmap-list b {
  font-weight: 700;
}

.roadmap-list span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.86);
}

.cta-card {
  position: relative;
  padding: clamp(38px, 7vw, 72px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(34, 211, 238, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(4, 16, 40, 0.98), rgba(2, 6, 23, 0.92));
}

.cta-card h2 {
  max-width: 760px;
}

.cta-card p {
  max-width: 690px;
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  max-width: 420px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 12px;
  color: var(--muted-strong);
  background: rgba(8, 16, 36, 0.72);
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.contact-list a:hover {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(34, 211, 238, 0.34);
}

.contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
}

.contact-card {
  display: flex;
  justify-content: flex-end;
}

.whatsapp-box {
  width: min(100%, 430px);
  padding: 44px 38px;
  border-radius: 22px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.15), transparent 38%),
    rgba(8, 16, 36, 0.82);
}

.whatsapp-box > svg {
  width: 38px;
  height: 38px;
  margin: 0 auto 22px;
  color: var(--cyan);
}

.whatsapp-box p {
  margin-bottom: 28px;
}

/* =========================================================
   13. FOOTER
========================================================= */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  padding: 32px 0;
}

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

.footer-inner p {
  margin: 0;
  color: rgba(148, 163, 184, 0.65);
  font-size: 13px;
}

/* =========================================================
   14. RESPONSIVO
========================================================= */
@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

      .mobile-nav {
        position: fixed;
        top: 90px;
        left: 16px;
        right: 16px;
        z-index: 99;

        display: grid;
        gap: 6px;
        padding: 18px;

        border-radius: 20px;

        background: rgba(2, 6, 23, 0.85);
        backdrop-filter: blur(24px);

        border: 1px solid rgba(255, 255, 255, 0.08);

        box-shadow:
          0 20px 60px rgba(0, 0, 0, 0.35),
          inset 0 0 0 1px rgba(255, 255, 255, 0.03);

        transform: translateY(-20px) scale(0.98);
        opacity: 0;
        pointer-events: none;

        transition: all 260ms ease;
      }

      .mobile-nav.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
      }

    .mobile-nav a {
        padding: 14px 14px;
        border-radius: 12px;

        font-weight: 600;
        font-size: 15px;

        color: rgba(226, 232, 240, 0.75);

        transition: all 200ms ease;
      }

      .mobile-nav a:hover {
        background: rgba(34, 211, 238, 0.08);
        color: #22d3ee;
        transform: translateX(4px);
      }

  .section-header.two-columns,
  .about-grid,
  .featured-grid,
  .contact-grid,
  .roadmap-grid,
  .flow-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual,
  .contact-card {
    justify-content: flex-start;
  }

  .services-grid,
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-orbit {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .brand-copy span {
    display: none;
  }

  .header-pill {
    display: none;
  }

  .language-switch {
    width: 88px;
    height: 38px;
  }

  .language-switch::before {
    width: 38px;
    height: 30px;
  }

  .language-switch:has(.lang-btn[data-lang="en"].active)::before {
    transform: translateX(42px);
  }

  .lang-btn {
    width: 38px;
    height: 30px;
    min-width: 38px;
    padding: 0;
  }

  .hero-section {
    min-height: auto;
    padding: 136px 0 90px;
    background-position: 58% top;
  }

  .hero-content h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hero-metrics div,
  .hero-metrics div:last-child {
    border-right: 0;
    border-left: 1px solid rgba(148, 163, 184, 0.18);
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .services-grid,
  .differentials-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 190px;
  }

  .tech-orbit {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 64px;
  }

  .timeline-item {
    grid-template-columns: 48px 1fr;
    gap: 30px;
  }

  .timeline-item::after {
    left: 59px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-badge strong {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .product-preview {
    min-height: auto;
  }

  .shelf-preview {
    height: 260px;
  }

  .price-tag {
    font-size: 22px;
  }

  .tech-orbit {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   DARK / LIGHT MODE
========================================================= */

.theme-toggle {
  width: 42px;
  height: 42px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #ffffff;
  cursor: pointer;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.38);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.18);
}

.theme-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-icon-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

/* Quando estiver no modo light */
body.light-mode .theme-icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

body.light-mode .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* =========================================================
   LIGHT MODE COLORS
========================================================= */

body.light-mode {
  --bg: #ffffff;
  --bg-soft: #eef4fb;
  --topbar: #ffffff;
  --card: rgba(255, 255, 255, 0.82);
  --card-strong: rgba(255, 255, 255, 0.96);
  --border: rgba(15, 23, 42, 0.12);
  --border-soft: rgba(15, 23, 42, 0.08);

  --text: #020617;
  --muted: #64748b;
  --muted-strong: #334155;

  background:
    radial-gradient(circle at 80% 0%, rgba(6, 182, 212, 0.12), transparent 28%),
    radial-gradient(circle at 10% 40%, rgba(34, 211, 238, 0.08), transparent 26%),
    var(--bg);
  color: var(--text);
}

body.light-mode .site-header {
  color: #020617;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.72),
    transparent
  );
}

body.light-mode .site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

body.light-mode .brand-icon {
  background: #020617;
  color: #ffffff;
}

body.light-mode .brand-copy strong {
  color: #020617;
}

body.light-mode .brand-copy span {
  color: rgba(15, 23, 42, 0.55);
}

body.light-mode .desktop-nav a {
  color: rgba(15, 23, 42, 0.62);
}

body.light-mode .desktop-nav a:hover,
body.light-mode .desktop-nav a.active {
  color: #020617;
}

body.light-mode .language-switch,
body.light-mode .theme-toggle {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(15, 23, 42, 0.12);
  color: #020617;
}

body.light-mode .lang-btn {
  color: rgba(15, 23, 42, 0.48);
}

body.light-mode .lang-btn.active {
  color: #ffffff !important;
}

body.light-mode .language-switch::before {
  background: #020617;
}

body.light-mode .header-pill {
  background: #020617;
  color: #ffffff;
}

body.light-mode .hero-section {
  background:
    linear-gradient(
      180deg,
      rgba(245, 247, 251, 0.1) 0%,
      rgba(245, 247, 251, 0.42) 42%,
      rgba(245, 247, 251, 0.88) 78%,
      #f5f7fb 100%
    ),
    url("assets/background-home.png");
  background-size: cover;
  background-position: center 16%;
  background-repeat: no-repeat;
}

body.light-mode .hero-bg-overlay {
  background:
    linear-gradient(90deg, rgba(245, 247, 251, 0.96) 0%, rgba(245, 247, 251, 0.76) 42%, rgba(245, 247, 251, 0.25) 100%),
    linear-gradient(180deg, rgba(245, 247, 251, 0.28) 0%, transparent 32%, rgba(245, 247, 251, 0.35) 60%, #f5f7fb 100%);
}

body.light-mode .hero-content h1,
body.light-mode h2,
body.light-mode h3 {
  color: #020617;
}

body.light-mode p,
body.light-mode .hero-description {
  color: #475569;
}

body.light-mode .hero-badge {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(15, 23, 42, 0.12);
  color: #334155;
}

body.light-mode .btn-primary {
  background: #020617;
  color: #ffffff;
  border-color: #020617;
}

body.light-mode .btn-primary:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #020617;
}

body.light-mode .btn-ghost {
  background: rgba(255, 255, 255, 0.52);
  color: #020617;
  border-color: rgba(15, 23, 42, 0.14);
}

body.light-mode .hero-metrics strong,
body.light-mode .service-card h3,
body.light-mode .mini-card h3 {
  color: #020617;
}

body.light-mode .hero-metrics div {
  border-left-color: rgba(15, 23, 42, 0.12);
}

body.light-mode .hero-metrics div:last-child {
  border-right-color: rgba(15, 23, 42, 0.12);
}

body.light-mode .service-card,
body.light-mode .mini-card,
body.light-mode .tech-card,
body.light-mode .roadmap-list div,
body.light-mode .contact-list a,
body.light-mode .whatsapp-box,
body.light-mode .cta-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 211, 238, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.78);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.06);
}

body.light-mode .tech-card span,
body.light-mode .feature-list span,
body.light-mode .roadmap-list div,
body.light-mode .contact-list a {
  color: #334155;
}

body.light-mode .tech-card svg {
  color: rgba(15, 23, 42, 0.55);
}

body.light-mode .site-footer {
  border-top-color: rgba(15, 23, 42, 0.08);
}

body.light-mode .footer-inner p {
  color: rgba(15, 23, 42, 0.55);
}

body:not(.light-mode) .title-light {
  color: rgba(255, 255, 255, 0.3);
}

body:not(.light-mode) .title-strong {
  color: #ffffff;
}

body.light-mode .mobile-nav {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.1);
}

body.light-mode .mobile-nav a {
  color: rgba(15, 23, 42, 0.7);
}

body.light-mode .mobile-nav a:hover {
  color: #020617;
}

/* =========================================================
   15. AJUSTES FINAIS — VERSÃO CORRIGIDA
   Correções aplicadas:
   - Tipografia menos pesada / mais premium
   - Hero title corrigido em dark e light
   - Menu mobile com visual glass premium
   - Botão hamburger melhorado
   - Dark/light consistente no mobile
   - Toggle de idioma preservado com slide
========================================================= */

/* =========================================================
   TIPOGRAFIA PREMIUM
========================================================= */
h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

.btn {
  font-weight: 600;
}

.desktop-nav a {
  font-weight: 500;
}

.header-pill {
  font-weight: 700;
}

.lang-btn {
  font-weight: 700;
}

.hero-badge strong {
  font-weight: 700;
}

.hero-content h1 {
  font-weight: 800;
}

.service-card h3,
.mini-card h3 {
  font-weight: 600;
}

.tech-card span {
  font-weight: 600;
}

.roadmap-list b,
.feature-list b {
  font-weight: 500;
}

/* =========================================================
   HERO TITLE — CORREÇÃO DARK / LIGHT
========================================================= */
.hero-content h1 .title-light {
  display: block;
  font-size: 0.9em;
  line-height: 1;
  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.18);
  font-weight: 800;

  letter-spacing: -0.02em;
}

.title-strong {
  display: block;
  color: #ffffff;
}

body.light-mode .title-light {
  color: rgba(2, 6, 23, 0.28);
}

body.light-mode .title-strong {
  color: #020617;
}

/* garante que o h1 não sobrescreva os spans */
.hero-content h1 {
  color: inherit;
}


/* =========================================================
   HEADER ACTIONS — AJUSTE DE ESPAÇAMENTO
========================================================= */
.header-actions {
  gap: 12px;
}

.theme-toggle,
.header-pill,
.menu-toggle {
  flex: 0 0 auto;
}

/* =========================================================
   BOTÃO MENU MOBILE / HAMBURGER PREMIUM
========================================================= */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.58);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.18);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

/* =========================================================
   MENU MOBILE PREMIUM
========================================================= */
.mobile-nav {
  display: none;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    top: 90px;
    left: 16px;
    right: 16px;
    z-index: 99;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.86);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.35),
      inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    transform: translateY(-18px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 260ms ease,
      transform 260ms ease,
      background 220ms ease,
      border-color 220ms ease;
  }

  .mobile-nav.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    padding: 14px;
    border-radius: 12px;
    color: rgba(226, 232, 240, 0.78);
    font-size: 15px;
    font-weight: 500;
    transition:
      background 200ms ease,
      color 200ms ease,
      transform 200ms ease;
  }

  .mobile-nav a:hover {
    background: rgba(34, 211, 238, 0.08);
    color: #22d3ee;
    transform: translateX(4px);
  }
}

/* =========================================================
   MOBILE HERO — MELHOR LEITURA
========================================================= */
@media (max-width: 760px) {
  .header-inner {
    height: 72px;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    width: 86px;
    height: 38px;
  }

  .language-switch::before {
    width: 37px;
    height: 30px;
  }

  .language-switch:has(.lang-btn[data-lang="en"].active)::before {
    transform: translateX(41px);
  }

  .lang-btn {
    width: 37px;
    min-width: 37px;
    height: 30px;
    font-size: 11px;
  }

  .theme-toggle,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-section {
    padding: 126px 0 84px;
  }

  .hero-badge {
    height: auto;
    min-height: 34px;
    padding: 8px 12px;
    margin-bottom: 28px;
  }

  .hero-badge strong {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero-content h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 13.5vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.06em;
  }

  .hero-description {
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-buttons .btn {
    min-height: 52px;
    padding: 0 22px;
    font-size: 15px;
  }

  .hero-metrics {
    margin-top: 44px;
  }

  .hero-metrics div {
    min-height: 104px;
    padding: 18px 22px;
  }

  .hero-metrics strong {
    font-size: 24px;
  }
}

/* =========================================================
   CARDS — PESO VISUAL MAIS PREMIUM
========================================================= */
.service-card,
.mini-card,
.tech-card,
.roadmap-list div,
.contact-list a,
.whatsapp-box,
.cta-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.service-card p,
.mini-card p {
  color: rgba(226, 232, 240, 0.72);
}

body.light-mode .service-card p,
body.light-mode .mini-card p {
  color: #64748b;
}

/* remove conflito entre animação float e hover */
.tech-card {
  animation: none;
}

.tech-card:hover {
  transform: translateY(-6px);
}

/* =========================================================
   DARK / LIGHT — AJUSTES FINAIS
========================================================= */
body.light-mode {
  --bg: #f7f9fc;
  --bg-soft: #eef4fb;
  --topbar: #ffffff;
  --card: rgba(255, 255, 255, 0.82);
  --card-strong: rgba(255, 255, 255, 0.96);
  --border: rgba(15, 23, 42, 0.12);
  --border-soft: rgba(15, 23, 42, 0.08);
  --text: #020617;
  --muted: #64748b;
  --muted-strong: #334155;
  color: var(--text);
}

body.light-mode .site-header {
  color: #020617;
}

body.light-mode .menu-toggle,
body.light-mode .theme-toggle,
body.light-mode .language-switch {
  background: rgba(255, 255, 255, 0.76);
  color: #020617;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 10px 28px rgba(15, 23, 42, 0.06);
}

body.light-mode .mobile-nav {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

body.light-mode .mobile-nav a {
  color: rgba(15, 23, 42, 0.7);
}

body.light-mode .mobile-nav a:hover {
  background: rgba(6, 182, 212, 0.08);
  color: #020617;
}

body.light-mode .lang-btn {
  color: rgba(15, 23, 42, 0.5);
}

body.light-mode .lang-btn.active {
  color: #ffffff !important;
}

body.light-mode .language-switch::before {
  background: #020617;
  box-shadow:
    0 8px 20px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(15, 23, 42, 0.12);
}

body.light-mode .header-pill {
  background: #020617;
  color: #ffffff;
}

body.light-mode .hero-badge strong {
  color: #334155;
}

body.light-mode .hero-metrics strong {
  color: #020617;
}

body.light-mode .hero-metrics span {
  color: #0369a1;
}

body.light-mode .price-tag {
  background: #ffffff;
  color: #020617;
  border-color: rgba(15, 23, 42, 0.12);
}

body.light-mode .shelf-preview::before {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), transparent),
    rgba(255, 255, 255, 0.9);
  border-top-color: rgba(15, 23, 42, 0.08);
}

/* =========================================================
   ACESSIBILIDADE
========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
   16. FIX FINAL DO HERO TITLE — DEFINITIVO
   Motivo:
   O CSS anterior estava funcionando, mas com opacidade muito baixa.
   Este bloco precisa ficar no FINAL do arquivo.
========================================================= */

/* O H1 não deve mandar na cor dos spans */
.hero-content h1,
h1.hero-title {
  color: inherit !important;
}

/* Palavra "Automação" */
.hero-content h1 span.title-light,
.hero-content h1 .title-light,
h1.hero-title span.title-light,
h1.hero-title .title-light {
  display: block !important;

  font-family: var(--font-heading) !important;
  font-size: 0.9em !important;
  line-height: 0.95 !important;
  margin-bottom: 10px !important;

  color: rgba(255, 255, 255, 0.72) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.72) !important;

  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  mix-blend-mode: normal !important;

  font-weight: 800 !important;
  letter-spacing: -0.035em !important;

  text-shadow:
    0 0 28px rgba(255, 255, 255, 0.08),
    0 18px 70px rgba(34, 211, 238, 0.10) !important;
}

/* Parte principal do título */
.hero-content h1 span.title-strong,
.hero-content h1 .title-strong,
h1.hero-title span.title-strong,
h1.hero-title .title-strong {
  display: block !important;

  font-family: var(--font-heading) !important;
  line-height: 1.02 !important;

  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;

  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  mix-blend-mode: normal !important;

  font-weight: 800 !important;
  letter-spacing: -0.065em !important;
}

/* Light mode */
body.light-mode .hero-content h1 span.title-light,
body.light-mode .hero-content h1 .title-light,
body.light-mode h1.hero-title span.title-light,
body.light-mode h1.hero-title .title-light {
  color: rgba(2, 6, 23, 0.55) !important;
  -webkit-text-fill-color: rgba(2, 6, 23, 0.55) !important;
  text-shadow: none !important;
}

body.light-mode .hero-content h1 span.title-strong,
body.light-mode .hero-content h1 .title-strong,
body.light-mode h1.hero-title span.title-strong,
body.light-mode h1.hero-title .title-strong {
  color: #020617 !important;
  -webkit-text-fill-color: #020617 !important;
}

/* Mobile */
@media (max-width: 760px) {
  .hero-content h1 span.title-light,
  .hero-content h1 .title-light,
  h1.hero-title span.title-light,
  h1.hero-title .title-light {
    font-size: 0.82em !important;
    line-height: 0.95 !important;
    margin-bottom: 8px !important;
  }

  .hero-content h1 span.title-strong,
  .hero-content h1 .title-strong,
  h1.hero-title span.title-strong,
  h1.hero-title .title-strong {
    line-height: 1.04 !important;
  }
}

