@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: optional;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: optional;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-600-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: optional;
}

:root {
  --ink: #172033;
  --navy: #080f2b;
  --blue: #253b72;
  --blue-bright: #164b9b;
  --red: #c80d22;
  --red-dark: #8b0714;
  --red-soft: #fff4f5;
  --yellow: #ffc400;
  --paper: #ffffff;
  --mist: #f5f8fb;
  --line: #dce5ed;
  --muted: #596579;
  --green: #08753d;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 30px rgb(20 42 71 / 8%);
  --shadow: 0 22px 58px rgb(20 42 71 / 15%);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--blue-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

::selection {
  color: var(--paper);
  background: var(--red);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75em;
  color: var(--navy);
  font-family: "Space Grotesk", "Poppins", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p,
ul,
ol {
  margin: 0 0 1.25rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  color: var(--paper);
  background: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 600;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar__text--mobile {
  display: none;
}

.topbar a {
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  color: var(--ink);
  background: rgb(255 255 255 / 95%);
  border-bottom: 1px solid rgb(220 229 237 / 92%);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 245px;
  height: auto;
}

.main-nav {
  margin-left: auto;
}

.main-nav__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.main-nav a,
.nav-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  color: var(--navy);
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--red);
  background: var(--red-soft);
}

.main-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 18px;
  background: var(--red);
  color: var(--paper);
}

.main-nav .nav-cta:hover {
  background: #e30a21;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.breadcrumb {
  color: #667085;
  background: #f7f8fb;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}

.breadcrumb ol {
  min-height: 48px;
  margin: 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  color: #98a2b3;
  content: "/";
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.eyebrow {
  margin-bottom: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
  content: "";
}

.hero {
  overflow: hidden;
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  color: var(--ink);
  background: #f8fbfd;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: -3%;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 91%) 0%, rgb(250 253 255 / 82%) 43%, rgb(238 248 251 / 58%) 100%),
    url("../images/fundo-dados-ronin-impacto.webp") center / cover no-repeat;
  content: "";
  animation: ronin-background-drift 22s ease-in-out infinite alternate;
}

.hero--impact::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgb(157 221 224 / 20%), transparent 31%),
    radial-gradient(circle at 8% 92%, rgb(200 13 34 / 6%), transparent 28%);
  content: "";
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: 62px;
}

.hero__content {
  max-width: 730px;
  padding: 72px 0 76px;
}

.hero .eyebrow {
  color: var(--red);
}

.cta-band h2,
.dark-section h2,
.dark-section h3 {
  color: var(--paper);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.hero h1 span {
  color: var(--red);
}

.hero__lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.26rem);
}

.hero__media {
  position: relative;
  align-self: center;
  padding: 24px 0 28px;
}

.hero__media-visual {
  position: relative;
}

.hero__media-visual::before {
  position: absolute;
  inset: 42px -24px -24px 64px;
  background: linear-gradient(145deg, rgb(200 13 34 / 10%), rgb(83 181 187 / 18%));
  border-radius: 42% 16% 28% 18%;
  content: "";
}

.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 63% center;
  border: 8px solid var(--paper);
  border-radius: 34px;
  box-shadow: 0 30px 70px rgb(20 42 71 / 18%);
}

.hero__media-note {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: -18px;
  max-width: 310px;
  padding: 16px 20px;
  display: grid;
  gap: 2px;
  color: var(--navy);
  background: rgb(255 255 255 / 94%);
  border: 1px solid rgb(220 229 237 / 90%);
  border-left: 5px solid var(--red);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.hero__media-note strong {
  font-family: "Space Grotesk", "Poppins", sans-serif;
  font-size: 1rem;
}

.hero__media-note span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero__actions,
.page-hero__actions,
.cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  color: var(--paper);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgb(198 4 24 / 28%);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  color: var(--paper);
  background: #e20b22;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgb(198 4 24 / 34%);
}

.btn--ghost {
  color: var(--navy);
  background: var(--paper);
  border-color: #aab8c8;
  box-shadow: none;
}

.btn--ghost:hover {
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

.btn--outline {
  color: var(--blue);
  background: transparent;
  border-color: var(--blue);
  box-shadow: none;
}

.btn--outline:hover {
  color: var(--paper);
  background: var(--blue);
}

.hero__trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__trust--media {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  justify-content: center;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #344054;
  background: rgb(255 255 255 / 78%);
  border: 1px solid #d7e1e9;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.trust-chip::before {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.page-hero {
  overflow: hidden;
  position: relative;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 93%) 0%, rgb(248 252 254 / 84%) 48%, rgb(234 246 249 / 66%) 100%),
    url("../images/fundo-dados-ronin-impacto.webp") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero--compact {
  padding: 84px 0 90px;
}

.page-hero--not-found {
  min-height: 480px;
  display: grid;
  align-items: center;
}

.page-hero__grid {
  min-height: 520px;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 68px;
}

.page-hero__copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero__copy > :last-child {
  margin-bottom: 0;
}

.page-hero__media {
  position: relative;
}

.page-hero__media::before {
  position: absolute;
  inset: -14px 18px 18px -14px;
  border: 2px solid rgb(200 13 34 / 30%);
  border-radius: var(--radius-lg);
  content: "";
}

.page-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  color: var(--navy);
}

.section {
  padding: 96px 0;
}

.section--sm {
  padding: 68px 0;
}

.section--mist {
  background: var(--mist);
}

.section--data-backdrop {
  overflow: hidden;
  position: relative;
  background: #fff;
  isolation: isolate;
}

.section--data-backdrop::before {
  position: absolute;
  z-index: 0;
  inset: -8%;
  background: url("../images/fundo-dados-ronin-impacto.webp") center / cover no-repeat;
  content: "";
  opacity: 0.24;
  animation: ronin-background-drift 28s ease-in-out infinite alternate;
}

.section--data-backdrop::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 74%), rgb(255 255 255 / 60%) 52%, rgb(255 255 255 / 82%));
  content: "";
  pointer-events: none;
}

.section--data-backdrop > .container,
.section--data-backdrop > .narrow {
  position: relative;
  z-index: 1;
}

.section--data-backdrop-reverse::before {
  animation-direction: alternate-reverse;
}

@keyframes ronin-background-drift {
  0% {
    transform: translate3d(-1.5%, 0, 0) scale(1.035);
  }

  100% {
    transform: translate3d(1.5%, -1%, 0) scale(1.075);
  }
}

.section--red-soft {
  background: var(--red-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.grid-2,
.content-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.feature-card,
.contact-card,
.proof-card {
  overflow: hidden;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-card {
  display: flex;
  flex-direction: column;
  border-color: #e2eaf0;
  border-radius: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-bottom: 1px solid #e6edf2;
}

.service-card__body {
  flex: 1;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.service-card__label {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
}

.service-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.service-card__link::after {
  content: "→";
  transition: transform 180ms ease;
}

.service-card__link:hover::after {
  transform: translateX(4px);
}

.service-cta {
  margin-top: 46px;
  display: flex;
  justify-content: center;
}

.btn--services {
  min-width: 260px;
  min-height: 58px;
  padding-inline: 34px;
  font-size: 1.02rem;
  box-shadow: 0 16px 36px rgb(200 13 34 / 28%);
}

.feature-card,
.proof-card {
  padding: 28px;
}

.feature-card::before {
  width: 42px;
  height: 5px;
  margin-bottom: 24px;
  display: block;
  background: var(--red);
  border-radius: 99px;
  content: "";
}

.feature-card p,
.proof-card p {
  color: var(--muted);
}

.feature-card p:last-child,
.proof-card p:last-child {
  margin-bottom: 0;
}

.content-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  content: "✓";
}

.plain-list li::before {
  position: absolute;
  top: 0.7em;
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  content: "";
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.step {
  position: relative;
  padding: 30px 24px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  counter-increment: step;
}

.step::before {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  content: counter(step, decimal-leading-zero);
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.stat-strip {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-item {
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--line);
}

.stat-item__mark {
  width: 54px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--red);
  border-radius: 14px;
  font-weight: 800;
}

.stat-item strong {
  display: block;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.stat-item span:not(.stat-item__mark) {
  color: var(--muted);
  font-size: 0.83rem;
}

.dark-section {
  padding: 104px 0 112px;
  color: #dce2f1;
  background:
    linear-gradient(125deg, rgb(0 7 36 / 97%), rgb(31 40 115 / 94%)),
    url("../images/fundo-circuitos-cinza.webp") center / cover;
}

.dark-section .eyebrow {
  color: #ff6b7b;
}

.dark-section .section-heading {
  margin-bottom: 48px;
}

.dark-section--home {
  overflow: hidden;
  position: relative;
  padding: 112px 0 120px;
}

.dark-section--home::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 44%, rgb(104 128 255 / 18%), transparent 34%),
    linear-gradient(120deg, transparent 5%, rgb(255 255 255 / 3%) 60%, transparent 100%);
  content: "";
  pointer-events: none;
}

.dark-section--home .container {
  position: relative;
  z-index: 1;
}

.dark-section--home .feature-card {
  padding: 42px;
  background: rgb(255 255 255 / 9%);
  border-color: rgb(255 255 255 / 18%);
  border-radius: 24px;
  backdrop-filter: blur(8px);
}

.dark-section--home .feature-card h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
}

.dark-section--home .check-list {
  margin-bottom: 0;
}

.dark-section p {
  color: #cbd3e5;
}

.dark-section .feature-card {
  background: rgb(255 255 255 / 7%);
  border-color: rgb(255 255 255 / 13%);
  box-shadow: none;
}

.dark-section .feature-card p {
  color: #d4dbeb;
}

.dark-section .step p {
  color: var(--muted);
}

.dark-section .feature-card h3 {
  color: var(--paper);
}

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

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 4px 14px rgb(16 24 40 / 5%);
}

.faq-list summary {
  position: relative;
  padding: 19px 54px 19px 20px;
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--red);
  font-size: 1.35rem;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.section--map {
  background: linear-gradient(145deg, #f7fafc, #eef6f7);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: 54px;
}

.map-copy address {
  margin: 22px 0 26px;
  color: var(--navy);
  font-style: normal;
  font-weight: 700;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-frame {
  overflow: hidden;
  min-height: 460px;
  background: var(--paper);
  border: 8px solid var(--paper);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 460px;
  display: block;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial {
  margin: 0;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.testimonial::before {
  display: block;
  color: #ffb800;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  content: "★★★★★";
}

.testimonial p {
  margin: 16px 0 18px;
  color: #3c4454;
}

.testimonial footer {
  color: var(--navy);
  font-weight: 700;
}

.testimonial-profile-link {
  margin-top: 52px;
  display: flex;
  justify-content: center;
}

.google-profile-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid #ccd8e2;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgb(20 42 71 / 10%);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.google-profile-btn:hover {
  color: var(--navy);
  border-color: rgb(200 13 34 / 40%);
  box-shadow: 0 16px 36px rgb(20 42 71 / 16%);
  transform: translateY(-2px);
}

.google-profile-btn__mark {
  color: #f4b400;
  font-size: 1.08rem;
}

.notice {
  padding: 20px 22px;
  color: #503c00;
  background: #fff8d8;
  border: 1px solid #f1d66a;
  border-radius: 13px;
}

.notice strong {
  color: #332600;
}

.notice--process {
  margin-top: 36px;
}

.service-sidebar > article > h2:not(:first-of-type) {
  margin-top: 44px;
}

.service-sidebar > article > .check-list {
  margin-top: 24px;
}

.service-sidebar > article > .notice {
  margin-top: 36px;
}

.content-split > div > .check-list {
  margin-top: 24px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(105deg, rgb(92 0 7 / 88%), rgb(198 4 24 / 88%)),
    url("../images/fundo-circuitos-vermelho.webp") center / cover;
}

.cta-band__inner {
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: #fff0f0;
}

.cta-band .btn {
  color: var(--navy);
  background: var(--paper);
  border-color: var(--paper);
  box-shadow: none;
}

.cta-band .btn:hover {
  color: var(--navy);
  background: #fff6d4;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-card {
  padding: 28px;
}

.contact-card__label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card h2 {
  font-size: clamp(1rem, 1.4vw, 1.75rem);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.contact-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.contact-card address {
  color: var(--muted);
  font-style: normal;
}

.service-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 60px;
}

.sidebar-card {
  position: sticky;
  top: 116px;
  padding: 26px;
  color: var(--paper);
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sidebar-card h2,
.sidebar-card h3 {
  color: var(--paper);
}

.sidebar-card p {
  color: #d3daeb;
}

.sidebar-card .plain-list {
  margin: 20px 0 28px;
}

.sidebar-card .btn {
  width: 100%;
}

.sidebar-card__meta {
  margin-top: 20px;
  padding-top: 18px;
  display: grid;
  gap: 3px;
  border-top: 1px solid rgb(255 255 255 / 16%);
  color: #d3daeb;
  font-size: 0.86rem;
}

.sidebar-card__meta strong:not(:first-child) {
  margin-top: 12px;
}

.section--legal {
  background: var(--mist);
}

.legal-content {
  padding: clamp(30px, 5vw, 62px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.legal-content > p:first-child {
  color: #39465a;
  font-size: 1.06rem;
}

.legal-content h2 {
  margin-top: 2.2rem;
  font-size: 1.55rem;
}

.legal-content h2:not(:first-of-type) {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-content h3 {
  margin-top: 1.8rem;
  font-size: 1.18rem;
}

.site-footer {
  color: #c8cfdf;
  background: #050713;
}

.footer__top {
  padding: 70px 0 46px;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.95fr 1fr;
  gap: 42px;
}

.footer__brand img {
  width: 270px;
  margin-bottom: 18px;
}

.footer__brand p {
  max-width: 370px;
}

.footer__title {
  margin-bottom: 16px;
  color: var(--paper);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
}

.footer__links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.footer__links a,
.footer__contact a {
  color: #c8cfdf;
  text-decoration: none;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--paper);
}

.footer__contact address {
  font-style: normal;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 12px;
  color: var(--paper);
  background: rgb(255 255 255 / 9%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 13px;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-link__icon {
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.social-link--facebook .social-link__icon {
  -webkit-mask-image: url("../icons/social-facebook.svg");
  mask-image: url("../icons/social-facebook.svg");
}

.social-link--x .social-link__icon {
  -webkit-mask-image: url("../icons/social-x.svg");
  mask-image: url("../icons/social-x.svg");
}

.social-link--instagram .social-link__icon {
  -webkit-mask-image: url("../icons/social-instagram.svg");
  mask-image: url("../icons/social-instagram.svg");
}

.social-link--youtube .social-link__icon {
  width: 23px;
  height: 23px;
  -webkit-mask-image: url("../icons/social-youtube.svg");
  mask-image: url("../icons/social-youtube.svg");
}

.social-link--linkedin .social-link__icon {
  -webkit-mask-image: url("../icons/social-linkedin.svg");
  mask-image: url("../icons/social-linkedin.svg");
}

.social-links a:hover {
  color: var(--paper);
  border-color: transparent;
  box-shadow: 0 10px 24px rgb(0 0 0 / 24%);
  transform: translateY(-3px);
}

.social-link--facebook:hover {
  background: #1877f2;
}

.social-link--x:hover {
  background: #151515;
}

.social-link--instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d 55%, #fcb045);
}

.social-link--youtube:hover {
  background: #ff0000;
}

.social-link--linkedin:hover {
  background: #0a66c2;
}

.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.82rem;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  color: #dfe5f1;
  text-decoration: none;
}

.footer__bottom a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer__developer {
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  z-index: 800;
  right: 20px;
  bottom: 20px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
  border: 2px solid rgb(255 255 255 / 82%);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 38px rgb(7 112 59 / 36%);
  isolation: isolate;
  animation: whatsapp-breathe 2.5s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.whatsapp-float::before {
  position: absolute;
  z-index: -1;
  inset: -2px;
  border: 2px solid rgb(18 167 86 / 70%);
  border-radius: inherit;
  content: "";
  animation: whatsapp-ring 2.4s ease-out infinite;
}

.whatsapp-float:hover {
  color: var(--paper);
  background: #066735;
}

.whatsapp-float__mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--paper);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

@keyframes whatsapp-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 14px 38px rgb(7 112 59 / 36%);
  }

  50% {
    transform: translateY(-6px) scale(1.045);
    box-shadow: 0 20px 48px rgb(7 112 59 / 52%), 0 0 0 7px rgb(18 167 86 / 12%);
  }
}

@keyframes whatsapp-ring {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.16, 1.4);
  }
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-links a {
  padding: 9px 12px;
  color: var(--blue);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.related-links a:hover {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

@media (max-width: 1060px) {
  .brand img {
    width: 205px;
  }

  .main-nav a {
    padding-inline: 9px;
    font-size: 0.82rem;
  }

  .service-grid,
  .grid-3,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .topbar__inner {
    justify-content: space-between;
    gap: 8px;
  }

  .topbar__text--desktop {
    display: none;
  }

  .topbar__text--mobile {
    display: inline;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    visibility: hidden;
    position: fixed;
    z-index: 999;
    inset: 120px 0 auto;
    max-height: calc(100vh - 120px);
    padding: 14px 20px 24px;
    overflow-y: auto;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 35px rgb(20 42 71 / 14%);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav__list {
    align-items: stretch;
    flex-direction: column;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .main-nav .nav-cta {
    margin: 8px 0 0;
    justify-content: center;
  }

  .hero__grid,
  .page-hero__grid,
  .grid-2,
  .content-split,
  .service-sidebar,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 0;
  }

  .hero__content {
    padding-bottom: 38px;
  }

  .hero__media {
    width: min(100%, 680px);
    margin-inline: auto;
    padding: 0 0 42px;
  }

  .hero__media-visual::before {
    inset: 24px 0 -18px 12%;
  }

  .hero__media img {
    aspect-ratio: 8 / 5;
    border-radius: 30px;
    object-position: 60% center;
  }

  .page-hero__grid {
    gap: 44px;
  }

  .page-hero__media {
    width: min(100%, 660px);
  }

  .service-sidebar {
    gap: 36px;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

  .cta-band__inner {
    gap: 20px;
  }

  .cta-actions {
    margin-top: 0;
  }

  .stat-strip {
    margin-top: 0;
    padding-top: 22px;
  }

  .stat-strip__grid {
    grid-template-columns: 1fr;
  }

  .stat-item + .stat-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar {
    font-size: 0.7rem;
  }

  .topbar__inner {
    min-height: 38px;
  }

  .header__inner {
    min-height: 72px;
  }

  .brand img {
    width: 180px;
  }

  .main-nav {
    inset-block-start: 108px;
    max-height: calc(100vh - 108px);
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      radial-gradient(circle at 90% 34%, rgb(157 221 224 / 28%), transparent 34%),
      linear-gradient(145deg, #ffffff, #f2f8fa);
  }

  .hero__content {
    padding: 62px 0 34px;
  }

  .hero__media img {
    border-width: 5px;
    border-radius: 24px;
  }

  .hero__media-note {
    right: 12px;
    bottom: -18px;
    left: 12px;
    max-width: none;
  }

  .hero__trust--media {
    margin-top: 38px;
  }

  .dark-section--home {
    padding: 78px 0 84px;
  }

  .dark-section--home .feature-card {
    padding: 28px;
  }

  .map-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
    height: 390px;
  }

  .hero__actions,
  .page-hero__actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .page-hero__grid {
    min-height: auto;
    padding: 54px 0 68px;
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero--compact {
    padding: 58px 0 66px;
  }

  .page-hero--not-found {
    min-height: 380px;
  }

  .dark-section:not(.dark-section--home) {
    padding: 76px 0 82px;
  }

  .page-hero__media::before {
    inset: -8px 10px 10px -8px;
  }

  .section {
    padding: 72px 0;
  }

  .section--sm {
    padding: 52px 0;
  }

  .legal-content {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .service-grid,
  .grid-3,
  .grid-4,
  .steps,
  .testimonial-grid,
  .contact-grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .content-split {
    gap: 36px;
  }

  .footer__top {
    gap: 32px;
  }

  .footer__bottom-inner {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding: 10px 14px;
    min-height: 52px;
    font-size: 0.92rem;
  }
}

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

@media print {
  .topbar,
  .site-header,
  .whatsapp-float,
  .cta-band,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    font-family: Arial, sans-serif;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}
