/*
Theme Name: MRM Lab Institucional
Theme URI: https://mrmlab.com.br
Author: MRM Lab
Description: Tema institucional premium focado em autoridade e conversao.
Version: 2.7
Text Domain: mrmlab
*/

/* --- Tokens / home (inspiracao MRM Growth Lab) --- */
:root {
  --roxo: #3e0041;
  --laranja: #FF5F1F;
  --branco: #FFFFFF;
  --preto: #060606;
  --cinza-claro: #f4f4f5;
  --purple-deep: #0a000a;
  --purple-mid: #3e0041;
  --orange: #ff5f1f;
  --text-white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.7);
  --font-display: "Montserrat", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px !important;
}

body {
  margin: 0;
  font-size: 16px !important;
  font-family: var(--font-display);
  line-height: 1.5;
  background-color: var(--roxo);
  color: var(--branco);
}

h1 {
  font-size: 2.4rem !important;
}

h2 {
  font-size: 1.8rem !important;
}

h3 {
  font-size: 1.4rem !important;
}

p {
  font-size: 1rem !important;
}

button,
a {
  font-size: 0.95rem !important;
}

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

a:hover {
  opacity: 0.92;
}

a.brand:hover {
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  cursor: pointer;
  animation: pulse 1.5s infinite;
}

.whatsapp-float img {
  width: 100%;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

/* --- Home: fundo premium + textura sutil --- */
body.is-home {
  min-height: 100vh;
  color: var(--text-white);
  background-color: #0d0014;
  background-image: none;
}

/* --- Header (home) --- */
.site-header--home {
  position: relative;
  z-index: 20;
  background: #0d0014;
  border-bottom: 1px solid rgba(255, 95, 31, 0.12);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1rem clamp(0.5rem, 2vw, 0);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  line-height: 0;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.brand-logo {
  display: block;
  height: 280px;
  width: auto;
  max-width: min(1360px, 88vw);
  object-fit: contain;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none;
}

.brand img,
.header-left img,
.site-header img,
.site-footer__brand-logo {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

img {
  background: transparent !important;
}

.site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 95, 31, 0.35);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.header-social a:hover {
  border-color: rgba(255, 95, 31, 0.8);
  box-shadow: 0 0 14px rgba(255, 95, 31, 0.35);
  opacity: 1;
}

.nav-main {
  flex: 1 1 220px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.nav-main a {
  color: rgba(255, 255, 255, 0.92);
}

.nav-main a:hover {
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 95, 31, 0.5);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  border-radius: 999px;
  border: 1px solid rgba(255, 95, 31, 0.55);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 18px rgba(255, 95, 31, 0.2);
  cursor: pointer;
  transition:
    box-shadow 0.25s,
    border-color 0.2s,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.header-cta:hover {
  border-color: rgba(255, 140, 90, 0.95);
  box-shadow: 0 0 24px rgba(255, 95, 31, 0.45);
  opacity: 0.94;
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .brand-logo {
    height: 200px;
    max-width: min(1020px, 86vw);
  }

  .nav-main {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .header-cta {
    margin-left: auto;
  }
}

/* --- Hero --- */
.home-main {
  position: relative;
  overflow-x: clip;
}

.home-hero {
  position: relative;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  background-color: #0d0014;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  min-height: 80vh;
  padding: clamp(2rem, 5vh, 4rem) 0 clamp(3rem, 8vh, 5rem);
}

.home-hero-copy {
  max-width: 640px;
}

.home-hero-visual {
  position: relative;
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: clamp(280px, 58vh, 760px);
}

.home-hero-visual__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: contain;
  object-position: right center;
  background: transparent;
}

.home-hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.9);
}

.home-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.home-hero-title__line {
  display: block;
  line-height: 1.06;
  font-size: clamp(1.9rem, 1.1vw + 1rem, 2.4rem);
}

.home-hero-title__line + .home-hero-title__line {
  margin-top: 0.12em;
}

.home-hero-title__line--white {
  color: var(--text-white);
}

.home-hero-title__line--orange {
  color: var(--orange);
  text-shadow: 0 0 42px rgba(255, 95, 31, 0.35);
}

.home-hero-lede {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  font-size: clamp(0.98rem, 0.4vw + 0.92rem, 1.1rem);
  line-height: 1.75;
  color: var(--text-soft);
}

.home-hero-cta {
  display: inline-block;
  margin-top: clamp(24px, 3vw, 32px);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(255, 95, 31, 0.28);
  transition:
    box-shadow 0.28s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.home-hero-cta:hover {
  box-shadow:
    0 0 36px rgba(255, 95, 31, 0.65),
    0 14px 48px rgba(255, 95, 31, 0.35);
  opacity: 0.95;
  transform: scale(1.02);
}

@media (max-width: 960px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    align-items: start;
    padding-top: clamp(1.5rem, 4vh, 2.5rem);
    padding-bottom: 2rem;
  }

  .home-hero-visual {
    order: 2;
    justify-content: center;
    min-height: 0;
    max-height: none;
  }

  .home-hero-visual__img {
    max-height: min(48vh, 420px);
    object-position: center;
  }
}

/* --- Home: problema / estrategia (2 colunas) --- */
.home-strategy {
  width: 100%;
  position: relative;
  border-top: 1px solid rgba(255, 95, 31, 0.1);
  background: #0d0014;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 4rem);
}

.home-strategy__wrap {
  width: 100%;
  max-width: min(90rem, 96vw);
  margin: 0 auto;
}

.home-strategy__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.home-strategy__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.home-strategy__title-line {
  display: block;
}

.home-strategy__title-line + .home-strategy__title-line {
  margin-top: 0.14em;
}

.home-strategy__title-line--white {
  color: var(--text-white);
  font-size: clamp(1.7rem, 1vw + 1rem, 2.3rem);
}

.home-strategy__title-line--orange {
  color: var(--orange);
  font-size: clamp(1.8rem, 1.1vw + 1rem, 2.4rem);
  text-shadow: 0 0 38px rgba(255, 95, 31, 0.32);
}

.home-strategy__lead {
  max-width: 32rem;
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  font-size: clamp(0.97rem, 0.35vw + 0.9rem, 1.06rem);
  line-height: 1.75;
  color: var(--text-soft);
}

.home-strategy__sub {
  margin: clamp(1.35rem, 2.2vw, 1.85rem) 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}

.home-strategy__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-strategy__list li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.9rem;
  font-size: clamp(0.98rem, 0.25vw + 0.94rem, 1.05rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.home-strategy__list li:last-child {
  margin-bottom: 0;
}

.home-strategy__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
}

.home-strategy__callout {
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: 1.1rem 1.35rem 1.1rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 10px 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--orange);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-strategy__callout-text {
  display: block;
  font-weight: 700;
  font-size: clamp(0.78rem, 0.9vw + 0.68rem, 0.95rem);
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.96);
}

.home-strategy__callout-accent {
  color: var(--orange);
  font-weight: 800;
}

.home-strategy__visual {
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: min(52vh, 560px);
}

.home-strategy__visual-frame {
  position: relative;
  width: 100%;
  max-width: 920px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.home-strategy__img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  transform: none;
  transform-origin: center;
  object-fit: contain;
}

/* --- Home: posicionamento MRM --- */
.home-positioning {
  width: 100%;
  position: relative;
  border-top: 1px solid rgba(255, 95, 31, 0.1);
  background: #0d0014;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.home-positioning__wrap {
  width: 100%;
  max-width: min(96rem, 100%);
  margin: 0 auto;
}

.home-positioning__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 0.55fr);
  gap: clamp(2.25rem, 5vw, 5.5rem);
  align-items: center;
}

.home-positioning__system {
  min-width: 0;
}

.home-positioning__system-card {
  padding: clamp(1.6rem, 2.5vw, 2.25rem);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(38, 8, 42, 0.72) 0%, rgba(23, 5, 28, 0.82) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-positioning__system-eyebrow,
.home-positioning__eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.72);
}

.home-positioning__system-list,
.home-positioning__principles-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-positioning__system-list {
  margin-top: 1.4rem;
}

.home-positioning__system-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.home-positioning__system-item:hover {
  transform: translateX(6px);
  border-color: rgba(255, 95, 31, 0.42);
  box-shadow: inset 0 -1px 0 rgba(255, 95, 31, 0.18);
}

.home-positioning__system-label {
  font-size: clamp(1rem, 0.45vw + 0.96rem, 1.2rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.home-positioning__system-arrow {
  font-size: 1.2rem;
  color: var(--orange);
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.home-positioning__system-item:hover .home-positioning__system-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.home-positioning__system-value {
  font-size: clamp(1rem, 0.5vw + 0.96rem, 1.24rem);
  font-weight: 700;
  color: var(--orange);
}

.home-positioning__principles {
  margin-top: 1.35rem;
}

.home-positioning__principles-title {
  margin: 0 0 0.95rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.home-positioning__principles-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.home-positioning__principles-list li:last-child {
  margin-bottom: 0;
}

.home-positioning__principles-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--orange);
}

.home-positioning__content {
  position: relative;
  min-width: 0;
}

.home-positioning__title {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.home-positioning__title-line {
  display: block;
  font-size: clamp(1.9rem, 1.1vw + 1rem, 2.4rem);
  line-height: 1.02;
  font-weight: 800;
  color: #ffffff;
}

.home-positioning__title-line + .home-positioning__title-line {
  margin-top: 0.14em;
}

.home-positioning__title-line--accent {
  color: var(--orange);
  font-weight: 900;
}

.home-positioning__lead,
.home-positioning__text {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.08rem);
  line-height: 1.8;
}

.home-positioning__lead {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.home-positioning__text {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.home-positioning__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  min-height: 54px;
  padding: 0.9rem 1.6rem;
  border: 1px solid rgba(255, 95, 31, 0.7);
  border-radius: 12px;
  background: transparent;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(255, 95, 31, 0.14);
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.home-positioning__cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 28px rgba(255, 95, 31, 0.28);
  opacity: 1;
  transform: translateY(-1px);
}

.home-positioning__visual {
  position: relative;
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
  width: min(100%, 58rem);
}

.home-positioning__img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.3;
  filter: blur(1.2px);
  transform: translateX(1.25rem);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js-reveal-section:not(.is-visible) .home-strategy__copy,
  .js-reveal-section:not(.is-visible) .home-strategy__visual,
  .js-reveal-section:not(.is-visible) .home-positioning__system,
  .js-reveal-section:not(.is-visible) .home-positioning__content {
    opacity: 0;
    transform: translateY(22px);
  }

  .js-reveal-section.is-visible .home-strategy__copy,
  .js-reveal-section.is-visible .home-strategy__visual,
  .js-reveal-section.is-visible .home-positioning__system,
  .js-reveal-section.is-visible .home-positioning__content {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.72s ease,
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal-section .home-strategy__copy,
  .js-reveal-section .home-strategy__visual,
  .js-reveal-section .home-positioning__system,
  .js-reveal-section .home-positioning__content {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .home-strategy__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-strategy__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .home-strategy__sub {
    text-align: center;
  }

  .home-strategy__list {
    display: inline-block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }

  .home-strategy__callout {
    text-align: left;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .home-strategy__visual {
    order: 2;
    justify-content: center;
    min-height: 0;
    margin-top: 0.5rem;
  }

  .home-strategy__visual-frame {
    justify-content: center;
    max-width: 100%;
  }

  .home-strategy__img {
    width: min(100%, 440px);
    max-width: 440px;
    margin: 0 auto;
  }

  .home-positioning {
    padding-inline: clamp(1.25rem, 5vw, 2rem);
  }

  .home-positioning__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-positioning__content {
    text-align: center;
  }

  .home-positioning__lead,
  .home-positioning__text {
    margin-left: auto;
    margin-right: auto;
  }

  .home-positioning__system-item {
    gap: 0.65rem;
  }

  .home-positioning__system {
    order: 1;
  }

  .home-positioning__content {
    order: 2;
  }

  .home-positioning__visual {
    margin: 1.6rem auto 0;
  }

  .home-positioning__img {
    width: min(100%, 520px);
    margin: 0 auto;
    transform: none;
  }
}

/* --- Home: diagnostico / conversao --- */
.home-conversion {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(5rem, 9vw, 7rem);
  background: #0d0014;
}

.home-conversion__wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.home-conversion__intro {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.home-conversion__title {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.home-conversion__title-line {
  display: block;
  font-size: clamp(1.85rem, 1vw + 1rem, 2.4rem);
  line-height: 1.06;
  font-weight: 800;
  color: #f5f1ef;
}

.home-conversion__title-line + .home-conversion__title-line {
  margin-top: 0.12em;
}

.home-conversion__title-accent {
  color: var(--orange);
}

.home-conversion__lede {
  margin: 1.4rem auto 0;
  max-width: 48rem;
  font-size: clamp(1rem, 0.45vw + 0.94rem, 1.15rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
}

.home-conversion__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2.4rem, 5vw, 3.75rem);
}

.home-conversion__card {
  min-height: 100%;
  padding: 1.55rem 1.35rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(24, 13, 20, 0.98) 0%, rgba(18, 10, 17, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.home-conversion__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 95, 31, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 56px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 95, 31, 0.08);
}

.home-conversion__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  margin-bottom: 1rem;
  color: var(--orange);
}

.home-conversion__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-conversion__card-title {
  margin: 0;
  max-width: 14rem;
  font-size: clamp(1.3rem, 0.7vw + 1rem, 1.7rem);
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
}

.home-conversion__card-title-accent {
  color: var(--orange);
}

.home-conversion__card-text {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
}

.home-conversion__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.55rem;
  min-height: 2.75rem;
  padding: 0.78rem 0.95rem;
  border: 1px solid rgba(255, 95, 31, 0.75);
  border-radius: 9px;
  color: #ffe6da;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(255, 95, 31, 0.12);
  transition:
    background-color 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.home-conversion__card-link:hover {
  background: rgba(255, 95, 31, 0.12);
  border-color: rgba(255, 95, 31, 0.95);
  box-shadow: 0 0 24px rgba(255, 95, 31, 0.2);
  opacity: 1;
  transform: translateY(-1px);
}

.home-conversion__cta-wrap {
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.home-conversion__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 1rem 1.9rem;
  min-width: min(100%, 520px);
  border-radius: 12px;
  border: 1px solid rgba(255, 95, 31, 0.9);
  background: linear-gradient(180deg, rgba(255, 95, 31, 0.96) 0%, rgba(229, 80, 20, 0.96) 100%);
  color: #fff7f3;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow:
    0 10px 36px rgba(255, 95, 31, 0.22),
    0 0 22px rgba(255, 95, 31, 0.2);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease;
}

.home-conversion__cta:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 14px 42px rgba(255, 95, 31, 0.28),
    0 0 28px rgba(255, 95, 31, 0.28);
}

@media (prefers-reduced-motion: no-preference) {
  .js-reveal-section:not(.is-visible) .home-conversion__intro,
  .js-reveal-section:not(.is-visible) .home-conversion__grid,
  .js-reveal-section:not(.is-visible) .home-conversion__cta-wrap {
    opacity: 0;
    transform: translateY(22px);
  }

  .js-reveal-section.is-visible .home-conversion__intro,
  .js-reveal-section.is-visible .home-conversion__grid,
  .js-reveal-section.is-visible .home-conversion__cta-wrap {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.72s ease,
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal-section .home-conversion__intro,
  .js-reveal-section .home-conversion__grid,
  .js-reveal-section .home-conversion__cta-wrap {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .home-conversion__grid {
    grid-template-columns: 1fr;
  }

  .home-conversion__card-title {
    max-width: none;
  }

  .home-conversion__cta {
    min-width: min(100%, 100%);
  }
}

/* --- Rodape home --- */
.site-footer--home {
  background: #0d0014;
  color: #ffffff;
}

.site-footer__cta {
  padding: clamp(4rem, 7vw, 5.5rem) 1.5rem clamp(3rem, 6vw, 4rem);
  border-top: 1px solid rgba(255, 95, 31, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__cta-inner,
.site-footer__main-inner,
.site-footer__bottom {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.site-footer__cta-inner {
  text-align: center;
}

.site-footer__cta-title {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.site-footer__cta-line {
  display: block;
  font-size: clamp(1.8rem, 0.9vw + 1rem, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
  color: #f6f0ed;
}

.site-footer__cta-line + .site-footer__cta-line {
  margin-top: 0.12em;
}

.site-footer__cta-accent {
  color: var(--orange);
}

.site-footer__cta-text {
  max-width: 48rem;
  margin: 1.35rem auto 0;
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.12rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 2rem;
  padding: 1rem 1.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 95, 31, 0.92);
  background: linear-gradient(180deg, rgba(255, 95, 31, 0.97) 0%, rgba(230, 80, 20, 0.97) 100%);
  color: #fff7f3;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow:
    0 10px 36px rgba(255, 95, 31, 0.2),
    0 0 28px rgba(255, 95, 31, 0.2);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease;
}

.site-footer__cta-button:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 14px 42px rgba(255, 95, 31, 0.28),
    0 0 34px rgba(255, 95, 31, 0.24);
}

.site-footer__main {
  padding: clamp(2.75rem, 6vw, 4rem) 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__main-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
}

.site-footer__brand,
.site-footer__nav,
.site-footer__contact {
  min-width: 0;
}

.site-footer__nav,
.site-footer__contact {
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand-logo {
  display: block;
  width: auto;
  max-width: min(260px, 100%);
  height: auto;
}

.site-footer__brand-text {
  max-width: 22rem;
  margin: 1rem 0 0;
  font-size: clamp(1rem, 0.25vw + 0.96rem, 1.1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li + li {
  margin-top: 0.95rem;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__list a:hover {
  color: var(--orange);
  opacity: 1;
}

.site-footer__list--contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.site-footer__list--contact svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.site-footer__bottom {
  padding: 1.45rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 960px) {
  .site-footer__main-inner {
    grid-template-columns: 1fr;
  }

  .site-footer__nav,
  .site-footer__contact {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
  }

  .site-footer__brand {
    text-align: center;
  }

  .site-footer__brand-logo {
    margin: 0 auto;
  }

  .site-footer__brand-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* --- Fallback outras paginas (index.php) --- */
body:not(.is-home) {
  background: #0b0e17;
  color: #ecf0ff;
  font-family: system-ui, sans-serif;
}

.site-header:not(.site-header--home) {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 14, 23, 0.92);
  border-bottom: 1px solid #2a355a;
  backdrop-filter: blur(8px);
}

body:not(.is-home) .header-inner {
  padding: 16px 0;
}

body:not(.is-home) .nav-main a {
  color: #8ea2ff;
}

body:not(.is-home) .section {
  padding: 58px 0;
}

/* --- Sobre: posicionamento --- */
body.page-template-default:not(.is-home),
body.page:not(.is-home) {
  background: #0d0014;
  color: #ffffff;
  font-family: var(--font-display);
}

.site-header:not(.site-header--home) {
  background: rgba(13, 0, 20, 0.94);
  border-bottom: 1px solid rgba(255, 95, 31, 0.12);
}

body:not(.is-home) .nav-main a {
  color: rgba(255, 255, 255, 0.86);
}

.about-main {
  background: #0d0014;
}

.about-positioning {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem) clamp(4.5rem, 8vw, 6.5rem);
  background: #0d0014;
}

.about-positioning__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-positioning__content {
  max-width: 36rem;
}

.about-positioning__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 177, 145, 0.72);
}

.about-positioning__title {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.about-positioning__title-line {
  display: block;
  font-size: clamp(1.8rem, 1vw + 1rem, 2.4rem);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.about-positioning__title-line + .about-positioning__title-line {
  margin-top: 0.12em;
}

.about-positioning__title-accent,
.about-positioning__accent-inline {
  color: var(--orange);
}

.about-positioning__intro,
.about-positioning__thesis p,
.about-positioning__body p,
.about-positioning__closing p {
  margin: 0;
  font-size: clamp(1rem, 0.25vw + 0.96rem, 1.1rem);
  line-height: 1.8;
}

.about-positioning__intro {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.about-positioning__divider {
  width: 100%;
  height: 1px;
  margin: 1.65rem 0 1.75rem;
  background: rgba(255, 255, 255, 0.08);
}

.about-positioning__thesis,
.about-positioning__body,
.about-positioning__closing {
  display: grid;
  gap: 0.35rem;
}

.about-positioning__thesis {
  color: rgba(255, 255, 255, 0.9);
}

.about-positioning__body {
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.74);
}

.about-positioning__closing {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
}

.about-positioning__visual {
  position: relative;
  min-height: 420px;
}

.about-positioning__visual svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .about-positioning__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-positioning__content {
    max-width: none;
  }

  .about-positioning__visual {
    min-height: 0;
  }
}

/* --- Internas: serviços e contato --- */
.service-main,
.contact-main {
  background: #0d0014;
  color: #ffffff;
}

.service-system__eyebrow,
.contact-hero__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #9ca3af;
}

.service-system__title,
.contact-hero__title {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.1vw + 1rem, 2.4rem);
  line-height: 1.03;
  font-weight: 800;
  color: #ffffff;
}

.service-system__title-line {
  display: block;
}

.service-system__title-line + .service-system__title-line {
  margin-top: 0.12em;
}

.service-system__title-accent,
.contact-hero__title-accent {
  color: var(--orange);
}

.service-system__lede,
.contact-hero__lede {
  max-width: 44rem;
  margin: 1.35rem 0 0;
  font-size: clamp(1.08rem, 0.5vw + 0.98rem, 1.28rem);
  line-height: 1.8;
  color: #d1d5db;
}

.service-system {
  padding: clamp(4.5rem, 8vw, 6.5rem) clamp(1.5rem, 5vw, 3rem) clamp(4.75rem, 8vw, 6.5rem);
  background: #0d0014;
}

.service-system__inner {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.service-system__header {
  max-width: 62rem;
}

.service-system__rail {
  position: relative;
  height: 88px;
  margin-top: 2.5rem;
}

.service-system__rail-line {
  position: absolute;
  left: 3%;
  right: 6%;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 95, 31, 0.15), rgba(255, 95, 31, 0.85), rgba(255, 95, 31, 0.2));
  box-shadow: 0 0 18px rgba(255, 95, 31, 0.22);
}

.service-system__rail-node {
  position: absolute;
  top: 39px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f1f;
  box-shadow: 0 0 14px rgba(255, 95, 31, 0.35);
}

.service-system__rail-node--1 { left: 11%; }
.service-system__rail-node--2 { left: 29%; }
.service-system__rail-node--3 { left: 47%; }
.service-system__rail-node--4 { left: 65%; }
.service-system__rail-node--5 { left: 83%; }
.service-system__rail-node--6 { left: 91%; }

.service-system__rail-curve {
  position: absolute;
  right: 2%;
  top: 4px;
  width: 180px;
  height: 72px;
  border-top: 2px solid rgba(255, 95, 31, 0.8);
  border-right: 2px solid rgba(255, 95, 31, 0.8);
  border-radius: 0 100px 0 0;
  box-shadow: 0 0 18px rgba(255, 95, 31, 0.18);
  transform: skewX(10deg);
}

.service-system__rail-bars {
  position: absolute;
  right: 2.5%;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.service-system__rail-bars i {
  display: block;
  width: 14px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #ff8e4d 0%, #ff5f1f 100%);
  box-shadow: 0 0 16px rgba(255, 95, 31, 0.22);
}

.service-system__rail-bars i:nth-child(1) { height: 18px; }
.service-system__rail-bars i:nth-child(2) { height: 24px; }
.service-system__rail-bars i:nth-child(3) { height: 32px; }
.service-system__rail-bars i:nth-child(4) { height: 42px; }
.service-system__rail-bars i:nth-child(5) { height: 52px; }

.service-system__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.75rem;
}

.service-system__card {
  position: relative;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #14001f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 8px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.service-system__card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 95, 31, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 24px rgba(255, 95, 31, 0.14),
    0 10px 34px rgba(0, 0, 0, 0.22);
}

.service-system__icon {
  margin-bottom: 0.85rem;
  color: #ff5f1f;
  font-size: 1.35rem;
  line-height: 1;
}

.service-system__card h2 {
  margin: 0;
  font-size: clamp(1.25rem, 0.8vw + 1rem, 1.9rem);
  font-weight: 600;
  line-height: 1.18;
  color: #ffffff;
}

.service-system__card p {
  margin: 0.9rem 0 0;
  font-size: clamp(0.94rem, 0.22vw + 0.9rem, 1rem);
  color: #9ca3af;
  line-height: 1.75;
}

.service-system__card a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.15rem;
  color: #ff5f1f;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-system__card a:hover {
  text-decoration: underline;
  opacity: 1;
}

.service-system__footer {
  margin-top: 2.6rem;
  text-align: center;
}

.service-system__footer-text {
  margin: 0;
  font-size: clamp(1.45rem, 0.7vw + 1rem, 1.8rem);
  color: #f3f4f6;
}

.service-system__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 1.25rem;
  padding: 1rem 2rem;
  border-radius: 0.95rem;
  background: #ff5f1f;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 28px rgba(255, 95, 31, 0.16);
}

.contact-premium {
  padding: clamp(4.5rem, 8vw, 6.5rem) clamp(1.5rem, 5vw, 3rem) clamp(4.5rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 95, 31, 0.14), transparent 30%),
    linear-gradient(180deg, #0d0014 0%, #110018 100%);
}

.contact-premium__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-premium__header {
  text-align: center;
}

.contact-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.74);
}

.contact-premium__eyebrow span {
  color: var(--orange);
}

.contact-premium__eyebrow strong {
  color: var(--orange);
}

.contact-premium__title {
  margin: 1.3rem auto 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.1vw + 1rem, 2.4rem);
  line-height: 1.04;
  font-weight: 800;
  color: #ffffff;
}

.contact-premium__title-line {
  display: block;
}

.contact-premium__title-accent {
  color: var(--orange);
}

.contact-premium__lede {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: clamp(1rem, 0.35vw + 0.96rem, 1.15rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.contact-premium__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-premium__card {
  padding: clamp(1.6rem, 2vw, 2rem);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 0, 31, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 44px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.contact-premium__card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 24px rgba(255, 95, 31, 0.14),
    0 18px 52px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 95, 31, 0.16);
}

.contact-premium__card--highlight {
  border-color: rgba(255, 95, 31, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 32px rgba(255, 95, 31, 0.18),
    0 18px 54px rgba(0, 0, 0, 0.22);
}

.contact-premium__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 95, 31, 0.3);
  color: var(--orange);
  font-size: 1.35rem;
  box-shadow: 0 0 18px rgba(255, 95, 31, 0.14);
}

.contact-premium__card h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.35rem, 0.6vw + 1rem, 1.8rem);
  font-weight: 700;
  color: #ffffff;
}

.contact-premium__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  margin: 0.85rem 0 0;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.84);
}

.contact-premium__card--highlight .contact-premium__badge {
  background: rgba(255, 95, 31, 0.12);
  color: #ffb08b;
}

.contact-premium__text {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.contact-premium__button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  min-height: 48px;
  margin-top: 1.35rem;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.contact-premium__button--solid {
  border-color: rgba(255, 95, 31, 0.9);
  background: #ff5f1f;
  box-shadow: 0 10px 26px rgba(255, 95, 31, 0.18);
}

.contact-premium__benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.25rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.84);
}

.contact-premium__benefits span {
  position: relative;
  padding-left: 1.2rem;
}

.contact-premium__benefits span::before {
  content: "◉";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  .service-system__rail {
    display: none;
  }

  .service-system__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
  }

  .service-system__title {
    max-width: 18ch;
  }

  .contact-premium__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .service-system__grid {
    grid-template-columns: 1fr;
  }
}
