:root {
  --navy-950: #07182E;
  --navy-900: #0B1F3A;
  --navy-800: #1D3149;

  --amber-500: #F5B51B;
  --amber-600: #E5A713;
  --amber-700: #A77926;
  --amber-surface: #FFF9E7;
  --amber-surface-soft: #FFF7D9;

  --white: #FFFFFF;
  --surface: #F7F9FB;
  --surface-soft: #F4F6FA;

  --text: #172033;
  --muted: #667085;
  --border: #E5EAF0;

  --phone-blue: #2563EB;
  --phone-blue-hover: #1D4ED8;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #0B7A4B;
  --whatsapp-text: #07182E;
  --whatsapp-shadow: rgba(11, 122, 75, 0.24);
  --whatsapp-shadow-floating: rgba(11, 122, 75, 0.3);

  --shadow-soft: 0 12px 30px rgba(7, 24, 46, 0.08);
  --shadow-floating: 0 20px 44px rgba(7, 24, 46, 0.14);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --container-width: 1200px;
  --section-space: clamp(72px, 8vw, 112px);
  --font-size-nav-compact: 0.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  border: 0;
}

h1,
h2,
h3,
h4,
button,
.nav-link,
.eyebrow,
.btn {
  font-family: "Poppins", sans-serif;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  line-height: 1.16;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.6vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
}

p {
  color: var(--muted);
}

section[id] {
  scroll-margin-top: 94px;
}

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

:where(.hero, .page-hero, .conversion, .site-footer, .service-aside, .process-intro) :focus-visible {
  outline-color: var(--amber-500);
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--amber-500);
  color: var(--navy-950);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(229, 234, 240, 0.9);
}

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

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

.brand-mark {
  display: flex;
  width: 202px;
  height: auto;
  align-items: center;
  overflow: visible;
  line-height: 0;
}

.brand-mark img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  transform: none;
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--amber-500);
  content: "";
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--navy-950);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 1.8;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--amber-500);
  color: var(--navy-950);
  box-shadow: 0 8px 16px rgba(245, 181, 27, 0.18);
}

.btn-primary:hover {
  background: var(--amber-600);
  box-shadow: 0 10px 20px rgba(229, 167, 19, 0.24);
}

.btn-outline {
  border-color: var(--navy-800);
  background: transparent;
  color: var(--navy-900);
}

.btn-outline:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn-phone {
  background: var(--phone-blue);
  color: var(--white);
}

.btn-phone:hover {
  background: var(--phone-blue-hover);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--whatsapp-text);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover,
.btn[data-whatsapp]:hover {
  background: var(--whatsapp-hover);
  color: var(--white);
  box-shadow: 0 10px 20px var(--whatsapp-shadow);
}

.btn[data-whatsapp] {
  background: var(--whatsapp-green);
  color: var(--whatsapp-text);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
  fill: currentColor;
  stroke: none;
}

.btn-dark {
  background: var(--navy-900);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-800);
}

.btn-block {
  width: 100%;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--amber-700);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--amber-500);
}

.section {
  padding-block: var(--section-space);
  background: var(--white);
}

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

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

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

.section-heading p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1rem;
}

.section-heading.centered p {
  margin-inline: auto;
}

.section-heading::after {
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 22px;
  background: var(--amber-500);
  content: "";
}

.section-heading.centered::after {
  margin-inline: auto;
}

.hero {
  padding-block: clamp(56px, 7vw, 92px) clamp(64px, 8vw, 106px);
  background: var(--navy-950);
  color: var(--white);
}

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

.hero-copy h1 {
  color: var(--white);
  max-width: 650px;
  font-size: clamp(2rem, 4.1vw, 3.45rem);
  line-height: 1.08;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 span {
  color: var(--amber-500);
}

.text-highlight {
  color: var(--amber-600);
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-meta .icon {
  color: var(--amber-500);
}

.hero-visual {
  position: relative;
}

.media-placeholder {
  position: relative;
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--navy-800);
  text-align: center;
}

.image-frame {
  overflow: hidden;
  background: transparent;
}

.media-placeholder::before,
.media-placeholder::after {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--amber-500);
  content: "";
}

.media-placeholder::before {
  top: 18px;
  left: 18px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.media-placeholder::after {
  right: 18px;
  bottom: 18px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.hero-placeholder {
  min-height: min(520px, 52vw);
  height: min(520px, 52vw);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-floating);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.placeholder-content {
  display: grid;
  max-width: 250px;
  justify-items: center;
  gap: 14px;
  padding: 34px;
}

.placeholder-content .icon {
  width: 48px;
  height: 48px;
  color: var(--amber-600);
  stroke-width: 1.35;
}

.placeholder-content strong {
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}

.placeholder-content span {
  color: var(--muted);
  font-size: 0.8rem;
}

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

.service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  column-gap: 14px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 181, 27, 0.65);
  box-shadow: var(--shadow-floating);
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 181, 27, 0.45);
  border-radius: 50%;
  background: var(--amber-surface);
  color: var(--amber-700);
}

.service-icon .icon {
  width: 20px;
  height: 20px;
}

.service-card h3 {
  align-self: center;
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.service-card p {
  grid-column: 2;
  margin: 14px 0 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

.service-card .text-link {
  grid-column: 2;
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.78rem;
}

.services-heading {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.services-heading::after {
  display: none;
}

.services-heading > div {
  max-width: 680px;
}

.services-heading-link {
  flex: 0 0 auto;
  margin-bottom: 4px;
  white-space: nowrap;
}

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

.service-tile {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-soft);
  color: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 181, 27, 0.65);
  background: var(--navy-800);
  box-shadow: var(--shadow-floating);
}

.service-tile:focus-visible {
  outline-color: var(--amber-500);
}

.service-tile-media {
  display: block;
  height: 170px;
  flex: 0 0 170px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--navy-950);
}

.service-tile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 300ms ease;
}

.service-tile-media-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}

.service-tile:hover .service-tile-media img {
  transform: scale(1.04);
}

.service-tile-body {
  display: flex;
  min-height: 180px;
  flex: 1;
  flex-direction: column;
  padding: 20px 24px 22px;
}

.service-tile-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.service-tile-kicker {
  color: var(--amber-500);
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-tile-copy {
}

.service-tile-copy h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.06rem;
  line-height: 1.28;
}

.service-tile-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
}

.service-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-tile-link .icon {
  color: var(--amber-500);
  transition: transform 180ms ease;
}

.service-tile:hover .service-tile-link .icon {
  transform: translate(3px, -3px);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
}

.service-feature {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  color: var(--navy-900);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-feature::before {
  position: absolute;
  top: 0;
  left: 28px;
  width: 64px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--amber-500);
  content: "";
}

.service-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-floating);
}

.service-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--amber-700);
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-feature-top strong {
  display: inline-flex;
  min-width: 44px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 181, 27, 0.5);
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0;
}

.service-feature-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  border: 1px solid rgba(245, 181, 27, 0.55);
  border-radius: 50%;
  background: var(--amber-surface);
  color: var(--amber-700);
}

.service-feature-icon .icon {
  width: 30px;
  height: 30px;
}

.service-feature h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.service-feature p {
  max-width: 300px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.service-feature-link .icon,
.service-list-arrow {
  color: var(--amber-700);
  transition: transform 180ms ease;
}

.service-feature:hover .service-feature-link .icon,
.service-list-item:hover .service-list-arrow {
  transform: translate(3px, -3px);
}

.service-list {
  border-top: 1px solid var(--border);
}

.service-list-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: background 180ms ease, border-color 180ms ease;
}

.service-list-item:hover {
  border-bottom-color: var(--amber-500);
  background: var(--surface);
}

.service-list-item:hover .service-list-copy strong {
  color: var(--amber-700);
}

.service-list-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 181, 27, 0.45);
  border-radius: var(--radius-sm);
  background: var(--amber-surface);
  color: var(--amber-700);
}

.service-list-copy {
  display: grid;
  gap: 4px;
}

.service-list-copy strong {
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  line-height: 1.25;
}

.service-list-copy span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link .icon {
  color: var(--amber-700);
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}

.split-copy p:last-of-type {
  margin-bottom: 26px;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy-800);
  font-size: 0.9rem;
}

.check-list .icon {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--amber-700);
}

.split-visual {
  position: relative;
}

.split-placeholder {
  min-height: 380px;
  border-radius: var(--radius-md);
}

.split-placeholder.image-frame {
  border: 0;
  box-shadow: var(--shadow-soft);
}

.split-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
}

.process {
  background: var(--white);
}

.process-heading {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.process-heading::after {
  display: none;
}

.process-heading p {
  max-width: 620px;
  margin-inline: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 181, 27, 0.65);
  box-shadow: var(--shadow-floating);
}

.process-step-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.process-step-number {
  position: absolute;
  top: -19px;
  left: 20px;
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: 2px solid var(--amber-500);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, var(--navy-800) 0%, var(--navy-950) 78%);
  color: var(--white);
  box-shadow:
    0 8px 18px rgba(7, 24, 46, 0.2),
    0 0 0 4px var(--white),
    0 0 0 6px rgba(245, 181, 27, 0.42);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.24);
}

.process-step-number::before {
  position: absolute;
  inset: 5px;
  content: "";
  border: 1px solid rgba(245, 181, 27, 0.58);
  border-radius: 50%;
  pointer-events: none;
}

.process-step-number::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 16px;
  height: 4px;
  content: "";
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--amber-500);
  box-shadow: 0 0 0 3px var(--white);
  pointer-events: none;
}

.process-step-kicker {
  color: var(--amber-700);
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-top: 32px;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.3;
}

.process-step p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: stretch;
}

.process-intro {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-soft);
}

.process-intro-mark {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--amber-500);
  font-family: "Poppins", sans-serif;
}

.process-intro-mark strong {
  font-size: clamp(3.2rem, 6vw, 5rem);
  line-height: 0.85;
  letter-spacing: -0.06em;
}

.process-intro-mark span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-intro h3 {
  margin-top: auto;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.35rem;
}

.process-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.process-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.process-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 181, 27, 0.5);
  border-radius: 50%;
  background: var(--amber-surface-soft);
  color: var(--amber-700);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.process-item h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.process-item p {
  max-width: none;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.conversion {
  padding-block: clamp(60px, 8vw, 92px);
  background: var(--navy-950);
}

.conversion-light {
  background: var(--white);
}

.conversion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.conversion-copy h2 {
  max-width: 600px;
  color: var(--white);
}

.conversion-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.conversion-copy .text-highlight {
  color: var(--amber-500);
}

.conversion-light .conversion-copy h2 {
  color: var(--navy-900);
}

.conversion-light .conversion-copy p {
  color: var(--muted);
}

.conversion-light .eyebrow-light,
.conversion-light .conversion-copy .text-highlight {
  color: var(--amber-700);
}

.conversion-light :focus-visible {
  outline-color: var(--navy-900);
}

.conversion-visual {
  min-height: 190px;
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--navy-800);
}

.conversion-24h {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-md);
}

.conversion-24h-badge {
  display: grid;
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border: 1px solid rgba(245, 181, 27, 0.55);
  border-radius: 50%;
  background: var(--navy-950);
}

.conversion-24h-badge .icon {
  width: 34px;
  height: 34px;
  color: var(--amber-500);
  stroke-width: 1.7;
}

.conversion-24h-badge strong {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
}

.conversion-24h-copy {
  display: grid;
  gap: 5px;
}

.conversion-24h-copy strong {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
}

.conversion-24h-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-floating);
}

.conversion-light .contact-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.contact-card > p {
  margin-bottom: 20px;
  font-size: 0.88rem;
}

.contact-detail-list {
  display: grid;
  gap: 13px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.contact-detail {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.84rem;
}

.contact-detail .icon {
  color: var(--amber-700);
}

.contact-detail strong {
  display: block;
  margin-bottom: 1px;
  color: var(--navy-900);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-detail span,
.contact-detail a {
  color: var(--muted);
}

.contact-detail a:hover {
  color: var(--navy-900);
  text-decoration: underline;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

/* Home conversion: a branded plantão panel with a clear contact console. */
.conversion-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(126deg, transparent 0 68%, rgba(29, 49, 73, 0.5) 68% 100%),
    var(--navy-950);
}

.conversion-home::before {
  position: absolute;
  right: -190px;
  bottom: -250px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(245, 181, 27, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.conversion-home::after {
  position: absolute;
  top: 0;
  left: 0;
  width: min(38vw, 520px);
  height: 6px;
  border-radius: 0 0 4px 0;
  background: var(--amber-500);
  content: "";
  pointer-events: none;
}

.conversion-home .conversion-grid {
  position: relative;
  z-index: 1;
  align-items: stretch;
  gap: clamp(38px, 6vw, 78px);
}

.conversion-home .conversion-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 18px;
}

.conversion-home .conversion-copy h2 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4.2vw, 3.35rem);
  letter-spacing: -0.05em;
}

.conversion-home .conversion-copy > p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
}

.conversion-home .conversion-24h {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 150px;
  margin-top: 34px;
  gap: 20px;
  padding: 24px 26px;
  overflow: hidden;
  border: 1px solid rgba(245, 181, 27, 0.35);
  border-radius: 16px 5px 16px 5px;
  background: linear-gradient(115deg, rgba(29, 49, 73, 0.96), rgba(11, 31, 58, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 30px rgba(0, 0, 0, 0.14);
}

.conversion-home .conversion-24h::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--amber-500);
  content: "";
}

.conversion-home .conversion-24h::after {
  position: absolute;
  right: -44px;
  bottom: -62px;
  width: 176px;
  height: 176px;
  border: 1px solid rgba(245, 181, 27, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.conversion-home .conversion-24h-badge {
  width: 92px;
  height: 92px;
  flex-basis: 92px;
  gap: 4px;
  border: 2px solid var(--navy-950);
  border-radius: 16px 16px 16px 4px;
  background: var(--amber-500);
  box-shadow: 7px 7px 0 rgba(245, 181, 27, 0.22);
}

.conversion-home .conversion-24h-badge .icon {
  width: 27px;
  height: 27px;
  color: var(--navy-950);
  stroke-width: 2;
}

.conversion-home .conversion-24h-badge strong {
  color: var(--navy-950);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.conversion-home .conversion-24h-copy {
  position: relative;
  z-index: 1;
  gap: 7px;
}

.conversion-home .conversion-24h-copy strong {
  font-size: 1.22rem;
}

.conversion-home .conversion-24h-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.conversion-home .contact-card {
  position: relative;
  align-self: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 181, 27, 0.5);
  border-radius: 16px 5px 16px 5px;
  background: var(--white);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.22);
}

.conversion-home .contact-card::before {
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--amber-500) 0 34%, var(--amber-600) 34% 72%, var(--navy-900) 72% 100%);
  content: "";
}

.conversion-home .contact-card-kicker {
  display: block;
  padding: 24px 30px 0;
  color: var(--amber-700);
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.conversion-home .contact-card h3 {
  margin: 8px 30px 8px;
  font-size: 1.45rem;
}

.conversion-home .contact-card > p {
  margin: 0 30px 22px;
  font-size: 0.9rem;
}

.conversion-home .contact-detail-list {
  margin: 0 30px 24px;
  gap: 0;
  border-top: 1px solid var(--border);
}

.conversion-home .contact-detail {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.conversion-home .contact-detail .icon {
  width: 32px;
  height: 32px;
  padding: 7px;
  border: 1px solid rgba(245, 181, 27, 0.55);
  border-radius: 50%;
  background: var(--amber-surface);
  color: var(--amber-700);
}

.conversion-home .contact-detail strong {
  margin-bottom: 2px;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.conversion-home .contact-detail span,
.conversion-home .contact-detail a {
  color: var(--navy-800);
}

.conversion-home .contact-detail a {
  font-weight: 700;
}

.conversion-home .contact-actions {
  grid-template-columns: 1fr;
  padding: 0 30px 30px;
  gap: 10px;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 10px;
  margin: 0 auto;
}

.reviews-section {
  overflow: hidden;
}

.reviews-heading {
  display: grid;
  max-width: 720px;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

.reviews-heading::after {
  grid-column: auto;
  margin-top: 4px;
  margin-inline: auto;
}

.reviews-heading > div:first-child {
  display: grid;
  justify-items: center;
}

.reviews-heading p {
  margin-inline: auto;
}

.reviews-carousel-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.reviews-carousel-toolbar p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.reviews-carousel-controls {
  display: inline-flex;
  gap: 8px;
}

.reviews-carousel-button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(7, 24, 46, 0.24);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.reviews-carousel-button:hover:not(:disabled),
.reviews-carousel-button:focus-visible {
  border-color: var(--amber-600);
  background: var(--amber-500);
  color: var(--navy-950);
}

.reviews-carousel-button:disabled {
  cursor: default;
  opacity: 0.36;
}

.reviews-carousel-button .icon {
  width: 17px;
  height: 17px;
}

.reviews-viewport {
  min-width: 0;
  overflow-x: auto;
  cursor: grab;
  scrollbar-color: var(--amber-500) transparent;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}

.reviews-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.reviews-viewport::-webkit-scrollbar {
  height: 6px;
}

.reviews-viewport::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-viewport::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: var(--amber-500);
}

.reviews-summary {
  display: grid;
  min-width: 228px;
  gap: 7px;
  align-content: center;
  justify-items: center;
  padding: 0 0 4px;
  background: transparent;
  color: var(--navy-900);
  text-align: center;
}

.reviews-summary-label {
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reviews-summary-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  color: var(--amber-500);
}

.reviews-summary-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.reviews-summary-score strong {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.reviews-summary-score span {
  color: var(--muted);
  font-size: 0.82rem;
}

.reviews-summary-stars .icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.reviews-summary-count {
  color: var(--text);
  font-size: 0.84rem;
}

.google-wordmark {
  display: inline-flex;
  margin-top: 2px;
  font-family: Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.google-blue {
  color: #4285f4;
}

.google-red {
  color: #ea4335;
}

.google-yellow {
  color: #fbbc05;
}

.google-green {
  color: #34a853;
}

.reviews-track {
  display: flex;
  gap: 18px;
  padding: 2px 2px 14px;
}

.review-card {
  display: flex;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 242px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  scroll-snap-align: start;
}

.review-person {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface-soft);
  object-fit: cover;
}

.review-person h3 {
  margin-bottom: 1px;
  font-size: 0.92rem;
  line-height: 1.25;
}

.review-person span,
.review-date {
  color: var(--muted);
  font-size: 0.78rem;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--amber-500);
  margin-block: 17px 10px;
}

.review-stars .icon {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.review-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.review-card blockquote p {
  margin-bottom: 0;
}

.review-date {
  display: block;
  margin-top: 18px;
}

.reviews-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
}

.reviews-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.reviews-footer .text-link {
  flex: 0 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-item summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  cursor: pointer;
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(245, 181, 27, 0.65);
  border-radius: 50%;
  background: var(--amber-surface-soft);
  content: "+";
  color: var(--amber-700);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.faq-item[open] summary::after {
  background: var(--amber-500);
  color: var(--navy-950);
  content: "−";
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.area-section {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.area-card {
  position: relative;
  display: grid;
  width: min(100%, 960px);
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.area-card::before {
  position: absolute;
  top: 0;
  left: 28px;
  width: 64px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--amber-500);
  content: "";
}

.area-card > .icon {
  width: 30px;
  height: 30px;
  padding: 7px;
  border: 1px solid rgba(245, 181, 27, 0.5);
  border-radius: 50%;
  background: var(--amber-surface-soft);
  color: var(--amber-700);
}

.area-card h3 {
  margin-bottom: 3px;
  font-size: 1.1rem;
}

.area-card p {
  margin-bottom: 0;
  font-size: 0.87rem;
}

.site-footer {
  padding-top: 64px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .brand-mark {
  margin-bottom: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-description {
  max-width: 300px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.footer-column h3 {
  margin-bottom: 17px;
  color: var(--white);
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact li {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--amber-500);
}

.footer-contact {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact .icon {
  flex: 0 0 auto;
  color: var(--amber-500);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
  color: inherit;
}

.footer-bottom a:hover {
  color: var(--amber-500);
}

.whatsapp-float-wrap {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 45;
}

.whatsapp-float {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: var(--whatsapp-text);
  box-shadow: 0 10px 24px rgba(7, 24, 46, 0.22), 0 4px 10px rgba(37, 211, 102, 0.28);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--whatsapp-hover);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(7, 24, 46, 0.24), 0 5px 14px var(--whatsapp-shadow-floating);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--navy-900);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--white), 0 10px 24px rgba(7, 24, 46, 0.22), 0 4px 10px rgba(37, 211, 102, 0.28);
}

.whatsapp-float .whatsapp-icon {
  width: 30px;
  height: 30px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumbs a:hover {
  color: var(--navy-900);
}

.breadcrumbs span[aria-hidden="true"] {
  color: var(--amber-700);
}

.page-hero {
  padding-block: 42px 74px;
  background: var(--navy-950);
  color: var(--white);
}

body[data-page="contato"] .page-hero {
  background-image: linear-gradient(90deg, rgba(7, 24, 46, 0.98) 0%, rgba(7, 24, 46, 0.94) 42%, rgba(7, 24, 46, 0.56) 100%), url("/assets/atendimento-emergencial-alvorada-rs.jpg");
  background-position: center;
  background-size: cover;
}

.page-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.62);
}

.page-hero .breadcrumbs a:hover {
  color: var(--white);
}

.page-hero .breadcrumbs span[aria-hidden="true"] {
  color: var(--amber-500);
}

.page-hero .eyebrow {
  color: var(--amber-500);
}

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

.page-hero .section-heading p,
.service-hero-copy > p {
  color: rgba(255, 255, 255, 0.74);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(40px, 7vw, 86px);
}

.service-hero-copy h1 {
  max-width: 720px;
}

.service-hero-copy > p {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: 1.02rem;
}

.service-page-placeholder {
  min-height: 330px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-floating);
  background-position: center;
  background-size: cover;
}

.service-page-placeholder .placeholder-content {
  display: none;
}

.service-page-placeholder.media-placeholder::before,
.service-page-placeholder.media-placeholder::after {
  display: none;
}

body[data-page="24-horas"] .service-page-placeholder {
  background-image: url("/assets/atendimento-emergencial-alvorada-rs.jpg");
}

body[data-page="abertura-portas"] .service-page-placeholder {
  background-image: url("/assets/abertura-de-portas-alvorada-rs.jpg");
}

body[data-page="automotivo"] .service-page-placeholder {
  background-image: url("/assets/chaveiro-automotivo-alvorada-rs.jpg");
}

body[data-page="codificadas"] .service-page-placeholder {
  background-image: url("/assets/chaves-codificadas-alvorada-rs.jpg");
}

body[data-page="fechaduras"] .service-page-placeholder {
  background-image: url("/assets/fechaduras-digitais-alvorada-rs.jpg");
}

.service-page-image-content {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.service-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: start;
}

.service-content h2 {
  margin-bottom: 16px;
}

.service-content > .eyebrow,
.section-soft .section-heading > .eyebrow {
  display: none;
}

.service-content p {
  max-width: 680px;
}

.service-detail-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy-800);
  font-size: 0.92rem;
}

.service-detail-list .icon {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--amber-700);
}

.service-aside {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(245, 181, 27, 0.35);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-aside::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 56px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--amber-500);
  content: "";
}

.service-aside h3 {
  color: var(--white);
  font-size: 1.1rem;
}

.service-aside p {
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.service-aside .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.service-aside .btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-900);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: stretch;
}

.contact-page-grid .contact-card {
  box-shadow: none;
  border: 1px solid var(--border);
}

.map-placeholder {
  min-height: 100%;
  border-radius: var(--radius-md);
}

.map-frame {
  width: 100%;
  min-height: 100%;
  border: 0;
  border-radius: var(--radius-md);
}

.privacy-copy {
  max-width: 820px;
}

.privacy-copy h2 {
  margin-top: 38px;
  font-size: 1.6rem;
}

.privacy-copy ul {
  color: var(--muted);
}

.not-found {
  min-height: 66vh;
  display: grid;
  place-items: center;
  padding-block: 90px;
  text-align: center;
}

.not-found-inner {
  max-width: 620px;
}

.not-found-code {
  display: block;
  margin-bottom: 8px;
  color: var(--amber-600);
  font-family: "Poppins", sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .header-inner {
    gap: 18px;
  }

  .nav-list {
    gap: 13px;
  }

  .nav-link {
    font-size: var(--font-size-nav-compact);
  }

  .hero-grid,
  .service-hero-grid {
    gap: 42px;
  }
}

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

  .primary-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    padding: 14px 24px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open {
    display: block;
  }

  .nav-list {
    display: grid;
    gap: 0;
  }

  .nav-link {
    width: 100%;
    min-height: 48px;
    font-size: 0.82rem;
  }

  .nav-link::after {
    bottom: 0;
  }

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

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

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

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

  .service-feature {
    min-height: 0;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 767px) {
  .container {
    width: calc(100% - 40px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 156px;
    height: auto;
  }

  .brand-mark img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .primary-nav {
    top: 68px;
  }

  .hero {
    padding-block: 48px 76px;
  }

  .hero-grid,
  .split-grid,
  .conversion-grid,
  .service-hero-grid,
  .service-content-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 2.7rem);
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-placeholder {
    min-height: 360px;
    height: 360px;
  }

  .services-layout,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .reviews-carousel-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .reviews-summary {
    width: 100%;
    justify-items: center;
    padding-bottom: 0;
    text-align: center;
  }

  .review-card {
    flex-basis: 86%;
  }

  .reviews-footer {
    display: grid;
    gap: 12px;
    align-items: start;
  }

  .services-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .process-step {
    min-height: 0;
    padding: 22px;
  }

  .services-heading {
    display: grid;
    gap: 20px;
  }

  .services-heading-link {
    margin-bottom: 0;
  }

  .service-feature {
    min-height: 0;
    padding: 26px;
  }

  .service-feature-icon {
    margin-top: 34px;
  }

  .service-list-item {
    grid-template-columns: 44px minmax(0, 1fr) 18px;
    gap: 12px;
  }

  .service-list-icon {
    width: 44px;
    height: 44px;
  }

  .split-grid {
    gap: 40px;
  }

  .split-placeholder {
    min-height: 300px;
  }

  .split-image {
    min-height: 300px;
  }

  .process-heading {
    display: block;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-intro {
    min-height: 0;
    padding: 26px;
  }

  .process-intro-mark strong {
    font-size: 3.5rem;
  }

  .process-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .process-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
    text-align: left;
  }

  .process-number {
    width: 44px;
    height: 44px;
  }

  .process-item h3 {
    margin-top: 4px;
  }

  .process-item p {
    max-width: none;
    margin: 0;
  }

  .conversion-grid {
    gap: 30px;
  }

  .conversion-visual {
    min-height: 180px;
  }

  .conversion-24h {
    justify-content: center;
  }

  .conversion-24h-badge {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
  }

  .contact-card {
    padding: 22px;
  }

  .area-card {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 20px;
  }

  .area-card .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .page-hero {
    padding-block: 28px 58px;
  }

  .service-hero-grid {
    gap: 32px;
  }

  .service-page-placeholder {
    min-height: 280px;
  }

  .service-page-image-content {
    min-height: 280px;
  }

  .contact-page-grid .map-placeholder {
    min-height: 280px;
  }

  .whatsapp-float-wrap {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 767px) {
  .conversion-home {
    padding-block: 68px;
  }

  .conversion-home::after {
    width: 42vw;
  }

  .conversion-home .conversion-grid {
    gap: 34px;
  }

  .conversion-home .conversion-copy {
    padding-block: 0;
  }

  .conversion-home .conversion-copy h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .conversion-home .conversion-24h {
    grid-template-columns: 80px minmax(0, 1fr);
    min-height: 132px;
    margin-top: 28px;
    gap: 16px;
    padding: 20px;
  }

  .conversion-home .conversion-24h-badge {
    width: 80px;
    height: 80px;
    flex-basis: 80px;
  }

  .conversion-home .conversion-24h-badge strong {
    font-size: 1.4rem;
  }

  .conversion-home .conversion-24h-copy strong {
    font-size: 1.05rem;
  }

  .conversion-home .conversion-24h-copy span {
    font-size: 0.82rem;
  }

  .conversion-home .contact-card-kicker {
    padding: 22px 22px 0;
  }

  .conversion-home .contact-card h3 {
    margin-right: 22px;
    margin-left: 22px;
  }

  .conversion-home .contact-card > p {
    margin-right: 22px;
    margin-left: 22px;
  }

  .conversion-home .contact-detail-list {
    margin-right: 22px;
    margin-left: 22px;
  }

  .conversion-home .contact-actions {
    grid-template-columns: 1fr;
    padding: 0 22px 22px;
  }
}

@media (max-width: 900px) {
  .primary-nav {
    top: 78px;
    right: 20px;
    left: 20px;
    display: block;
    visibility: hidden;
    padding: 18px 18px 16px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--amber-500);
    border-radius: 0 0 16px 16px;
    background: var(--white);
    box-shadow: 0 22px 46px rgba(7, 24, 46, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top right;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .primary-nav::before {
    display: block;
    margin: 0 8px 10px;
    content: "Navegação rápida";
    color: var(--amber-700);
    font-family: "Poppins", sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  .nav-list {
    display: grid;
    gap: 3px;
  }

  .nav-list li {
    border-bottom: 1px solid var(--border);
  }

  .nav-list li:last-child {
    border-bottom: 0;
  }

  .nav-link {
    min-height: 46px;
    padding: 0 12px;
    border-radius: 8px;
    color: var(--navy-800);
    font-size: 0.82rem;
    transition: background 160ms ease, color 160ms ease, padding 160ms ease;
  }

  .nav-link::after {
    right: 12px;
    bottom: 50%;
    left: auto;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    transform: translateY(50%) scale(0);
    transform-origin: center;
    transition: transform 160ms ease;
  }

  .nav-link:hover,
  .nav-link[aria-current="page"] {
    padding-left: 16px;
    background: var(--surface);
    color: var(--navy-950);
  }

  .nav-link:hover::after,
  .nav-link[aria-current="page"]::after {
    transform: translateY(50%) scale(1);
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: var(--amber-500);
    background: var(--amber-surface);
    color: var(--navy-950);
  }
}

@media (max-width: 767px) {
  .primary-nav {
    top: 68px;
    right: 14px;
    left: 14px;
    padding: 14px 12px 12px;
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .primary-nav::before {
    margin-bottom: 8px;
  }

  .primary-nav .nav-list {
    gap: 2px;
  }

  .primary-nav .nav-link {
    min-height: 44px;
  }
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::after {
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(245, 181, 27, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.about-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(7, 24, 46, 0.12);
  border-radius: 16px 5px 16px 5px;
  background: var(--navy-950);
  box-shadow: var(--shadow-floating);
}

.about-visual::before {
  position: absolute;
  top: 0;
  left: 28px;
  z-index: 1;
  width: 72px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--amber-500);
  content: "";
}

.about-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
}

.about-location-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(245, 181, 27, 0.62);
  border-radius: 999px;
  background: rgba(7, 24, 46, 0.9);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.about-location-badge .icon {
  width: 15px;
  height: 15px;
  color: var(--amber-500);
}

.about-copy {
  max-width: 660px;
}

.about-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.about-copy p {
  max-width: 630px;
}

.about-copy p + p {
  margin-top: -4px;
}

body.menu-open .whatsapp-float-wrap {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.whatsapp-float-wrap {
  transition: opacity 180ms ease, transform 180ms ease;
}

@media (max-width: 900px) {
  .about-grid {
    gap: 42px;
  }
}

@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-visual,
  .about-image {
    min-height: 280px;
  }

  .about-location-badge {
    right: 14px;
    bottom: 14px;
  }

  .about-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

}

/* Rich service-page editorial blocks */
.service-situations-section,
.service-context-section {
  background: var(--surface);
}

.service-guidance-section,
.service-faq-section {
  background: var(--white);
}

.service-situations-section {
  position: relative;
  overflow: hidden;
}

.service-situations-section::after {
  position: absolute;
  right: -150px;
  bottom: -210px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(245, 181, 27, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.service-situations-section .container,
.service-context-section .container,
.service-faq-section .container {
  position: relative;
  z-index: 1;
}

.service-situations-section .section-heading {
  max-width: 760px;
}

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

.service-info-card {
  position: relative;
  min-height: 248px;
  padding: 28px 24px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-info-card::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 54px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--amber-500);
  content: "";
}

.service-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 181, 27, 0.6);
  box-shadow: var(--shadow-floating);
}

.service-info-kicker {
  display: block;
  margin-bottom: 38px;
  color: var(--amber-700);
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-info-card h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
}

.service-info-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.58;
}

.service-guidance-section {
  position: relative;
}

.service-guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
  gap: clamp(38px, 7vw, 88px);
}

.service-guidance-grid > div > p {
  max-width: 680px;
}

.service-numbered-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: service-guidance;
}

.service-numbered-list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid var(--border);
}

.service-numbered-list li::before {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 181, 27, 0.72);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--amber-500);
  content: counter(service-guidance, decimal-leading-zero);
  counter-increment: service-guidance;
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
}

.service-numbered-list strong,
.service-numbered-list span {
  display: block;
}

.service-numbered-list strong {
  margin-bottom: 3px;
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
}

.service-numbered-list span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.service-guidance-note {
  position: relative;
  padding: 30px 28px 28px;
  border: 1px solid rgba(245, 181, 27, 0.38);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-soft);
  color: var(--white);
}

.service-guidance-note::before {
  position: absolute;
  top: 0;
  left: 28px;
  width: 58px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--amber-500);
  content: "";
}

.service-guidance-note h3 {
  max-width: 340px;
  color: var(--white);
}

.service-guidance-note p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.58;
}

.text-link-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link-light .icon {
  color: var(--amber-500);
}

.service-context-section {
  position: relative;
  overflow: hidden;
}

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

.service-context-item {
  padding-top: 18px;
  border-top: 2px solid var(--amber-500);
}

.service-context-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.service-context-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-faq-section .section-heading {
  max-width: 720px;
}

.service-faq-list {
  max-width: 840px;
  margin-inline: auto;
}

.service-faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.service-faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  cursor: pointer;
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  list-style: none;
}

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

.service-faq-list summary::after {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(245, 181, 27, 0.65);
  border-radius: 50%;
  background: var(--amber-surface-soft);
  content: "+";
  color: var(--amber-700);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
}

.service-faq-list details[open] summary::after {
  background: var(--amber-500);
  color: var(--navy-950);
  content: "−";
}

.service-faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .service-info-grid,
  .service-context-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-info-card:last-child,
  .service-context-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .service-info-grid,
  .service-context-grid,
  .service-guidance-grid {
    grid-template-columns: 1fr;
  }

  .service-info-card:last-child,
  .service-context-item:last-child {
    grid-column: auto;
  }

  .service-info-card {
    min-height: 0;
    padding: 25px 21px 23px;
  }

  .service-info-kicker {
    margin-bottom: 28px;
  }

  .service-guidance-grid {
    gap: 34px;
  }

  .service-guidance-note {
    padding: 26px 22px 24px;
  }

  .service-guidance-note::before {
    left: 22px;
  }

  .service-context-grid {
    gap: 22px;
  }
}

/* Local service context redesign */
.service-local-section {
  position: relative;
  overflow: hidden;
}

.service-local-section::after {
  position: absolute;
  bottom: -230px;
  left: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(245, 181, 27, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.service-context-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
}

.service-context-intro {
  max-width: 510px;
}

.service-context-intro h2 {
  margin-bottom: 18px;
}

.service-context-intro p {
  max-width: 470px;
  margin-bottom: 24px;
}

.service-context-intro .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.service-context-intro .text-link .icon {
  color: var(--amber-700);
}

.service-context-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(245, 181, 27, 0.42);
  border-radius: 16px 5px 16px 5px;
  background: var(--navy-900);
  box-shadow: var(--shadow-floating);
  color: var(--white);
}

.service-context-panel::after {
  position: absolute;
  right: -92px;
  bottom: -118px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(245, 181, 27, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.service-context-panel-top,
.service-context-panel-copy,
.service-context-grid,
.service-context-note {
  position: relative;
  z-index: 1;
}

.service-context-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.service-context-label,
.service-context-status {
  font-family: "Poppins", sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-context-label {
  color: var(--amber-500);
}

.service-context-status {
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.08em;
}

.service-context-panel-copy {
  padding-top: 22px;
}

.service-context-panel-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}

.service-context-panel-copy p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.service-local-section .service-context-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.service-local-section .service-context-item {
  display: block;
  min-height: 180px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.service-local-section .service-context-item::before {
  display: none;
}

.service-context-index {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(245, 181, 27, 0.72);
  border-radius: 50%;
  color: var(--amber-500);
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.service-local-section .service-context-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  line-height: 1.3;
}

.service-local-section .service-context-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.5;
}

.service-context-note {
  margin: 22px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.5;
}

.service-context-note span {
  color: var(--amber-500);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

@media (max-width: 900px) {
  .service-context-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-context-intro {
    max-width: 700px;
  }
}

@media (max-width: 767px) {
  .service-context-panel {
    padding: 24px 20px 20px;
    border-radius: 14px 4px 14px 4px;
  }

  .service-context-panel-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .service-local-section .service-context-grid {
    grid-template-columns: 1fr;
  }

  .service-local-section .service-context-item {
    min-height: 0;
  }

  .service-context-index {
    margin-bottom: 18px;
  }
}

/* Automotive brand carousel */
.service-brands-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
}

.service-brands-section::before,
.service-brands-section::after {
  position: absolute;
  border: 1px solid rgba(245, 181, 27, 0.16);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.service-brands-section::before {
  top: -220px;
  right: -170px;
  width: 410px;
  height: 410px;
}

.service-brands-section::after {
  bottom: -280px;
  left: -190px;
  width: 450px;
  height: 450px;
}

.service-brands-section .container {
  position: relative;
  z-index: 1;
}

.brands-heading {
  max-width: 760px;
}

.service-brands-section .brands-heading h2 {
  color: var(--white);
}

.service-brands-section .brands-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.service-brands-section .brands-heading .eyebrow {
  color: var(--amber-500);
}

.brands-carousel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.brands-viewport {
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}

.brands-viewport::-webkit-scrollbar {
  display: none;
}

.brands-track {
  display: flex;
  gap: 14px;
  padding: 6px 3px 16px;
}

.vehicle-brand-card {
  position: relative;
  display: flex;
  flex: 0 0 calc((100% - 42px) / 4);
  min-height: 184px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px 20px 19px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.vehicle-brand-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--navy-900);
  content: "";
}

.vehicle-brand-card:hover {
  border-color: rgba(245, 181, 27, 0.65);
  box-shadow: var(--shadow-floating);
  transform: translateY(-3px);
}

.vehicle-brand-mark {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 1.23rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}

.vehicle-brand-logo {
  display: block;
  width: auto;
  max-width: 145px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.vehicle-brand-card div {
  display: grid;
  gap: 4px;
}

.vehicle-brand-card strong {
  color: var(--navy-900);
  font-family: "Poppins", sans-serif;
  font-size: 0.93rem;
}

.vehicle-brand-card div span {
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-chevrolet::before { background: #1a68a4; }
.brand-chevrolet .vehicle-brand-mark { color: #1a68a4; }
.brand-fiat::before { background: #b48c42; }
.brand-fiat .vehicle-brand-mark { color: #806226; letter-spacing: 0.14em; }
.brand-ford::before { background: #2d5d9b; }
.brand-ford .vehicle-brand-mark { color: #2d5d9b; font-style: italic; }
.brand-volkswagen::before { background: #53718b; }
.brand-volkswagen .vehicle-brand-mark { color: #53718b; font-size: 1.75rem; letter-spacing: 0; }
.brand-toyota::before { background: #a8222d; }
.brand-toyota .vehicle-brand-mark { color: #a8222d; }
.brand-hyundai::before { background: #315f8e; }
.brand-hyundai .vehicle-brand-mark { color: #315f8e; font-size: 1.1rem; }
.brand-honda::before { background: #b3212d; }
.brand-honda .vehicle-brand-mark { color: #b3212d; }
.brand-renault::before { background: #f2bb15; }
.brand-renault .vehicle-brand-mark { color: #9d7410; }
.brand-nissan::before { background: #8a2635; }
.brand-nissan .vehicle-brand-mark { color: #8a2635; }
.brand-jeep::before { background: #526a39; }
.brand-jeep .vehicle-brand-mark { color: #526a39; }

.brands-carousel-button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.brands-carousel-button:hover:not(:disabled) {
  border-color: var(--amber-500);
  background: var(--amber-500);
  color: var(--navy-950);
  color: var(--amber-500);
}

.brands-carousel-button:disabled {
  cursor: default;
  opacity: 0.34;
}

.brands-carousel-button .icon {
  width: 17px;
  height: 17px;
}

.brands-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.77rem;
}

.brands-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brands-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.brands-dots button.is-active {
  background: var(--amber-500);
  transform: scale(1.45);
}

@media (max-width: 1000px) {
  .vehicle-brand-card {
    flex-basis: calc((100% - 28px) / 3);
  }
}

@media (max-width: 767px) {
  .brands-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
    margin-top: 28px;
  }

  .brands-track {
    gap: 12px;
  }

  .vehicle-brand-card {
    flex-basis: 86%;
    min-height: 166px;
    padding: 21px 18px 17px;
  }

  .brands-carousel-button {
    width: 34px;
    height: 34px;
  }

  .brands-carousel-button .icon {
    width: 15px;
    height: 15px;
  }

  .brands-carousel-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 2px;
  }
}

/* Brand card refinement */
.vehicle-brand-card {
  border-radius: 18px 6px 18px 6px;
  border-color: rgba(10, 35, 66, 0.14);
  box-shadow: 0 16px 30px rgba(3, 19, 39, 0.2);
}

.vehicle-brand-card::before {
  display: none;
}

.vehicle-brand-mark {
  justify-content: center;
  padding: 8px 0 10px;
}

.vehicle-brand-card div {
  width: 100%;
  justify-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(10, 35, 66, 0.1);
}

.vehicle-brand-card {
  align-items: center;
  text-align: center;
}

@media (max-width: 767px) {
  .vehicle-brand-card {
    flex-basis: 72%;
  }
}

/* About page gallery: preserve the vertical workshop photos while keeping the card rhythm. */
.about-gallery-grid .service-tile-media {
  height: 230px;
  flex-basis: 230px;
  background: #eef1f3;
}

.about-gallery-grid .service-tile-media img {
  object-fit: contain;
  background: #eef1f3;
}

.about-social-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 26px;
}

@media (max-width: 767px) {
  .about-gallery-grid .service-tile-media {
    height: 250px;
    flex-basis: 250px;
  }

  .about-social-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

/* The About hero uses the first fold for the story and the contact actions. */
.about-hero-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 820px;
  margin-inline: auto;
}

.about-hero-single .service-hero-copy > p {
  max-width: 720px;
}

.about-hero-single .hero-actions {
  max-width: 560px;
}
