/*
Theme Name: iSoluções Pro
Theme URI: https://www.isolucoes.seg.br/
Author: Codex
Description: Tema WordPress local para iSoluções, com foco em rastreamento veicular, gestão de frotas e zeladoria patrimonial.
Version: 1.0.0
Text Domain: isolucoes-pro
*/

:root {
  --navy-950: #06131f;
  --navy-900: #071a2a;
  --navy-850: #082237;
  --navy-800: #0a2a43;
  --blue-600: #00a7e8;
  --blue-500: #18b8f2;
  --blue-100: #e7f7ff;
  --lime-500: #c9e950;
  --green-500: #76c942;
  --ink: #0d2030;
  --muted: #536171;
  --line: #d8e3eb;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --shadow: 0 20px 60px rgba(3, 17, 29, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 18px;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 3.4rem;
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title.small {
  font-size: 2.8rem;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 12px 26px rgba(0, 167, 232, 0.22);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(7, 26, 42, 0.2);
}

.btn-lime {
  color: var(--navy-950);
  background: var(--lime-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(5, 16, 27, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 1.34rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.main-nav li {
  list-style: none;
}

.main-nav a {
  position: relative;
  padding: 28px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 17px;
  height: 2px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: #fff;
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--lime-500);
  font-size: 0.96rem;
  font-weight: 900;
  white-space: nowrap;
}

.phone-link small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #fff;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 720px;
  color: #fff;
  overflow: hidden;
  background: var(--navy-950);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 25, 0.9) 0%, rgba(5, 14, 25, 0.67) 44%, rgba(5, 14, 25, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 19, 31, 0.82), rgba(6, 19, 31, 0.05) 42%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(24, 184, 242, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 184, 242, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 50%, #000 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  align-items: center;
  min-height: 720px;
  gap: 54px;
}

.hero h1 {
  margin: 0 0 22px;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 5.6rem;
  line-height: 0.88;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.tracking-card {
  justify-self: end;
  width: min(430px, 100%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 16, 27, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.tracking-map {
  position: relative;
  height: 265px;
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 167, 232, 0.2) 2px, transparent 2px),
    linear-gradient(90deg, rgba(0, 167, 232, 0.2) 2px, transparent 2px),
    linear-gradient(135deg, #0a2a43, #06131f);
  background-size: 44px 44px, 44px 44px, cover;
}

.tracking-line {
  position: absolute;
  inset: 42px 54px;
  border-bottom: 3px solid var(--lime-500);
  border-left: 3px solid var(--lime-500);
  transform: skewX(-18deg);
}

.tracking-pin {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 7px solid var(--lime-500);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 12px 30px rgba(201, 233, 80, 0.4);
}

.tracking-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--navy-950);
}

.tracking-pin.start {
  left: 54px;
  bottom: 44px;
}

.tracking-pin.end {
  right: 64px;
  top: 44px;
}

.tracking-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.tracking-meta strong {
  display: block;
  color: var(--lime-500);
  font-size: 1.25rem;
}

.tracking-meta span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stats-band {
  color: #fff;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.stat {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 136px;
  padding: 24px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stat svg {
  color: var(--lime-500);
}

.stat strong {
  display: block;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 2.4rem;
  line-height: 0.9;
  font-weight: 800;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 68px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy-900);
}

.media-frame img {
  width: 100%;
  min-height: 380px;
  object-fit: cover;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-weight: 700;
}

.check-list svg {
  margin-top: 2px;
  color: var(--green-500);
}

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

.services-head {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(6, 19, 31, 0.1);
}

.service-image {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: var(--navy-850);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  position: absolute;
  left: 20px;
  bottom: -23px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 12px 24px rgba(0, 167, 232, 0.32);
}

.service-body {
  flex: 1;
  padding: 34px 22px 24px;
}

.service-body h3 {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

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

.dark-feature {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--navy-950);
}

.dark-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 16, 27, 0.96) 0%, rgba(5, 16, 27, 0.75) 45%, rgba(5, 16, 27, 0.16) 100%),
    var(--feature-image);
  background-position: center;
  background-size: cover;
}

.dark-feature .wrap {
  position: relative;
  z-index: 2;
}

.feature-content {
  max-width: 560px;
}

.dark-feature p,
.dark-feature .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.why-item {
  padding: 28px 16px;
  border-left: 1px solid var(--line);
}

.why-item:first-child {
  border-left: 0;
}

.why-item svg {
  color: var(--blue-600);
}

.why-item h3 {
  margin: 16px 0 8px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.apps-strip {
  color: #fff;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
}

.apps-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 48px;
}

.app-phone {
  display: flex;
  align-items: end;
  gap: 28px;
}

.app-phone img {
  width: 150px;
  max-height: 265px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.24);
}

.app-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.app-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 76px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  color: #fff;
  background: var(--navy-950);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 16, 27, 0.96), rgba(5, 16, 27, 0.63)),
    var(--contact-image);
  background-position: center;
  background-size: cover;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 60px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.contact-list a,
.contact-list span {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.contact-list svg {
  color: var(--lime-500);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: block;
}

.quote-form .wide {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.92rem;
}

.quote-form textarea {
  min-height: 128px;
  resize: vertical;
}

.quote-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.page-hero {
  position: relative;
  padding: 118px 0 86px;
  color: #fff;
  overflow: hidden;
  background: var(--navy-950);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 16, 27, 0.92), rgba(5, 16, 27, 0.52)),
    var(--page-hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 4.8rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.page-content {
  padding: 82px 0;
}

.page-content .entry-content {
  display: grid;
  gap: 34px;
  max-width: 930px;
}

.page-content h2,
.page-content h3 {
  margin: 0 0 12px;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.page-content h2 {
  font-size: 3rem;
}

.page-content h3 {
  font-size: 1.7rem;
}

.page-content p,
.page-content li {
  color: var(--muted);
}

.content-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.content-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.site-footer {
  color: #fff;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 42px;
  padding: 58px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  width: 96px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-col h3 {
  margin: 0 0 18px;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin-bottom: 9px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
}

.mini-map {
  min-height: 134px;
  padding: 20px;
  border-radius: 6px;
  color: var(--ink);
  background:
    linear-gradient(rgba(7, 26, 42, 0.06) 2px, transparent 2px),
    linear-gradient(90deg, rgba(7, 26, 42, 0.06) 2px, transparent 2px),
    #eff4f8;
  background-size: 32px 32px;
}

.mini-map strong {
  color: var(--navy-950);
}

.footer-bottom {
  padding: 18px 0 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-topbar {
  color: #fff;
  background: var(--blue-600);
}

.contact-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-topbar a,
.contact-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-slider {
  position: relative;
  color: #fff;
  background: var(--navy-950);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 720px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 25, 0.92) 0%, rgba(5, 14, 25, 0.7) 48%, rgba(5, 14, 25, 0.14) 100%),
    linear-gradient(0deg, rgba(6, 19, 31, 0.82), rgba(6, 19, 31, 0.06) 42%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(24, 184, 242, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 184, 242, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.hero-slider .hero-inner {
  position: relative;
  z-index: 2;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--blue-500);
}

.service-preview strong {
  display: block;
  margin-bottom: 18px;
  color: var(--lime-500);
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-preview ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-preview li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

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

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.led-section {
  color: #fff;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
}

.led-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.led-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.led-items article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.led-items strong {
  display: block;
  margin-bottom: 10px;
  color: var(--lime-500);
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.led-items span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonials {
  background: #fff;
}

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

.testimonial-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.testimonial-card p {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: var(--blue-600);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.coverage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.brazil-map {
  position: relative;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 167, 232, 0.07) 2px, transparent 2px),
    linear-gradient(90deg, rgba(0, 167, 232, 0.07) 2px, transparent 2px),
    #fff;
  background-size: 42px 42px;
  box-shadow: var(--shadow);
}

.map-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 250px;
  height: 315px;
  color: rgba(0, 167, 232, 0.72);
  border: 3px solid rgba(0, 167, 232, 0.52);
  border-radius: 44% 38% 48% 36% / 28% 42% 44% 54%;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 5rem;
  font-weight: 800;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.map-dot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--navy-950);
  border-radius: 999px;
  background: var(--lime-500);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(6, 19, 31, 0.14);
}

.map-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-600);
}

.dot-sudeste { right: 20%; bottom: 24%; }
.dot-sul { left: 32%; bottom: 12%; }
.dot-centro { left: 17%; top: 46%; }
.dot-norte { left: 30%; top: 20%; }
.dot-nordeste { right: 12%; top: 34%; }

.partners {
  background: #fff;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.partner-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.partner-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.partner-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 52px;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  padding: 18px 22px;
  border: 0;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: #fff;
  border-radius: 50%;
  background: var(--blue-600);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-cta {
  color: #fff;
  background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  color: #fff;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 16px 36px rgba(6, 19, 31, 0.24);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

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

  .main-nav.is-open {
    position: fixed;
    left: 0;
    right: 0;
    top: 74px;
    display: grid;
    justify-content: stretch;
    padding: 14px 20px 28px;
    background: rgba(5, 16, 27, 0.98);
  }

  .main-nav.is-open ul {
    display: grid;
    justify-content: stretch;
  }

  .main-nav.is-open a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .featured-services,
  .testimonial-grid,
  .partner-grid,
  .led-items {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .header-actions .phone-link {
    display: none;
  }

  .hero,
  .hero-slide,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 92px 0 46px;
  }

  .tracking-card {
    justify-self: stretch;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .split,
  .apps-inner,
  .contact-grid,
  .coverage-grid,
  .faq-grid,
  .led-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .app-links,
  .testimonial-grid,
  .partner-grid,
  .led-items,
  .content-grid-3,
  .content-grid-2 {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .why-item:first-child {
    border-top: 0;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .brand-text span {
    display: none;
  }

  .stats-grid,
  .services-grid,
  .featured-services {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 110px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .app-phone {
    display: block;
  }

  .app-phone img {
    margin-bottom: 24px;
  }

  .contact-topbar-inner {
    display: grid;
    justify-content: start;
    padding: 9px 0;
  }

  .hero-controls {
    bottom: 14px;
  }

  .brazil-map {
    min-height: 390px;
  }

  .map-shape {
    width: 205px;
    height: 265px;
    font-size: 4rem;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

/* DOCX-driven redesign */
:root {
  --brand-blue: #24a7df;
  --brand-blue-dark: #0679b2;
  --brand-lime: #b7d733;
  --brand-black: #050607;
  --doc-dark: #101820;
  --doc-soft: #f3f3f3;
  --doc-orange: #ef4637;
}

.contact-topbar {
  background: var(--brand-blue);
}

.contact-topbar-inner {
  min-height: 52px;
  gap: 24px;
}

.topbar-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 28px;
  min-width: 0;
}

.topbar-contacts a,
.topbar-contacts span {
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.topbar-socials {
  display: flex;
  gap: 8px;
}

.topbar-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 30px;
  color: var(--brand-blue-dark);
  border-radius: 3px;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header {
  background: rgba(6, 30, 43, 0.94);
}

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

.brand img {
  width: 64px;
  height: 64px;
  padding: 4px;
  border-radius: 6px;
  background: #fff;
}

.main-nav a {
  padding-top: 32px;
  padding-bottom: 32px;
}

.main-nav a::after {
  background: var(--brand-lime);
}

.phone-link {
  min-height: 54px;
  padding: 8px 14px 8px 10px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.phone-link > svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
  border-radius: 4px;
}

.phone-link span {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.1;
  text-transform: none;
}

.phone-link small {
  color: rgba(255, 255, 255, 0.72);
}

.btn-primary {
  background: var(--brand-blue);
  box-shadow: 0 14px 28px rgba(36, 167, 223, 0.24);
}

.doc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 3px 10px;
  color: var(--doc-dark);
  border: 1px solid #dfe5e8;
  border-radius: 4px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doc-section {
  padding: 104px 0;
}

.doc-section h2,
.doc-copy-block h2,
.doc-services h2,
.doc-testimonials h2,
.doc-faq h2,
.doc-final-cta h2 {
  margin: 0;
  color: #090d12;
  font-size: 4.2rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.doc-section p,
.doc-copy-block p,
.doc-section-head p {
  color: #4d565e;
}

.doc-hero-slider {
  position: relative;
  min-height: 760px;
  color: #fff;
  overflow: hidden;
  background: var(--brand-black);
}

.doc-hero-slide {
  position: absolute;
  inset: 0;
  min-height: 760px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 560ms ease, visibility 560ms ease;
}

.doc-hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.doc-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.58)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.04) 50%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.doc-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: space-between;
  min-height: 760px;
  padding: 76px 0 68px;
}

.doc-hero-heading {
  max-width: 980px;
}

.doc-hero-heading h1 {
  margin: 0;
  max-width: 980px;
  color: #fff;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 7.2rem;
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.doc-hero-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 430px) auto;
  align-items: end;
  gap: 48px;
}

.doc-hero-bottom p {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.doc-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.doc-hero-actions .btn {
  min-width: 210px;
  min-height: 54px;
  border-radius: 999px;
}

.doc-slider-arrows {
  position: absolute;
  right: 28px;
  top: 50%;
  z-index: 5;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.doc-slider-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--brand-blue);
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
}

.doc-slider-arrow.hero-next {
  background: var(--brand-lime);
  color: #06131f;
}

.doc-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 6;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.doc-slider-dots .hero-dot {
  height: 5px;
  width: 46px;
}

.doc-slider-dots .hero-dot.is-active {
  background: var(--brand-lime);
}

.doc-about-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 70px;
}

.about-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  grid-template-rows: 340px 150px;
  gap: 22px;
  min-height: 520px;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-large {
  grid-row: 1 / 3;
  margin-top: 64px;
}

.about-photo-small {
  align-self: end;
}

.about-experience {
  position: absolute;
  left: -46px;
  top: 120px;
  display: grid;
  place-items: center;
  width: 184px;
  height: 184px;
  color: #fff;
  border-radius: 50%;
  background: #030303;
  text-align: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.about-experience strong {
  display: block;
  color: var(--brand-lime);
  font-size: 3rem;
  line-height: 0.9;
}

.about-experience span {
  display: block;
  max-width: 110px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.about-clients {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 20px;
  border-radius: 8px;
  background: #f4f4f4;
  text-align: center;
}

.about-clients strong,
.testimonial-count strong {
  color: var(--doc-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.about-clients span,
.testimonial-count span {
  display: block;
  color: var(--doc-dark);
  font-weight: 700;
}

.about-clients div,
.testimonial-count div {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.about-clients img,
.testimonial-count img {
  width: 46px;
  height: 46px;
  margin-left: -10px;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

.about-feature {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border-radius: 8px;
  background: #f4f4f4;
}

.about-feature > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  border-radius: 5px;
}

.about-feature strong {
  display: block;
  color: #20262c;
  font-size: 1.35rem;
}

.about-feature p {
  margin: 3px 0 0;
}

.about-action-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.about-signature {
  color: #20262c;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.1;
}

.about-signature small {
  color: #59636d;
  font-size: 0.9rem;
}

.doc-services,
.doc-testimonials,
.doc-faq {
  background: var(--doc-soft);
}

.split-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.72fr);
  gap: 70px;
  align-items: center;
  margin-bottom: 48px;
}

.split-head p {
  margin-bottom: 26px;
}

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

.doc-service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8dde1;
  border-radius: 8px;
  background: #fff;
}

.doc-service-image {
  position: relative;
  height: 265px;
}

.doc-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-service-image span {
  position: absolute;
  right: -1px;
  bottom: -28px;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: var(--brand-blue);
  border: 1px solid var(--brand-blue);
  border-radius: 8px 0 0 8px;
  background: #fff;
}

.doc-service-content {
  position: relative;
  min-height: 220px;
  padding: 34px 28px 28px;
}

.doc-service-content small {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-blue-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.doc-service-content h3 {
  margin: 0 0 10px;
  color: #2b3035;
  font-size: 1.6rem;
  line-height: 1.1;
}

.doc-service-content p {
  margin: 0;
  color: #57616a;
}

.doc-service-content > a {
  position: absolute;
  right: 26px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  border-radius: 7px;
  background: var(--brand-blue);
}

.testimonial-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  grid-template-areas:
    "intro count"
    "cards image";
  gap: 48px 70px;
  align-items: start;
}

.testimonial-intro {
  grid-area: intro;
  max-width: 740px;
}

.testimonial-count {
  grid-area: count;
  justify-self: end;
  width: 260px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.testimonial-image {
  grid-area: image;
  width: 100%;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.testimonial-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.testimonial-cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 20px;
  align-self: center;
  margin-top: 70px;
}

.doc-testimonial-card {
  position: relative;
  min-height: 320px;
  padding: 42px 36px 34px;
  border: 0;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.06);
}

.doc-testimonial-card img {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
}

.doc-testimonial-card .quote-mark {
  position: absolute;
  right: 28px;
  top: 18px;
  color: var(--brand-blue);
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.doc-testimonial-card h3 {
  margin: 0;
  color: #20242a;
  font-size: 1.35rem;
}

.doc-testimonial-card small {
  display: block;
  margin-bottom: 20px;
  color: #58616b;
}

.doc-testimonial-card p {
  color: #505960;
}

.doc-leads {
  padding: 36px 0;
  background: #fff;
}

.lead-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.65fr 0.35fr;
  align-items: stretch;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38)),
    var(--lead-image);
  background-position: center;
  background-size: cover;
}

.lead-form {
  max-width: 720px;
  margin: 42px 0 42px 12%;
  padding: 34px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(7px);
}

.lead-form h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 4rem;
  line-height: 0.98;
  font-weight: 900;
}

.lead-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
}

.lead-fields label {
  display: grid;
  gap: 6px;
}

.lead-fields span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-fields input,
.lead-fields select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  color: #fff;
  background: rgba(8, 16, 24, 0.5);
  font: inherit;
}

.lead-fields option {
  color: #0c1620;
}

.lead-form .btn {
  width: 100%;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.lead-worker {
  position: relative;
  align-self: end;
  min-height: 470px;
}

.lead-worker img {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: min(430px, 100%);
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: inset(0 0 0 0 round 8px);
}

.lead-badge {
  position: absolute;
  right: 30%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #20242a;
  background: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.lead-badge::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 4px solid var(--brand-blue);
  border-radius: 50%;
}

.badge-one {
  top: 34%;
}

.badge-two {
  right: 10%;
  top: 61%;
}

.doc-coverage {
  padding: 36px 0;
  background: #fff;
}

.coverage-shell {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 560px;
  padding: 10px;
  overflow: hidden;
  border-radius: 8px;
  background: #2a2e32;
}

.coverage-panel {
  z-index: 2;
  padding: 46px 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--brand-blue);
}

.coverage-panel h2 {
  margin: 0 0 170px;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.18;
  font-weight: 900;
}

.coverage-number {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.coverage-number strong {
  color: #fff;
  font-size: 1.7rem;
}

.coverage-number span {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.brazil-coverage-map {
  position: relative;
  min-height: 540px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 10px 10px;
}

.brasil-outline {
  position: absolute;
  left: 52%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 290px;
  height: 385px;
  color: rgba(255, 255, 255, 0.34);
  border: 5px solid rgba(183, 215, 51, 0.88);
  border-radius: 47% 38% 52% 35% / 30% 43% 47% 55%;
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: 5.8rem;
  font-weight: 800;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.region-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  color: #06131f;
  border-radius: 999px;
  background: var(--brand-lime);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.region-pin::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22);
}

.pin-norte { left: 43%; top: 17%; }
.pin-nordeste { right: 17%; top: 34%; }
.pin-centro { left: 31%; top: 48%; }
.pin-sudeste { right: 26%; bottom: 25%; }
.pin-sul { left: 42%; bottom: 12%; }

.faq-doc-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.86fr);
  gap: 70px;
  align-items: center;
}

.doc-faq-list {
  display: grid;
  gap: 2px;
  margin-top: 54px;
}

.doc-faq .faq-item {
  border: 0;
  border-radius: 6px;
}

.doc-faq .faq-question {
  min-height: 80px;
  padding: 22px 28px;
  font-size: 1.05rem;
}

.doc-faq .faq-question span {
  color: #1a2026;
  border: 1px solid #d6dce0;
  background: #fff;
}

.faq-image {
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 7%);
}

.faq-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.doc-partners {
  padding: 70px 0 76px;
  background: #fff;
  text-align: center;
}

.partner-logo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px;
  align-items: center;
  margin-top: 34px;
}

.partner-logo-row a {
  color: #2d3338;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0;
  filter: grayscale(1);
  opacity: 0.82;
}

.partner-logo-row a:hover {
  color: var(--brand-blue-dark);
  filter: none;
  opacity: 1;
}

.doc-final-cta {
  padding: 32px 0 0;
  background: #fff;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  min-height: 220px;
  padding: 44px 86px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38)),
    var(--cta-image);
  background-position: center;
  background-size: cover;
}

.cta-card h2 {
  max-width: 720px;
  color: #fff;
  font-size: 4.4rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 0;
  background: #000;
}

.footer-grid {
  grid-template-columns: 1fr 0.9fr 0.95fr 1.05fr;
  gap: 56px;
  padding: 82px 0 64px;
  border-top: 0;
}

.footer-brand-card {
  padding: 26px;
  border-radius: 8px;
  background: var(--brand-blue);
}

.footer-brand-card img {
  width: 112px;
  padding: 7px;
  border-radius: 6px;
  background: #fff;
}

.footer-brand-card p {
  color: #fff;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.12;
  text-transform: none;
}

.footer-col a::before {
  content: "→ ";
  color: var(--brand-blue);
}

.footer-access-form {
  display: grid;
  gap: 14px;
}

.footer-access-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  color: #fff;
  background: #060606;
  font: inherit;
}

.footer-access-form option {
  color: #111;
}

.footer-access-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px 6px 0 0;
  text-align: left;
}

.floating-whatsapp {
  background: #25d366;
}

@media (max-width: 1180px) {
  .topbar-contacts {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .doc-service-grid,
  .partner-logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .doc-about-grid,
  .testimonial-layout,
  .faq-doc-grid,
  .coverage-shell {
    grid-template-columns: 1fr;
  }

  .testimonial-layout {
    grid-template-areas:
      "intro"
      "count"
      "cards"
      "image";
  }

  .testimonial-count {
    justify-self: start;
  }

  .coverage-panel h2 {
    margin-bottom: 48px;
  }
}

@media (max-width: 820px) {
  .contact-topbar-inner {
    display: grid;
    align-items: start;
    padding: 10px 0;
  }

  .topbar-contacts {
    display: grid;
    gap: 8px;
  }

  .doc-section {
    padding: 72px 0;
  }

  .doc-hero-slider,
  .doc-hero-slide,
  .doc-hero-layout {
    min-height: 720px;
  }

  .doc-hero-layout {
    padding: 56px 0 82px;
  }

  .doc-hero-heading h1 {
    font-size: 5rem;
  }

  .doc-hero-bottom,
  .split-head,
  .lead-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .doc-hero-actions {
    display: grid;
    justify-content: stretch;
  }

  .doc-slider-arrows {
    right: 12px;
  }

  .doc-slider-arrow {
    width: 44px;
    height: 44px;
  }

  .about-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .about-photo-large {
    grid-row: auto;
    margin-top: 0;
  }

  .about-photo {
    min-height: 260px;
  }

  .about-experience {
    left: 18px;
    top: 18px;
    width: 138px;
    height: 138px;
  }

  .doc-service-grid,
  .testimonial-cards,
  .lead-fields,
  .partner-logo-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    margin: 22px;
    padding: 24px;
  }

  .lead-worker {
    display: none;
  }

  .coverage-shell {
    min-height: auto;
  }

  .coverage-panel {
    padding: 32px 24px;
  }

  .brazil-coverage-map {
    min-height: 420px;
  }

  .brasil-outline {
    width: 220px;
    height: 300px;
    font-size: 4rem;
  }

  .faq-image,
  .faq-image img {
    min-height: 360px;
    height: 360px;
  }

  .cta-card {
    padding: 34px 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 560px) {
  .doc-section h2,
  .doc-copy-block h2,
  .doc-services h2,
  .doc-testimonials h2,
  .doc-faq h2,
  .doc-final-cta h2 {
    font-size: 2.6rem;
  }

  .doc-hero-heading h1 {
    font-size: 3.4rem;
  }

  .lead-form h2,
  .cta-card h2 {
    font-size: 2.65rem;
  }

  .partner-logo-row a {
    font-size: 1.8rem;
  }

  .doc-hero-actions .btn {
    min-width: 0;
  }

  .doc-service-image {
    height: 220px;
  }

  .coverage-number {
    grid-template-columns: 1fr;
  }

  .region-pin {
    font-size: 0.65rem;
  }

  .pin-nordeste {
    right: 4%;
  }

  .pin-sudeste {
    right: 10%;
  }

  .floating-whatsapp span {
    display: none;
  }
}

/* Client refinement pass */
.doc-hero-slider {
  min-height: 560px;
  aspect-ratio: 1900 / 810;
}

.doc-hero-slide,
.doc-hero-slide.is-active,
.doc-hero-layout {
  min-height: 0;
  height: 100%;
}

.doc-hero-layout {
  padding: 56px 0 58px;
}

.doc-hero-heading {
  max-width: 830px;
}

.doc-hero-heading h1 {
  max-width: 830px;
  font-size: 4.65rem;
  line-height: 0.98;
}

.doc-hero-bottom {
  grid-template-columns: minmax(260px, 430px) minmax(420px, auto);
}

.doc-slider-arrows,
.doc-slider-arrow {
  display: none;
}

.doc-section h2,
.doc-copy-block h2,
.doc-services h2,
.doc-testimonials h2,
.doc-faq h2,
.doc-final-cta h2 {
  font-size: 3.05rem;
  line-height: 1.08;
}

.doc-about-grid {
  align-items: stretch;
}

.doc-copy-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-collage {
  height: 100%;
  min-height: 0;
  grid-template-rows: minmax(270px, 1fr) 150px;
}

.about-photo-large {
  margin-top: 0;
}

.split-head {
  align-items: end;
}

.split-head > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  max-width: 440px;
  text-align: right;
}

.doc-services .doc-section-head h2 {
  max-width: 700px;
}

.testimonial-layout {
  grid-template-columns: minmax(0, 1fr) 35%;
  grid-template-areas:
    "intro count"
    "cards image";
  gap: 36px 48px;
}

.testimonial-intro h2 {
  max-width: 720px;
}

.testimonial-image {
  position: relative;
  z-index: 1;
  align-self: stretch;
  width: 100%;
  min-height: 480px;
}

.testimonial-image img {
  height: 480px;
}

.testimonial-cards {
  position: relative;
  z-index: 2;
  grid-column: 1 / 3;
  grid-row: 2;
  width: 78%;
  margin-top: 88px;
}

.doc-testimonial-card {
  min-height: 300px;
}

.doc-leads {
  padding: 0;
}

.doc-leads .wrap,
.doc-final-cta .wrap {
  width: 100%;
  max-width: none;
}

.lead-layout {
  border-radius: 0;
}

.lead-form {
  margin-left: max(32px, calc((100% - var(--max)) / 2));
}

.lead-form h2 {
  max-width: 620px;
  font-size: 3.25rem;
}

.doc-coverage {
  padding: 36px 0;
}

.brazil-coverage-map {
  overflow: hidden;
}

.brasil-outline {
  display: none;
}

.brasil-map-svg {
  position: absolute;
  left: 55%;
  top: 50%;
  width: min(520px, 68%);
  height: min(540px, 88%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.2));
}

.brasil-map-svg path:first-child {
  fill: rgba(183, 215, 51, 0.14);
  stroke: var(--brand-lime);
  stroke-width: 10;
  stroke-linejoin: round;
}

.brasil-map-svg .brasil-state-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pin-norte { left: 45%; top: 16%; }
.pin-nordeste { right: 15%; top: 35%; }
.pin-centro { left: 32%; top: 49%; }
.pin-sudeste { right: 25%; bottom: 25%; }
.pin-sul { left: 44%; bottom: 12%; }

.faq-doc-grid {
  align-items: start;
}

.faq-image {
  position: sticky;
  top: 116px;
  align-self: start;
}

.doc-faq .faq-question {
  gap: 18px;
}

.faq-question .faq-chevron,
.doc-faq .faq-question .faq-chevron {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid #d9dfe3;
  border-radius: 50%;
  color: #20262c;
  background: #fff;
}

.faq-question .faq-chevron::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease, top 180ms ease;
}

.faq-item.is-open .faq-chevron::before {
  top: 8px;
  transform: rotate(225deg);
}

.partner-logo-row {
  grid-template-columns: repeat(7, 1fr);
  gap: 34px;
}

.partner-logo-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  color: #2d3338;
  font-size: 2.1rem;
  font-weight: 900;
  opacity: 0.78;
  filter: grayscale(1);
}

.partner-logo-row a {
  display: none;
}

.doc-final-cta {
  padding: 0;
}

.cta-card {
  border-radius: 0;
}

.cta-card h2 {
  font-size: 3.45rem;
}

.footer-access-form select {
  color: #111;
  background: #fff;
}

.main-nav .menu > .menu-item-has-children {
  position: relative;
}

.main-nav .menu > .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.main-nav .menu > .menu-item-has-children > a::before {
  content: "";
  order: 2;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.main-nav .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 70;
  display: grid;
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(5, 16, 27, 0.98);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu,
.main-nav .menu-item-has-children.submenu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .sub-menu li {
  width: 100%;
}

.main-nav .sub-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

.main-nav .sub-menu a::after {
  display: none;
}

.main-nav .sub-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
  .partner-logo-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .main-nav.is-open .sub-menu {
    position: static;
    min-width: 0;
    margin: 4px 0 12px;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .main-nav.is-open .sub-menu a {
    padding: 11px 0;
    white-space: normal;
  }
}

@media (max-width: 820px) {
  .doc-hero-slider,
  .doc-hero-slide,
  .doc-hero-layout {
    min-height: 620px;
    aspect-ratio: auto;
  }

  .doc-hero-heading h1 {
    max-width: 310px;
    font-size: 2.85rem;
  }

  .doc-hero-bottom {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .doc-section h2,
  .doc-copy-block h2,
  .doc-services h2,
  .doc-testimonials h2,
  .doc-faq h2,
  .doc-final-cta h2 {
    font-size: 2.35rem;
  }

  .about-collage {
    height: auto;
  }

  .split-head > div:last-child {
    align-items: flex-start;
    justify-self: start;
    text-align: left;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "count"
      "image"
      "cards";
  }

  .testimonial-image {
    min-height: 320px;
  }

  .testimonial-image img {
    height: 320px;
  }

  .testimonial-cards {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin-top: 0;
  }

  .lead-form {
    margin: 22px;
  }

  .lead-form h2,
  .cta-card h2 {
    font-size: 2.35rem;
  }

  .brasil-map-svg {
    width: min(350px, 74%);
    height: min(390px, 86%);
  }

  .faq-image {
    position: relative;
    top: auto;
  }

  .partner-logo-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .partner-logo-row span {
    min-height: 56px;
    font-size: 1.65rem;
  }

  .cta-card {
    padding: 34px 24px;
  }
}

@media (max-width: 560px) {
  .doc-hero-heading h1 {
    max-width: 300px;
    font-size: 2.45rem;
  }

  .doc-hero-bottom p {
    font-size: 0.95rem;
  }

  .doc-section h2,
  .doc-copy-block h2,
  .doc-services h2,
  .doc-testimonials h2,
  .doc-faq h2,
  .doc-final-cta h2,
  .lead-form h2,
  .cta-card h2 {
    font-size: 2.05rem;
  }

  .partner-logo-row {
    grid-template-columns: 1fr;
  }
}

/* Final client refinements */
.doc-hero-slider {
  width: 100%;
  max-width: none;
  aspect-ratio: 1900 / 800;
  min-height: 535px;
}

.doc-hero-slider .wrap,
.doc-hero-layout {
  width: calc(100% - 96px);
  max-width: none;
}

.doc-hero-heading h1 {
  max-width: 760px;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.04;
}

.about-collage {
  grid-template-columns: 60% 40%;
  grid-template-rows: 68% 32%;
  gap: 20px;
}

.about-photo-large {
  grid-row: 1 / 3;
}

.about-photo-small {
  align-self: stretch;
  height: 100%;
  min-height: 300px;
}

.about-clients {
  align-self: stretch;
  min-height: 0;
}

.lead-layout {
  grid-template-columns: minmax(340px, 530px) minmax(320px, 430px);
  justify-content: space-around;
  align-items: center;
  gap: 42px;
  min-height: 470px;
}

.lead-form {
  width: 100%;
  max-width: 530px;
  margin: 42px 0;
  padding: 26px;
}

.lead-form h2 {
  max-width: 500px;
  font-size: 2.85rem;
}

.lead-fields {
  gap: 11px 14px;
}

.lead-fields input,
.lead-fields select {
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.lead-fields span {
  font-size: 0.68rem;
}

.lead-form .btn {
  min-height: 44px;
}

.lead-worker {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 410px;
}

.lead-worker img {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(410px, 100%);
  height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.lead-badge {
  right: auto;
  font-size: 0.95rem;
}

.badge-one {
  left: 0;
  top: 30%;
}

.badge-two {
  right: 0;
  top: 60%;
}

.brasil-map-img {
  position: absolute;
  left: 58%;
  top: 50%;
  width: min(560px, 76%);
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.24));
}

.brasil-map-svg {
  display: none;
}

.region-pin {
  transform: translate(-50%, -50%);
}

.pin-norte { left: 53%; top: 18%; }
.pin-nordeste { left: 76%; top: 38%; }
.pin-centro { left: 50%; top: 50%; }
.pin-sudeste { left: 68%; top: 66%; }
.pin-sul { left: 55%; top: 82%; }

.cta-card h2 {
  font-size: 2.95rem;
  font-weight: 800;
}

.main-nav ul {
  gap: 2px;
}

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

@media (max-width: 1100px) {
  .main-nav.is-open .sub-menu {
    display: none;
  }
}

@media (max-width: 820px) {
  .doc-hero-slider .wrap,
  .doc-hero-layout {
    width: min(100% - 28px, var(--max));
  }

  .doc-hero-heading h1 {
    max-width: 330px;
    font-size: 2.35rem;
  }

  .about-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-photo-small {
    min-height: 280px;
  }

  .lead-layout {
    grid-template-columns: minmax(0, 540px);
    justify-content: center;
    gap: 18px;
  }

  .lead-form {
    margin: 28px auto 0;
  }

  .lead-worker {
    display: flex;
    min-height: 310px;
    padding-bottom: 26px;
  }

  .lead-worker img {
    height: 280px;
  }

  .lead-badge {
    display: none;
  }

  .brasil-map-img {
    left: 50%;
    width: min(360px, 82%);
  }

  .pin-norte { left: 45%; top: 21%; }
  .pin-nordeste { left: 73%; top: 40%; }
  .pin-centro { left: 47%; top: 51%; }
  .pin-sudeste { left: 65%; top: 66%; }
  .pin-sul { left: 52%; top: 80%; }
}

@media (max-width: 560px) {
  .doc-hero-heading h1 {
    font-size: 2.05rem;
  }

  .lead-form h2,
  .cta-card h2 {
    font-size: 1.95rem;
  }

  .lead-fields {
    grid-template-columns: 1fr;
  }
}

/* Pin and slider spacing refinements */
.doc-hero-slider .wrap.doc-hero-layout {
  width: 100%;
  max-width: none;
  padding-left: 10%;
  padding-right: 10%;
}

.region-pin {
  min-width: max-content;
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
  line-height: 1;
}

.pin-norte { left: 57%; top: 18%; }
.pin-nordeste { left: 82%; top: 38%; }
.pin-centro { left: 55%; top: 50%; }
.pin-sudeste { left: 74%; top: 66%; }
.pin-sul { left: 60%; top: 82%; }

@media (max-width: 820px) {
  .doc-hero-slider .wrap.doc-hero-layout {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .pin-norte { left: 49%; top: 21%; }
  .pin-nordeste { left: 77%; top: 40%; }
  .pin-centro { left: 52%; top: 51%; }
  .pin-sudeste { left: 70%; top: 66%; }
  .pin-sul { left: 57%; top: 80%; }
}

/* Final CTA centered content */
.doc-final-cta {
  width: 100%;
}

.doc-final-cta .wrap.cta-card {
  width: 100%;
  max-width: none;
}

.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 260px;
  gap: 24px;
  text-align: center;
  background-position: center;
  background-size: cover;
}

.cta-card h2 {
  max-width: 780px;
  margin: 0 auto;
}

/* CTA reference alignment: centered group, horizontal content */
.cta-card {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 72px;
  min-height: 245px;
  text-align: left;
}

.cta-card h2 {
  max-width: 660px;
  margin: 0;
  font-weight: 650;
  line-height: 1.08;
}

.cta-card .btn {
  flex: 0 0 auto;
}

@media (max-width: 820px) {
  .cta-card {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }

  .cta-card h2 {
    max-width: 620px;
    text-align: center;
  }
}

/* Client adjustments: logo, services ribbon, laser service, reviews and partners. */
.contact-topbar {
  background: #d9281f;
}

.topbar-socials a {
  color: #0f2737;
  background: #fff;
}

.brand img {
  width: 78px;
  height: 78px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.footer-brand-card img {
  width: 154px;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.doc-hero-slide-centered .doc-hero-layout {
  align-content: center;
  gap: 36px;
  text-align: center;
}

.doc-hero-slide-centered .doc-hero-heading,
.doc-hero-slide-centered .doc-hero-heading h1 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.doc-hero-slide-centered .doc-hero-bottom {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  justify-items: center;
  gap: 24px;
}

.doc-hero-slide-centered .doc-hero-bottom p {
  max-width: 700px;
  text-align: center;
}

.service-ribbon {
  display: grid;
  place-items: center;
  min-height: 96px;
  color: #fff;
  background: #d9281f;
}

.service-ribbon .wrap {
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.doc-service-card-wide {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  align-items: stretch;
  margin-bottom: 30px;
}

.doc-service-card-wide .doc-service-image {
  height: auto;
  min-height: 320px;
}

.doc-service-card-wide .doc-service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  padding-right: 96px;
}

.doc-service-card-wide .doc-service-content > a {
  right: 34px;
  bottom: 34px;
}

.testimonial-count {
  color: inherit;
  text-decoration: none;
}

.testimonial-count small {
  display: inline-flex;
  margin-top: 12px;
  color: #d9281f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.google-review-carousel {
  position: relative;
  display: block;
  min-height: 390px;
}

.google-review-slide {
  display: none;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 20px;
}

.google-review-slide.is-active {
  display: grid;
}

.google-review-carousel .doc-testimonial-card {
  min-height: 340px;
}

.review-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.review-dot {
  width: 28px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c9d0d6;
  cursor: pointer;
}

.review-dot.is-active {
  width: 42px;
  background: #d9281f;
}

.partner-carousel {
  position: relative;
  width: 100%;
  margin-top: 34px;
  overflow: hidden;
}

.partner-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: partner-marquee 34s linear infinite;
}

.partner-carousel:hover .partner-logo-track {
  animation-play-state: paused;
}

.partner-logo {
  display: grid;
  place-items: center;
  flex: 0 0 230px;
  height: 170px;
  margin: 0 16px;
  padding: 24px;
  border: 1px solid #e0e5ea;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
}

.partner-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 118px;
  object-fit: contain;
  object-position: center;
}

@keyframes partner-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.page-service-highlight,
.contact-hours-card {
  margin-bottom: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(9, 13, 18, 0.08);
}

.page-service-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  overflow: hidden;
}

.page-service-highlight > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.page-service-highlight span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #d9281f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-service-highlight h2,
.contact-hours-card h2 {
  margin: 0 0 14px;
  color: #111820;
}

.page-service-highlight p,
.contact-hours-card p {
  color: #4d565e;
}

.page-service-highlight .btn {
  width: fit-content;
  margin-top: 8px;
}

.page-service-highlight img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.contact-hours-card {
  padding: 34px;
  border-left: 6px solid #d9281f;
}

@media (max-width: 980px) {
  .doc-service-card-wide,
  .page-service-highlight {
    grid-template-columns: 1fr;
  }

  .doc-service-card-wide .doc-service-content {
    padding-right: 28px;
  }

  .doc-service-card-wide .doc-service-content > a {
    position: static;
    margin-top: 22px;
  }
}

@media (max-width: 820px) {
  .brand img {
    width: 66px;
    height: 66px;
  }

  .service-ribbon {
    min-height: 84px;
  }

  .google-review-carousel {
    min-height: 0;
  }

  .google-review-slide {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    flex-basis: 190px;
    height: 132px;
    margin: 0 10px;
    padding: 20px;
  }

  .partner-logo img {
    max-height: 84px;
  }

  .page-service-highlight > div,
  .contact-hours-card {
    padding: 26px 20px;
  }
}

@media (max-width: 430px) {
  .brand img {
    width: 58px;
    height: 58px;
  }
}
