:root {
  --navy-950: #030812;
  --navy-900: #07111f;
  --navy-850: #0b1728;
  --navy-800: #12183b;
  --mint-300: #c8edbe;
  --mint-400: #a9d69e;
  --mint-100: #e8f4e6;
  --gold-300: #cdb36b;
  --paper: #f7f5ef;
  --paper-2: #eeece5;
  --ink: #07111f;
  --muted: #566070;
  --line: rgba(10, 24, 42, 0.16);
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

#consultoria,
#assistencia-tecnica,
#video-apresentacao,
#curriculo,
#contato {
  scroll-margin-top: 108px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5.4vw;
  background: rgba(247, 245, 239, 0.96);
  border-bottom: 1px solid rgba(10, 24, 42, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: auto;
  height: auto;
  max-width: clamp(500px, 36vw, 640px);
  max-height: 98px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 550;
  color: var(--navy-950);
}

.primary-nav a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--mint-400);
  transition: transform 180ms ease;
}

.primary-nav a:not(.nav-cta):hover::after,
.primary-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(169, 214, 158, 0.82);
  border-radius: 6px;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta svg,
.button svg,
.contact-icon svg,
.card-mark svg,
.resume-icon svg,
.play-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta svg {
  fill: currentColor;
  stroke: none;
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-1px);
}

.nav-cta {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.32);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--navy-950);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 122px);
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--navy-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(5, 13, 26, 0.92) 32%, rgba(5, 13, 26, 0.32) 58%, rgba(3, 8, 18, 0.18) 100%),
    radial-gradient(circle at 18% 45%, rgba(30, 69, 99, 0.36), transparent 34%),
    linear-gradient(0deg, rgba(3, 8, 18, 0.7), rgba(3, 8, 18, 0.04) 42%);
}

.hero-content {
  width: min(620px, 90vw);
  margin-left: 6.5vw;
  padding: 92px 0 104px;
  color: white;
}

.hero-kicker,
.card-label {
  margin: 0;
  color: var(--mint-400);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
}

.hero h1,
.video-copy h2,
.resume-copy h2,
.footer-title h2,
.card-body h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 0.98;
}

.hero h1 {
  max-width: 540px;
  margin-top: 28px;
  font-size: 76px;
}

.hero-line,
.section-line,
.card-line {
  display: block;
  width: 48px;
  height: 2px;
  margin: 28px 0;
  background: var(--mint-400);
}

.hero-copy {
  max-width: 560px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.button-primary {
  min-width: 260px;
  color: var(--navy-950);
  background: var(--mint-300);
  border-color: var(--mint-300);
  box-shadow: 0 18px 34px rgba(169, 214, 158, 0.16);
}

.button-primary svg,
.footer-cta svg {
  fill: currentColor;
  stroke: none;
}

.button-outline {
  color: var(--mint-300);
  background: rgba(255, 255, 255, 0.02);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(200, 237, 190, 0.08);
}

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

.section-shell {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
}

.cards-section {
  padding: 42px 0 44px;
  background:
    linear-gradient(180deg, var(--paper) 0%, #fbfaf6 100%);
}

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

.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  padding: 42px 42px 36px;
  border: 1px solid rgba(7, 17, 31, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(205, 179, 107, 0.18), transparent 34%),
    radial-gradient(circle at 94% 20%, rgba(7, 17, 31, 0.05) 1px, transparent 1.3px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 239, 0.96));
  background-size: auto, 14px 14px, auto;
  box-shadow: var(--shadow);
}

.service-card::before,
.service-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.service-card::before {
  left: -1px;
  bottom: -1px;
  width: 92px;
  height: 92px;
  border-left: 3px solid var(--mint-400);
  border-bottom: 3px solid var(--mint-400);
  border-bottom-left-radius: 8px;
}

.service-card::after {
  inset: 14px;
  border: 1px solid rgba(205, 179, 107, 0.24);
  border-radius: 6px;
}

.card-mark {
  position: relative;
  width: 132px;
  height: 190px;
  align-self: center;
  display: grid;
  place-items: center;
  color: var(--mint-300);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(232, 244, 230, 0.98), rgba(224, 236, 224, 0.64));
  box-shadow: inset 0 0 0 1px rgba(169, 214, 158, 0.28);
}

.card-mark::before {
  position: absolute;
  width: 118px;
  height: 118px;
  content: "";
  border-radius: 999px;
  background: var(--navy-900);
  border: 2px solid rgba(205, 179, 107, 0.82);
  box-shadow: 0 18px 34px rgba(7, 17, 31, 0.22);
}

.card-mark svg {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  stroke-width: 1.65;
}

.card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0 8px;
}

.card-body h2 {
  margin-top: 22px;
  max-width: 360px;
  color: var(--navy-900);
  font-size: 44px;
}

.card-line {
  width: 38px;
  height: 2px;
  margin: 20px 0 18px;
  background: var(--gold-300);
}

.card-body p:not(.card-label) {
  max-width: 370px;
  margin: 0;
  color: #243040;
  font-size: 16px;
}

.text-link {
  margin-top: auto;
  padding-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--navy-900);
  font-weight: 650;
}

.text-link span {
  color: var(--mint-400);
  font-size: 24px;
  line-height: 1;
}

.text-link::after {
  position: absolute;
  bottom: 24px;
  width: 76px;
  height: 1px;
  content: "";
  background: var(--mint-400);
}

.video-section {
  padding: 76px 0 78px;
  color: white;
  background:
    radial-gradient(circle at 16% 44%, rgba(35, 76, 104, 0.32), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 54%, #03060c);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.55fr);
  gap: 76px;
  align-items: center;
  max-width: 100%;
}

.video-copy h2 {
  font-size: 48px;
}

.video-copy p {
  max-width: 360px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.video-copy p:last-child {
  margin-bottom: 0;
}

.video-card {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(200, 237, 190, 0.92);
  border-radius: 8px;
  background: var(--navy-950);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.video-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 36%, rgba(232, 244, 230, 0.16), transparent 16%),
    linear-gradient(90deg, rgba(3, 8, 18, 0.96), rgba(3, 8, 18, 0.34) 58%, rgba(3, 8, 18, 0.88)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 132px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 98px),
    linear-gradient(135deg, #0d1118, #171b20 52%, #070b10);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 237, 190, 0.06), transparent 24%),
    linear-gradient(90deg, rgba(3, 8, 18, 0.48), rgba(3, 8, 18, 0.18));
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  color: var(--mint-300);
  border: 3px solid rgba(232, 244, 230, 0.88);
  border-radius: 999px;
  background: rgba(3, 8, 18, 0.2);
  backdrop-filter: blur(3px);
}

.play-button svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
  stroke: none;
  margin-left: 4px;
}

.resume-band {
  padding: 26px 0;
  background: #f3f1eb;
}

.resume-inner {
  min-height: 116px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 20px 32px;
  border: 1px solid rgba(7, 17, 31, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.resume-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--navy-900);
  border-radius: 999px;
  background: var(--mint-100);
}

.resume-icon svg {
  width: 40px;
  height: 40px;
}

.resume-copy h2 {
  color: var(--navy-900);
  font-size: 30px;
}

.resume-copy p {
  margin: 6px 0 0;
  color: #394456;
}

.site-footer {
  color: white;
  background:
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #040812);
  border-bottom: 8px solid var(--mint-400);
}

.footer-grid {
  min-height: 142px;
  display: grid;
  grid-template-columns: 0.8fr 1.7fr auto;
  gap: 36px;
  align-items: center;
  padding: 28px 0;
}

.footer-title h2 {
  font-size: 38px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.contact-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--mint-300);
  border: 1px solid rgba(169, 214, 158, 0.58);
  border-radius: 999px;
}

.contact-item strong,
.contact-item small {
  display: block;
}

.contact-item strong {
  margin-bottom: 2px;
  font-size: 15px;
}

.contact-item small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.footer-cta {
  min-width: 260px;
}

.page-main {
  background: var(--paper);
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 18% 40%, rgba(35, 76, 104, 0.28), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #05070d);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: 72% center;
  opacity: 0.74;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(5, 13, 26, 0.92) 34%, rgba(5, 13, 26, 0.48) 62%, rgba(3, 8, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(3, 8, 18, 0.72), rgba(3, 8, 18, 0.02) 50%);
}

.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.74;
}

.page-hero-content {
  width: min(650px, calc(100% - 72px));
  margin-left: 6.5vw;
  padding: 96px 0 104px;
}

.page-kicker {
  margin: 0 0 24px;
  color: var(--mint-400);
  font-size: 14px;
  font-weight: 750;
}

.page-hero h1,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 0.98;
}

.page-hero h1 {
  max-width: 620px;
  font-size: 68px;
}

.page-hero-subtitle {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
}

.page-hero-note {
  margin: 16px 0 34px;
  color: var(--mint-300);
  font-size: 15px;
  font-weight: 650;
}

.page-body {
  padding: 54px 0 66px;
  background:
    radial-gradient(circle at 95% 8%, rgba(205, 179, 107, 0.1), transparent 24%),
    linear-gradient(180deg, #fbfaf6, var(--paper));
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr);
  gap: 62px;
  align-items: start;
}

.article-content {
  padding-right: 4px;
}

.article-content p {
  margin: 0 0 22px;
  color: #1f2942;
  font-size: 17px;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.side-cards {
  position: sticky;
  top: 148px;
  display: grid;
  gap: 16px;
  padding-left: 38px;
  border-left: 1px solid rgba(7, 17, 31, 0.12);
}

.side-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 36px rgba(7, 17, 31, 0.06);
}

.side-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #235c45;
  border: 0;
  border-radius: 999px;
  background: var(--mint-100);
}

.side-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.side-card h2 {
  margin: 0 0 6px;
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.25;
}

.side-card p {
  margin: 0;
  color: #465266;
  font-size: 15px;
  line-height: 1.55;
}

.final-cta {
  padding: 0 0 32px;
  color: white;
  background: #fbfaf6;
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.82fr);
  gap: 32px;
  align-items: center;
  padding: 38px 72px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 45%, rgba(35, 76, 104, 0.26), transparent 34%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 62%, #03060c);
  box-shadow: 0 18px 58px rgba(7, 17, 31, 0.18);
}

.final-cta-inner::before {
  position: absolute;
  left: 54px;
  top: 34px;
  bottom: 34px;
  width: 2px;
  content: "";
  background: var(--mint-400);
}

.final-cta-inner::after {
  position: absolute;
  right: -24px;
  bottom: -32px;
  width: 300px;
  height: 180px;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 30%, rgba(200, 237, 190, 0.95) 30% 62%, transparent 62%),
    linear-gradient(45deg, transparent 0 46%, rgba(18, 24, 59, 0.95) 46% 58%, transparent 58%);
  opacity: 0.92;
  pointer-events: none;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  padding-left: 36px;
  font-size: 44px;
}

.final-whatsapp {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: center;
  justify-self: start;
  color: var(--mint-400);
}

.final-whatsapp svg {
  grid-row: span 3;
  width: 64px;
  height: 64px;
  fill: currentColor;
}

.final-whatsapp span,
.final-whatsapp small {
  color: rgba(255, 255, 255, 0.84);
}

.final-whatsapp span {
  font-size: 18px;
}

.final-whatsapp strong {
  color: var(--mint-400);
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
}

.final-whatsapp small {
  font-size: 14px;
}

.final-specialties {
  width: min(1180px, calc(100% - 72px));
  margin: 24px auto 0;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  letter-spacing: 0.18em;
}

.final-specialties span {
  color: var(--mint-400);
  margin: 0 18px;
}

.page-footer {
  background: var(--navy-950);
}

.page-footer .footer-grid {
  min-height: 112px;
}

.primary-nav a[aria-current="page"] {
  color: #235c45;
}

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

.inner-page .nav-cta {
  color: white;
  border-color: var(--navy-900);
  background: var(--navy-900);
}

@media (max-width: 1060px) {
  .site-header {
    padding: 16px 28px;
  }

  .brand img {
    width: auto;
    max-width: 430px;
    max-height: 78px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .service-card {
    grid-template-columns: 116px 1fr;
    padding: 34px 28px;
  }

  .card-mark {
    width: 108px;
    height: 168px;
  }

  .card-mark::before {
    width: 96px;
    height: 96px;
  }

  .card-mark svg {
    width: 56px;
    height: 56px;
  }

  .card-body h2 {
    font-size: 36px;
  }

  .video-grid {
    gap: 42px;
  }
}

@media (max-width: 980px) {
  #consultoria,
  #assistencia-tecnica,
  #video-apresentacao,
  #curriculo,
  #contato {
    scroll-margin-top: 88px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    min-height: 90px;
    padding: 12px 14px;
  }

  .brand img {
    width: auto;
    max-width: min(360px, calc(100vw - 82px));
    max-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 100px;
    display: grid;
    gap: 0;
    padding: 14px;
    color: white;
    background: rgba(3, 8, 18, 0.97);
    border: 1px solid rgba(200, 237, 190, 0.28);
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a:not(.nav-cta) {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;
    color: var(--navy-950);
    background: var(--mint-300);
  }

  .hero {
    min-height: calc(100svh - 90px);
    align-items: end;
  }

  .hero-media img {
    object-position: 74% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 8, 18, 0.06) 0%, rgba(3, 8, 18, 0.28) 34%, rgba(3, 8, 18, 0.94) 77%, rgba(3, 8, 18, 0.98) 100%),
      linear-gradient(90deg, rgba(3, 8, 18, 0.32), rgba(3, 8, 18, 0.1));
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 0 22px 30px;
  }

  .hero-kicker {
    max-width: 330px;
    font-size: 12px;
  }

  .hero h1 {
    max-width: 340px;
    margin-top: 18px;
    font-size: 48px;
  }

  .hero-line {
    margin: 18px 0;
  }

  .hero-copy {
    max-width: 350px;
    margin-bottom: 24px;
    font-size: 16px;
  }

  .button-primary {
    min-width: 232px;
  }

  .section-shell {
    width: min(100% - 32px, 720px);
    max-width: 100%;
  }

  .cards-section {
    padding: 22px 0 24px;
  }

  .cards-grid,
  .video-grid,
  .footer-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 430px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 28px 34px;
    color: var(--ink);
    background:
      radial-gradient(circle at 88% 16%, rgba(205, 179, 107, 0.18), transparent 34%),
      radial-gradient(circle at 94% 20%, rgba(7, 17, 31, 0.05) 1px, transparent 1.3px),
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 239, 0.96));
    background-size: auto, 14px 14px, auto;
    border-color: rgba(7, 17, 31, 0.14);
    box-shadow: var(--shadow);
  }

  .card-mark {
    width: 82px;
    height: 82px;
    align-self: start;
    border-radius: 8px;
    color: var(--mint-300);
    background: var(--navy-900);
    box-shadow: 0 14px 28px rgba(7, 17, 31, 0.16);
  }

  .card-mark::before {
    display: none;
  }

  .card-mark svg {
    width: 46px;
    height: 46px;
  }

  .card-body {
    padding: 0;
  }

  .card-label {
    display: none;
  }

  .card-body h2 {
    max-width: 240px;
    margin-top: 0;
    color: var(--navy-900);
    font-size: 36px;
  }

  .card-body p:not(.card-label) {
    color: #243040;
  }

  .text-link {
    color: var(--navy-900);
  }

  .text-link::after {
    display: none;
  }

  .video-section {
    padding: 52px 0 56px;
    overflow-x: hidden;
  }

  .video-grid {
    width: min(100% - 32px, 720px);
    max-width: 100%;
    gap: 32px;
  }

  .video-copy h2 {
    max-width: 340px;
    font-size: 42px;
  }

  .video-copy p {
    font-size: 16px;
  }

  .video-card {
    width: 100%;
    max-width: 100%;
    min-height: 236px;
  }

  .play-button {
    width: 82px;
    height: 82px;
  }

  .resume-inner {
    grid-template-columns: auto 1fr;
    padding: 22px;
  }

  .resume-copy h2 {
    font-size: 26px;
    line-height: 1.1;
  }

  .resume-copy p {
    font-size: 15px;
  }

  .resume-inner .button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .site-footer {
    border-bottom-width: 6px;
  }

  .footer-grid {
    gap: 24px;
    padding: 34px 0 38px;
  }

  .footer-title h2 {
    font-size: 34px;
  }

  .footer-cta {
    width: 100%;
  }

  .page-hero {
    min-height: calc(100svh - 90px);
    align-items: end;
  }

  .page-hero::before {
    background-position: 64% center;
  }

  .page-hero::after {
    background:
      linear-gradient(180deg, rgba(3, 8, 18, 0.1) 0%, rgba(3, 8, 18, 0.34) 34%, rgba(3, 8, 18, 0.94) 76%, rgba(3, 8, 18, 0.99) 100%),
      linear-gradient(90deg, rgba(3, 8, 18, 0.36), rgba(3, 8, 18, 0.1));
  }

  .page-hero-content {
    width: min(100% - 32px, 720px);
    margin: 0 auto;
    padding: 0 0 34px;
  }

  .page-hero h1 {
    max-width: 360px;
    font-size: 48px;
  }

  .page-hero-subtitle {
    max-width: 360px;
    margin-top: 22px;
    font-size: 17px;
  }

  .page-hero-note {
    max-width: 360px;
    margin-bottom: 28px;
    font-size: 14px;
  }

  .page-body {
    padding: 44px 0 54px;
  }

  .page-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .article-content {
    padding-right: 0;
  }

  .article-content p {
    font-size: 16px;
  }

  .side-cards {
    position: static;
    padding-left: 0;
    border-left: 0;
  }

  .final-cta {
    padding: 0 0 28px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 28px;
  }

  .final-cta-inner::before {
    left: 28px;
    top: 28px;
    bottom: auto;
    height: 54px;
  }

  .final-cta h2 {
    padding-left: 24px;
    font-size: 38px;
  }

  .final-whatsapp {
    grid-template-columns: auto 1fr;
  }

  .final-whatsapp strong {
    font-size: 28px;
  }

  .final-specialties {
    width: min(100% - 32px, 720px);
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0;
  }

  .final-specialties span {
    margin: 0 10px;
  }
}

@media (max-width: 430px) {
  .site-header {
    gap: 12px;
    padding: 12px 12px;
  }

  .brand img {
    width: auto;
    max-width: min(340px, calc(100vw - 76px));
  }

  .hero-content {
    padding-bottom: 24px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .button,
  .nav-cta {
    min-height: 52px;
    padding: 0 18px;
  }

  .service-card {
    min-height: 410px;
  }

  .video-copy h2 {
    font-size: 38px;
  }

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

  .resume-icon {
    width: 62px;
    height: 62px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero-subtitle {
    font-size: 16px;
  }

  .article-content p {
    text-align: left;
  }

  .side-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .final-cta-inner {
    padding: 30px 22px;
  }

  .final-cta-inner::before {
    left: 22px;
  }

  .final-whatsapp {
    column-gap: 14px;
  }

  .final-whatsapp svg {
    width: 52px;
    height: 52px;
  }

  .final-whatsapp strong {
    font-size: 25px;
  }
}



/* ===== Correções v9 — Netlify / páginas internas ===== */

/* Garante que imagens e blocos responsivos não criem overflow lateral */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

img,
video,
iframe {
  max-width: 100%;
}

/* Reforço para carregar e posicionar corretamente as imagens das páginas internas */
.page-hero {
  overflow: hidden;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  opacity: 0.74;
  display: block;
}

/* A faixa final estava cortando/encobrindo o telefone em alguns tamanhos de tela */
.final-cta-inner {
  overflow: visible;
  min-height: 170px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, max-content);
  padding-right: clamp(34px, 7vw, 96px);
}

.final-cta-inner::after {
  z-index: 0;
  opacity: 0.42;
}

.final-cta-inner > * {
  position: relative;
  z-index: 2;
}

.final-whatsapp {
  justify-self: end;
  max-width: 100%;
  min-width: 0;
  padding-right: 8px;
}

.final-whatsapp strong {
  white-space: nowrap;
  font-size: clamp(30px, 2.6vw, 38px);
  letter-spacing: 0.01em;
}

.final-whatsapp span,
.final-whatsapp small,
.final-whatsapp strong {
  overflow: visible;
}

@media (max-width: 980px) {
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 32px;
  }

  .final-whatsapp {
    justify-self: start;
    width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 520px) {
  .final-cta-inner {
    padding: 30px 22px;
    overflow: hidden;
  }

  .final-whatsapp {
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 14px;
  }

  .final-whatsapp svg {
    width: 52px;
    height: 52px;
  }

  .final-whatsapp strong {
    font-size: clamp(24px, 7vw, 30px);
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.05;
  }
}

/* V15: heroes internas com IMG real; sem alteração da logo */
.page-hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background: #061126 !important;
}

.page-hero::before {
  content: none !important;
  display: none !important;
}

.page-hero-image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 72% center !important;
  display: block !important;
  opacity: 0.86 !important;
  visibility: visible !important;
}

.page-hero-overlay,
.page-hero::after {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  content: "" !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(5, 13, 26, 0.91) 34%, rgba(5, 13, 26, 0.48) 62%, rgba(3, 8, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 8, 18, 0.68), rgba(3, 8, 18, 0.02) 54%) !important;
}

.page-hero-content {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 760px) {
  .page-hero-image {
    object-position: 64% center !important;
  }

  .page-hero-overlay,
  .page-hero::after {
    background:
      linear-gradient(180deg, rgba(3, 8, 18, 0.08) 0%, rgba(3, 8, 18, 0.34) 34%, rgba(3, 8, 18, 0.94) 76%, rgba(3, 8, 18, 0.99) 100%),
      linear-gradient(90deg, rgba(3, 8, 18, 0.36), rgba(3, 8, 18, 0.1)) !important;
  }
}

/* V15: faixa final sem cortar o telefone */
.final-cta {
  position: relative !important;
  overflow: visible !important;
}

.final-cta::before,
.final-cta::after {
  pointer-events: none !important;
  z-index: 0 !important;
}

.final-cta-inner,
.final-whatsapp,
.final-specialties {
  position: relative !important;
  z-index: 2 !important;
}

.final-whatsapp {
  min-width: min(100%, 360px) !important;
  overflow: visible !important;
}

.final-whatsapp strong {
  display: block !important;
  white-space: nowrap !important;
}
