/* ===== HeaderModel01 ===== */
body > header {
  width: 100%;
}

.site-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid transparent;
  min-height: 96px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header-nav.is-scrolled,
body:not(.page-home) .site-header-nav {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(26, 29, 33, 0.04);
}

.site-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
  min-height: 96px;
}

.logo-icon {
  height: 58px;
  width: auto;
  max-width: min(280px, 100%);
  object-fit: contain;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  border: 1px solid #c5ced4;
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
}

.nav-toggle svg {
  width: 22px;
  height: 16px;
  max-width: none;
}

.site-header-collapse {
  display: none;
  width: 100%;
  padding: 16px;
  margin-top: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.site-header-collapse.is-open {
  display: block;
}

.site-header-menu {
  align-items: center;
  gap: 44px;
}

.site-header-menu .nav-item {
  position: relative;
}

.site-header-menu .nav-link {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: var(--navy) !important;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0 !important;
}

.site-header-menu .nav-link:hover {
  color: var(--teal) !important;
}

.site-header-menu .nav-link.active {
  color: var(--navy) !important;
}

.site-header-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: var(--teal);
}

.nav-dropdown-toggle {
  gap: 6px;
}

.nav-dropdown-caret {
  font-size: 8px;
  transform: scaleX(1.3);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding: 10px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  z-index: 20;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-body);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--teal);
  background: var(--teal-soft);
}

.btn-es.site-header-cta {
  min-width: 268px;
  padding: 14px 22px;
  font-size: 13px;
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .site-header-nav {
    height: 96px;
  }

  .site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .logo-icon {
    height: 62px;
  }

  .site-header-collapse {
    display: flex;
    align-items: center;
    gap: 28px;
    width: auto;
    padding: 0;
    margin: 0 0 0 auto;
    background: transparent;
    border: 0;
  }

  .site-header-menu {
    display: flex;
    gap: 28px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header-cta {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

@media (max-width: 991.98px) {
  .site-header-nav,
  .site-header-inner {
    min-height: 88px;
  }

  .site-logo {
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .logo-icon {
    height: 48px;
    max-width: min(200px, calc(100vw - 120px));
  }

  .nav-toggle {
    display: inline-flex !important;
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid #c5ced4;
    color: var(--navy);
  }

  .site-header-collapse {
    flex: 1 0 100%;
  }

  .site-header-menu {
    gap: 4px;
    margin-bottom: 12px;
  }

  .site-header-cta {
    width: 100%;
    min-width: 0;
    margin: 8px 0 0;
  }

  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 4px 0 8px 12px;
  }
}

/* ===== Hero ===== */
.section-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  margin-top: var(--header-h);
  overflow: hidden;
  background: #eef1f4;
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: center right;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.74) 28%,
    rgba(255, 255, 255, 0.32) 46%,
    rgba(255, 255, 255, 0) 64%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
}

.hero-stack {
  width: 46%;
  max-width: 600px;
  padding: 72px 0;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--teal);
}

.section-hero h1 {
  font-size: clamp(32px, 3.2vw, 54px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.section-hero h1 .hero-line {
  display: block;
}

.hero-lead {
  max-width: 600px;
  color: var(--text-body);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-sub {
  position: relative;
  max-width: 480px;
  margin-bottom: 36px;
  padding-left: 14px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--teal);
}

.btn-es.hero-cta {
  width: 348px;
  min-height: 62px;
  margin-bottom: 44px;
  font-size: 14px;
}

.hero-cta-arrow {
  transition: transform 0.2s ease;
}

.hero-cta:hover .hero-cta-arrow,
.hero-cta:focus-visible .hero-cta-arrow {
  transform: translateX(4px);
}

.hero-highlights {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 8px;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  padding-right: 20px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-highlights li + li {
  padding-left: 20px;
  border-left: 1px solid rgba(26, 29, 33, 0.12);
}

.hero-highlight-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
}

/* ===== Ticker ===== */
.section-ticker {
  background: var(--teal-solid);
  color: var(--white);
  overflow: hidden;
}

.ticker-viewport {
  display: flex;
  align-items: center;
  height: 64px;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 48s linear infinite;
}

.ticker-seq {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-seq li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.ticker-text {
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1;
}

.section-ticker:hover .ticker-track,
.section-ticker:focus-within .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .ticker-seq + .ticker-seq {
    display: none;
  }

  .ticker-viewport {
    overflow-x: auto;
  }
}

@media (max-width: 991.98px) {
  .ticker-viewport {
    height: 58px;
  }

  .ticker-text {
    padding: 0 22px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .ticker-track {
    animation-duration: 52s;
  }
}

@media (max-width: 767.98px) {
  .ticker-viewport {
    height: 52px;
  }

  .ticker-text {
    padding: 0 18px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .ticker-track {
    animation-duration: 56s;
  }
}

/* ===== Why / compromisso ===== */
.section-why {
  padding: 88px 0 0;
  background: var(--white);
}

.why-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 400px);
  gap: 56px 72px;
  align-items: center;
  padding-bottom: 88px;
}

.why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.why-eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--teal);
}

.why-eyebrow-light {
  color: rgba(255, 255, 255, 0.72);
}

.why-eyebrow-light::before {
  background: var(--teal);
}

.section-why h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.section-why h2 .accent,
.service-proof-why h2 .accent {
  white-space: nowrap;
}

.why-intro-text {
  max-width: 620px;
  margin-top: 22px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
}

.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.why-pillars li {
  padding: 22px 20px 24px;
  background: #f6f8f9;
  border: 1px solid transparent;
  border-radius: 20px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.why-pillars li:hover,
.why-pillars li:focus-within {
  transform: translateY(-6px);
  background: var(--white);
  border-color: rgba(80, 157, 164, 0.28);
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.1);
}

.why-pillar-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.why-pillar-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  transition: transform 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.why-pillars li:hover .why-pillar-icon,
.why-pillars li:focus-within .why-pillar-icon {
  transform: scale(1.08);
  background: var(--teal-solid);
  color: var(--white);
}

.why-pillar-num {
  color: #8a929a;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.why-pillar-title {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.why-pillars p:last-child {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.65;
}

.why-visual {
  display: block;
  overflow: hidden;
  width: 100%;
  max-height: 520px;
  aspect-ratio: 4 / 5;
  border-radius: 40px;
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s ease;
}

.why-visual:hover img {
  transform: scale(1.05);
}

@media (max-width: 991.98px) {
  .section-why {
    padding: 64px 0 0;
  }

  .why-shell {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 64px;
  }

  .why-visual {
    max-width: 340px;
    max-height: none;
    margin-inline: auto;
  }

  .why-visual img {
    object-position: center center;
  }

  .why-pillars {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
}

@media (max-width: 767.98px) {
  .section-why h2 {
    font-size: clamp(28px, 7.6vw, 40px);
  }
}

/* ===== Awards ===== */
.section-awards {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: var(--white);
}

.awards-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 48px 48px;
  align-items: start;
}

.awards-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.awards-eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--teal);
}

.section-awards h2 {
  max-width: 12.5em;
  color: var(--navy);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.awards-lead {
  max-width: 46ch;
  margin: 18px 0 32px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

.awards-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.72fr);
  gap: 20px;
  align-items: stretch;
  min-height: 320px;
  padding: 28px 24px 24px 28px;
  background: #f7f4ee;
  border: 1px solid #e4d7c2;
  border-radius: 28px;
}

.awards-feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #8a7a63;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.awards-feature-kicker::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8'%3E%3Cpath d='M8 21h8M12 17v4M7 4h10v5a5 5 0 0 1-10 0V4z'/%3E%3Cpath d='M7 9H5a3 3 0 0 0 3 3M17 9h2a3 3 0 0 1-3 3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.awards-feature-kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: #d4c4a0;
}

.awards-feature-meta {
  margin-bottom: 10px;
  color: #8a7a63;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.awards-feature h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.awards-feature-copy p:last-child {
  max-width: 28ch;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.65;
}

.awards-feature-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 260px;
  background: #0b0b0b;
  border-radius: 20px;
}

.awards-feature-media img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
  object-position: center bottom;
}

.awards-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-top: 28px;
}

.awards-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid #ece7de;
}

.awards-item:nth-child(-n + 2) {
  padding-top: 0;
}

.awards-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.awards-item-media {
  width: 56px;
  height: 64px;
  overflow: hidden;
  background: #111111;
  border-radius: 12px;
}

.awards-item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.awards-item-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.awards-item-meta span:first-child {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.awards-item-meta span:last-child {
  color: #8a929a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  text-wrap: pretty;
}

.awards-item h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-wrap: balance;
}

.awards-item p:last-child {
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.55;
  text-wrap: pretty;
}

/* ===== Reviews ===== */
.section-reviews {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 88px 0 72px;
  background: #11161c;
}

.reviews-bg,
.reviews-bg picture,
.reviews-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reviews-bg img {
  object-fit: cover;
  object-position: center right;
}

.reviews-veil {
  position: absolute;
  inset: 0;
  background: rgba(17, 22, 28, 0.76);
}

.reviews-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 40px 28px;
  align-items: center;
  min-height: 560px;
}

.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(243, 246, 247, 0.78);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reviews-eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal);
}

.section-reviews h2 {
  max-width: 12ch;
  margin-bottom: 22px;
  color: #f3f6f7;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.reviews-lead {
  max-width: 28ch;
  color: #b8c0c6;
  font-size: 16px;
  line-height: 1.7;
}

.reviews-board {
  min-width: 0;
}

.reviews-viewport {
  overflow: hidden;
  container-type: inline-size;
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  transition: transform 0.55s ease;
}

.review-card {
  flex: 0 0 calc((100cqi - 36px) / 3);
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 32px;
  background: #f7f8f9;
  border-radius: 14px;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.review-card blockquote {
  flex: 1;
  margin: 0 0 20px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8eef0;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.review-name {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}

.review-source {
  color: var(--text-secondary);
  font-size: 12px;
}

.review-by {
  margin: 0;
  color: #6b7078;
  font-size: 13px;
  line-height: 1.45;
}

.review-by span {
  display: block;
}

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

.reviews-arrows {
  display: flex;
  gap: 10px;
}

.reviews-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.62);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.reviews-arrow.is-next {
  border-color: var(--teal);
  color: var(--teal);
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dot {
  width: 22px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
}

.reviews-dot.is-active {
  background: var(--teal);
}

@media (min-width: 1200px) {
  .reviews-board {
    margin-right: calc(50% - 50vw + 24px);
  }
}

@media (max-width: 1199.98px) {
  .review-card {
    flex: 0 0 calc((100cqi - 18px) / 2);
  }
}

@media (max-width: 991.98px) {
  .section-reviews {
    min-height: 0;
    padding: 64px 0 56px;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
  }

  .section-reviews h2 {
    max-width: 14ch;
  }

  .review-card {
    min-height: 270px;
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .review-card {
    width: calc(100vw - 72px);
    flex: 0 0 calc(100vw - 72px);
    min-width: 0;
  }
}

/* ===== About ===== */
.section-about {
  padding: 88px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 56px 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-photo-main {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.about-photo-main img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 62% 46%;
}

.about-badge {
  position: absolute;
  top: 28px;
  left: 0;
  max-width: 248px;
  padding: 12px 16px 12px 20px;
  background: #3e6f73;
  color: var(--white);
  border-radius: 0 14px 14px 0;
  font-size: 12px;
  line-height: 1.45;
}

.about-badge strong {
  display: block;
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-bottom {
  display: grid;
  grid-template-columns: minmax(120px, 0.85fr) minmax(0, 1.3fr);
  gap: 14px;
  margin-top: -72px;
  padding: 0 18px 0 0;
  position: relative;
  z-index: 1;
}

.about-photo-side {
  overflow: hidden;
  min-height: 150px;
  border-radius: 22px;
  background: #11161c;
}

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

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-cards li {
  padding: 20px 18px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.about-card-icon {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
}

.about-card-title {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-cards p:last-child {
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.5;
}

.about-copy h2 {
  margin: 10px 0 22px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.about-copy > p {
  max-width: 46ch;
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

.about-copy .btn-es {
  margin-top: 18px;
}

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

  .about-photo-main img {
    height: 360px;
  }

  .about-bottom {
    margin-top: -48px;
  }
}

@media (max-width: 767.98px) {
  .about-bottom,
  .about-cards {
    grid-template-columns: 1fr;
  }

  .about-photo-main img {
    height: 280px;
  }

  .about-bottom {
    margin-top: 16px;
    padding: 0;
  }
}

/* ===== Founder / responsável técnico ===== */
.section-founder {
  position: relative;
  overflow: hidden;
  background: #f6f8fb;
  padding: 96px 0;
}

.founder-draft {
  position: absolute;
  top: 24px;
  right: 0;
  width: min(340px, 32%);
  height: 220px;
  stroke: #c5d0dc;
  stroke-width: 0.7;
  opacity: 0.45;
  pointer-events: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 42%) minmax(0, 58%);
  column-gap: 80px;
  align-items: center;
}

.founder-photo-wrap {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 5;
  max-width: 460px;
  width: 100%;
  padding: 44px 36px 36px 44px;
}

.founder-photo-shape {
  position: absolute;
  z-index: 0;
}

.founder-photo-shape.is-teal {
  top: 0;
  left: 0;
  width: calc(100% - 36px);
  height: 68%;
  background: #0b3d34;
}

.founder-photo-shape.is-deep {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 38%;
  background: #0a1628;
}

.founder-photo {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}

.founder-badge {
  position: absolute;
  right: 48px;
  bottom: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid #d4af37;
  border-radius: 12px;
  padding: 8px 10px 7px;
  min-width: 108px;
  max-width: 118px;
  box-shadow: 0 8px 18px rgba(10, 22, 40, 0.12);
}

.founder-badge-wreath {
  display: block;
  margin-bottom: 2px;
}

.founder-badge-kicker {
  font-weight: 600;
  font-size: 11px;
  color: #c9a227;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}

.founder-badge-title {
  font-weight: 800;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.15;
}

.founder-badge-sub {
  font-size: 9px;
  color: var(--text-secondary);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.founder-intro,
.founder-highlight,
.founder-prose,
.founder-creds,
.founder-cta {
  grid-column: 2;
}

.founder-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-kicker-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--teal);
}

.section-founder h2 {
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.founder-role {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
}

.founder-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 32px 0 28px;
}

.founder-highlight-value {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  color: var(--teal);
}

.founder-highlight-value span:first-child {
  font-weight: 800;
  font-size: clamp(52px, 6vw, 68px);
}

.founder-highlight-value span:last-child {
  font-weight: 700;
  font-size: 26px;
  margin-top: 2px;
}

.founder-highlight-copy {
  border-left: 1px solid #c5d0dc;
  padding-left: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--navy);
}

.founder-prose p {
  max-width: 52ch;
  margin-bottom: 18px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
}

.founder-prose strong {
  color: var(--navy);
  font-weight: 600;
}

.founder-creds {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 32px;
  padding: 0;
  list-style: none;
}

.founder-cred {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 16px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.founder-cred-icon {
  flex-shrink: 0;
  display: flex;
  color: var(--teal);
}

.founder-cred-text {
  display: flex;
  flex-direction: column;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.3;
}

.founder-cred-text strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.founder-cta {
  width: auto;
  max-width: max-content;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1199.98px) {
  .founder-grid {
    column-gap: 48px;
  }

  .founder-creds {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .section-founder {
    padding: 72px 0;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .founder-photo-wrap,
  .founder-intro,
  .founder-highlight,
  .founder-prose,
  .founder-creds,
  .founder-cta {
    grid-column: auto;
    grid-row: auto;
  }

  .founder-intro {
    order: 1;
  }

  .founder-photo-wrap {
    order: 2;
    max-width: 380px;
    margin: 8px auto 12px;
    padding: 16px 16px 20px;
  }

  .founder-photo-shape.is-teal {
    width: calc(100% - 16px);
    height: 58%;
  }

  .founder-photo-shape.is-deep {
    width: 42%;
    height: 28%;
  }

  .founder-badge {
    right: 24px;
    bottom: 32px;
  }

  .founder-highlight {
    order: 3;
    margin: 8px 0;
  }

  .founder-prose {
    order: 4;
  }

  .founder-creds {
    order: 5;
    margin: 4px 0 8px;
  }

  .founder-cta {
    order: 6;
    margin-top: 12px;
  }
}

@media (max-width: 767.98px) {
  .founder-badge {
    right: 22px;
    bottom: 28px;
    min-width: 96px;
    max-width: 108px;
    padding: 7px 8px 6px;
  }

  .founder-cred {
    min-height: 76px;
    padding: 14px 12px;
  }
}

/* ===== Services ===== */
.section-services {
  background: #f6f8f9;
  padding: 88px 0 80px;
}

.section-services h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.services-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.services-lead {
  max-width: 560px;
  margin-top: 18px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.7;
}

.services-stage {
  position: relative;
}

.services-feature {
  position: relative;
  display: grid;
  overflow: hidden;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.services-slide {
  display: grid;
  grid-area: 1 / 1;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1fr);
  align-items: stretch;
  width: 100%;
  min-height: 440px;
}

.services-slide:not(.is-active) {
  visibility: hidden;
  pointer-events: none;
}

.services-slide.is-active {
  visibility: visible;
}

.services-slide-copy {
  padding: 40px 44px 36px;
}

.services-count {
  margin-bottom: 18px;
  color: #8a929a;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.services-slide-copy h3 {
  max-width: 16ch;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.services-slide-copy > p {
  max-width: 46ch;
  margin-bottom: 24px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

.services-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-bottom: 28px;
}

.services-points li {
  position: relative;
  max-width: 100%;
  padding-left: 22px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.services-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal-soft);
  box-shadow: inset 0 0 0 3px var(--teal);
}

.services-more {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 13px;
}

.services-slide-media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  background: #11161c;
}

.services-slide-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  transform: translateY(-50%);
}

.services-arrow.is-prev {
  left: -20px;
}

.services-arrow.is-next {
  right: -20px;
}

.services-arrow:hover,
.services-arrow:focus-visible {
  color: var(--teal);
  border-color: var(--teal);
}

.services-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px 18px;
  margin-bottom: 28px;
}

.services-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0 14px;
  cursor: pointer;
  color: var(--navy);
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  text-align: left;
}

.services-tab-icon {
  color: var(--teal);
}

.services-tab-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.services-tab.is-active {
  border-bottom-color: var(--teal);
}

.services-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) auto;
  align-items: center;
  gap: 24px 32px;
  margin-top: 36px;
  padding: 22px 28px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.services-cta-copy {
  display: flex;
  align-items: center;
  gap: 16px;
}

.services-cta-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
}

.services-cta-kicker {
  margin-bottom: 4px;
  color: #8a929a;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-cta-title {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.services-cta-text {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
}

.services-cta-btn {
  white-space: nowrap;
}

/* ===== Clients ===== */
.section-clients {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 88px 0 72px;
}

.section-clients::before {
  content: "";
  position: absolute;
  left: -180px;
  top: -220px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(26, 29, 33, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.clients-head {
  max-width: 720px;
  margin: 0 0 40px;
}

.section-clients h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.clients-stage {
  position: relative;
}

.clients-viewport {
  overflow: hidden;
}

.clients-track {
  display: flex;
  gap: 16px;
  width: max-content;
  transition: transform 0.55s ease;
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 168px;
  width: 168px;
  height: 118px;
  padding: 18px;
  background: var(--white);
  border: 1px solid #eef1f4;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.client-logo {
  max-width: 118px;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.clients-progress {
  width: 72px;
  height: 3px;
  margin: 22px auto 0;
  overflow: hidden;
  background: #e6eaee;
  border-radius: 999px;
}

.clients-progress-bar {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--teal);
  border-radius: inherit;
  transform: translateX(0);
  transition: transform 0.55s ease;
}

.clients-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: 36px;
  padding: 22px 28px;
  background: #f6f8f9;
  border-radius: 28px;
}

.clients-trust li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.clients-trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
}

.clients-trust-title {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clients-trust p:last-child {
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .clients-trust {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .section-clients {
    padding: 64px 0 56px;
  }

  .client-card {
    flex-basis: 132px;
    width: 132px;
    height: 96px;
  }

  .clients-trust {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* ===== CTA ===== */
.section-cta {
  padding: 0;
  background: #0e5359;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: #0e5359;
  color: #f3f6f7;
  text-align: left;
}

.cta-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44%;
}

.cta-visual picture,
.cta-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.cta-visual img {
  object-fit: cover;
  object-position: 42% 58%;
}

.cta-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    #0e5359 0%,
    rgba(14, 83, 89, 0.88) 18%,
    rgba(14, 83, 89, 0.28) 48%,
    rgba(14, 83, 89, 0.08) 100%
  );
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 52px 0;
}

.cta-banner .why-eyebrow {
  margin-bottom: 16px;
}

.cta-banner .why-eyebrow::before {
  width: 28px;
  background: rgba(243, 246, 247, 0.55);
}

.cta-banner h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.cta-banner .accent {
  color: #7ec8ce;
  font-weight: 700;
}

.cta-lead {
  max-width: 46ch;
  margin-bottom: 26px;
  color: rgba(243, 246, 247, 0.84);
  font-size: 15px;
  line-height: 1.6;
}

.cta-points {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.cta-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-right: 18px;
  margin-right: 18px;
  color: rgba(243, 246, 247, 0.94);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
}

.cta-points li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 18px;
}

.cta-points li > span:last-child {
  max-width: none;
}

.cta-points svg {
  flex-shrink: 0;
  color: #9fd3d7;
}

.cta-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 22px;
}

.cta-banner-btn {
  flex-shrink: 0;
  min-height: 48px;
  padding: 12px 24px;
  font-size: 13px;
}

.cta-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(243, 246, 247, 0.84);
  font-size: 13px;
  line-height: 1.35;
}

.cta-note svg {
  flex-shrink: 0;
  color: #9fd3d7;
}

.cta-note > span:last-child {
  max-width: 18ch;
}

/* ===== Footer ===== */
.footer {
  background: #f6f8f9;
  padding: 64px 0 0;
}

#contato {
  scroll-margin-top: 110px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr) minmax(0, 0.95fr) minmax(240px, 0.9fr);
  gap: 36px 32px;
  align-items: start;
  padding-bottom: 56px;
}

.footer-logo {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.footer-tagline {
  max-width: 260px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col-title {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.footer-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: var(--text-body);
  font-size: 14px;
}

.footer-list a::before {
  content: "›";
  color: var(--teal);
  font-size: 16px;
}

.footer-list a:hover,
.footer-contacts a:hover {
  color: var(--teal);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contacts a,
.footer-contacts p {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  color: var(--text-body);
  font-size: 14px;
}

.footer-contacts svg {
  flex-shrink: 0;
  color: var(--teal);
}

.footer-social-title {
  margin-top: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--teal-solid);
  color: var(--white);
}

.footer-cta {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 24px;
  background: #11161c;
}

.footer-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.footer-cta-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(17, 22, 28, 0.18) 0%, rgba(17, 22, 28, 0.78) 70%);
}

.footer-cta-kicker {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-cta-title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.footer-cta-btn {
  align-self: flex-start;
  min-height: 46px;
  padding: 10px 18px;
  font-size: 12px;
}

.footer-bottom {
  background: #123a3e;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  min-height: 64px;
  padding-block: 16px;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

/* Barra mobile injetada pelo GTM (Custom HTML tag_id 7 / .icon-bar).
   Remover a tag no container GTM-T697WR9V; este CSS só esconde o duplicado. */
.icon-bar {
  display: none !important;
}

/* ===== WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1100;
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-label {
  display: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: var(--white);
}

/* ===== Cookie ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 16px;
}

.cookie-card {
  background: var(--white);
  border: 1px solid var(--line);
  max-width: 480px;
  box-shadow: var(--shadow-card);
  border-radius: 16px;
  padding: 20px;
}

.cookie-card p {
  font-size: 14px;
  color: var(--text-body);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.cookie-decline {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .cookie-banner {
    bottom: 24px;
    left: 24px;
    right: auto;
    padding: 0;
  }
}

/* ===== Legal ===== */
.page-legal {
  background: var(--bg-soft);
}

.page-legal main {
  padding: calc(var(--header-h) + 48px) 0 var(--space-section);
}

.legal-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-soft);
  padding: 40px 28px;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 12px;
}

.legal-updated,
.legal-prose p,
.legal-prose li {
  color: var(--text-body);
}

.legal-prose {
  margin-top: 32px;
}

.legal-prose h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
}

.legal-prose p {
  margin-bottom: 16px;
}

.legal-prose ul,
.legal-prose ol {
  list-style: disc;
  padding-left: 1.3rem;
  margin: 0 0 16px;
}

.legal-prose a,
.legal-back a {
  color: var(--teal);
}

.legal-back {
  margin-top: 40px;
}

.legal-back a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-card {
    padding: 56px;
  }
}

/* ===== Inner pages ===== */
.page-inner .site-header-nav {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

.page-about {
  background: var(--white);
}

.page-service {
  background: var(--white);
}

.page-about .section-about {
  padding-top: 72px;
}

.page-about .section-cta {
  padding-top: 0;
}

.page-services .section-services {
  padding-top: 72px;
}

.page-services .section-cta {
  padding-top: 0;
}

.service-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: 620px;
  padding: var(--header-h) 0 0;
  background: #0b1216;
  color: #f3f6f7;
}

.service-hero > .container-wide {
  width: 100%;
}

.service-hero-bg,
.service-hero-bg picture,
.service-hero-bg img {
  position: absolute;
  inset: 0;
}

.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 16%;
  filter: brightness(0.7) saturate(0.8) contrast(1.04);
}

.page-about .service-hero-bg img {
  object-position: 72% 38%;
}

.page-service-industrial .service-hero-bg img {
  object-position: 38% 42%;
}

.page-service-residencial .service-hero-bg img {
  object-position: 72% 40%;
}

.page-service-projetos .service-hero-bg img {
  object-position: 62% 18%;
}

.service-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #0b1216 0%,
      #0b1216 28%,
      rgba(11, 18, 22, 0.78) 46%,
      rgba(11, 18, 22, 0.28) 66%,
      rgba(11, 18, 22, 0.12) 100%
    );
}

.service-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-right: auto;
  text-align: left;
}

.service-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(243, 246, 247, 0.58);
  font-size: 13px;
}

.service-breadcrumb > * {
  min-width: 0;
}

.service-breadcrumb a {
  color: rgba(243, 246, 247, 0.78);
}

.service-breadcrumb a:hover,
.service-breadcrumb a:focus-visible {
  color: var(--white);
}

.service-hero h1 {
  max-width: 13.2em;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.service-hero-lead {
  max-width: 44ch;
  margin-bottom: 28px;
  color: rgba(243, 246, 247, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.service-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(243, 246, 247, 0.92);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.service-hero-pills li > span:last-child {
  max-width: 13ch;
}

.service-hero-pills svg {
  flex-shrink: 0;
  color: rgba(243, 246, 247, 0.92);
}

.service-about {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr);
  gap: 48px 64px;
  align-items: start;
  padding-block: 72px 24px;
}

.service-about-copy h2,
.service-process h2,
.service-proof-why h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-about-copy p,
.service-notes li {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-about-copy h3 {
  margin: 28px 0 12px;
  color: var(--navy);
  font-size: 18px;
}

.service-apps {
  padding: 28px;
  background: #f6f8f9;
  border-radius: 24px;
}

.service-apps h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.service-apps li {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 0;
  border-bottom: 1px solid #e6eaee;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.service-apps li:last-child {
  border-bottom: 0;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 24px;
  margin: 28px 0 16px;
  padding: 22px 28px;
  background: #f6f8f9;
  border-radius: 28px;
}

.service-benefits:has(li:nth-child(3):last-child) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.service-benefit-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
}

.service-process {
  padding-block: 48px 24px;
}

.service-process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.service-step-num {
  display: block;
  margin-bottom: 10px;
  color: #8a929a;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.service-step-title {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.service-process li p:last-child {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.6;
}

.service-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: stretch;
  padding-block: 24px 48px;
}

.service-proof-media {
  overflow: hidden;
  min-height: 280px;
  border-radius: 24px;
  background: #11161c;
}

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

.service-proof-why {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 8px;
}

.service-proof-why li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.45;
}

.service-proof-why li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}

@media (max-width: 991.98px) {
  .footer-grid,
  .service-process ol,
  .service-benefits,
  .service-benefits:has(li:nth-child(3):last-child) {
    grid-template-columns: 1fr 1fr;
  }

  .service-about,
  .service-proof {
    grid-template-columns: 1fr;
  }

  .cta-copy {
    max-width: 560px;
    padding: 40px 0;
  }

  .cta-visual {
    width: 42%;
  }

  .service-hero {
    min-height: 540px;
    padding: var(--header-h) 0 0;
  }

  .service-hero-copy {
    max-width: none;
  }

  .service-hero h1 {
    max-width: 12em;
  }

  .service-hero-bg img {
    object-position: 86% 16%;
  }

  .page-about .service-hero-bg img {
    object-position: 68% 36%;
  }

  .page-service-industrial .service-hero-bg img {
    object-position: 46% 40%;
  }

  .page-service-residencial .service-hero-bg img {
    object-position: 78% 38%;
  }

  .page-service-projetos .service-hero-bg img {
    object-position: 70% 22%;
  }

  .service-hero-veil {
    background:
      linear-gradient(
        90deg,
        #0b1216 0%,
        rgba(11, 18, 22, 0.92) 46%,
        rgba(11, 18, 22, 0.62) 100%
      );
  }

  .service-about {
    padding-top: 48px;
  }

  .section-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-top: 88px;
    background: var(--white);
  }

  .hero-veil {
    display: none;
  }

  .hero-inner,
  .hero-stack {
    display: contents;
  }

  .hero-bg,
  .hero-bg img {
    position: relative;
    order: 2;
    width: 100%;
    height: 360px;
  }

  .hero-bg img {
    object-position: 88% 28%;
  }

  .hero-content {
    order: 1;
    width: 100%;
    max-width: none;
    padding: 36px 40px 8px;
  }

  .section-hero h1 {
    font-size: clamp(34px, 5vw, 48px);
  }

  .section-hero h1 .hero-line {
    white-space: normal;
  }

  .hero-lead,
  .hero-sub {
    max-width: 640px;
  }

  .hero-cta {
    width: min(348px, 100%);
    margin-bottom: 28px;
  }

  .hero-highlights {
    order: 3;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 16px;
    padding: 20px 40px 36px;
    background: var(--white);
  }

  .hero-highlights li {
    flex: 1 1 42%;
    padding-right: 12px;
  }

  .hero-highlights li + li {
    padding-left: 12px;
  }

  .service-process ol {
    grid-template-columns: 1fr;
  }

  .awards-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .awards-feature-media {
    min-height: 280px;
  }

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

  .services-slide-media {
    min-height: 280px;
    height: 280px;
  }

  .services-slide-copy {
    padding: 32px 28px 28px;
  }

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

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

  .services-arrow {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .service-hero-lead {
    max-width: none;
  }

  .service-benefits,
  .service-benefits:has(li:nth-child(3):last-child) {
    grid-template-columns: 1fr;
  }

  .service-breadcrumb > span:last-of-type {
    flex: 1 1 100%;
  }

  .hero-bg,
  .hero-bg img {
    height: 280px;
  }

  .hero-bg img {
    object-position: 92% 30%;
  }

  .hero-content {
    padding: 28px 20px 8px;
  }

  .section-hero h1 {
    font-size: clamp(26px, 7.5vw, 32px);
  }

  .hero-lead,
  .hero-sub {
    max-width: none;
  }

  .hero-cta {
    width: 100%;
    margin-bottom: 24px;
  }

  .hero-highlights {
    padding: 16px 20px 28px;
  }

  .hero-highlights li,
  .hero-highlights li + li {
    flex: 1 1 100%;
    padding: 10px 0;
    border-left: 0;
    border-top: 1px solid rgba(26, 29, 33, 0.08);
  }

  .hero-highlights li:first-child {
    border-top: 0;
  }

  .section-awards {
    padding: 64px 0 56px;
  }

  .section-awards h2 {
    max-width: none;
  }

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

  .awards-list {
    margin-top: 8px;
  }

  .awards-item:nth-child(-n + 2) {
    padding-top: 22px;
  }

  .awards-item:first-child {
    padding-top: 0;
  }

  .awards-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid #ece7de;
  }

  .awards-item:last-child {
    border-bottom: 0;
  }

  .services-head {
    margin-bottom: 24px;
  }

  .services-slide-copy {
    padding: 24px 20px 20px;
  }

  .services-slide-copy h3 {
    max-width: none;
  }

  .services-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }

  .services-cta {
    padding: 20px;
    border-radius: 20px;
  }

  .services-cta-btn {
    width: 100%;
  }

  .cta-banner {
    min-height: 0;
  }

  .cta-copy {
    max-width: none;
    padding: 32px 0;
  }

  .cta-banner h2 {
    font-size: 20px;
    letter-spacing: -0.04em;
  }

  .cta-banner h2 br {
    display: none;
  }

  .cta-lead {
    max-width: none;
    font-size: 14px;
  }

  .cta-points,
  .cta-actions {
    flex-wrap: wrap;
  }

  .cta-points {
    gap: 16px 28px;
  }

  .cta-points li {
    margin: 0;
    padding: 0;
  }

  .cta-points li + li {
    border: 0;
    padding: 0;
  }

  .cta-visual {
    display: none;
  }

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

  .footer-bottom-inner,
  .footer-brand {
    text-align: center;
    justify-content: center;
  }

  .footer-tagline,
  .footer-cta-btn {
    margin-inline: auto;
  }

  .whatsapp-float {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    min-height: 56px;
    border-radius: 0;
    gap: 14px;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    background: var(--teal-solid);
    box-shadow: none;
  }

  .whatsapp-float-label {
    display: inline;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  body:has(.whatsapp-float) {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  body:has(.whatsapp-float) .cookie-banner {
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}
