@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #030303;
  --ink: #0a0a0a;
  --paper: #f8f6f0;
  --paper-2: #efebe2;
  --gold: #c3a05a;
  --gold-2: #ddc581;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(195, 160, 90, 0.34);
  --dark-line: rgba(0, 0, 0, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

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

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

button {
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
}

.ppt-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(28px, 5vw, 72px);
  background: #050505;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ppt-logo img {
  width: 154px;
  transform: scale(1.3);
  transform-origin: left center;
  transition:
    width 0.25s ease,
    transform 0.25s ease;
}

.ppt-header.is-scrolled .ppt-logo img {
  transform: scale(1);
}

.ppt-nav {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
}

.ppt-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ppt-nav a:hover {
  color: var(--gold-2);
}

.menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  cursor: pointer;
}

.menu span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
}

.ppt-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}

.ppt-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 63svh;
  object-fit: cover;
  object-position: center top;
}

.ppt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.54) 40%, rgba(0, 0, 0, 0.08)), linear-gradient(180deg, rgba(0, 0, 0, 0.06) 46%, #050505 64%);
}

.ppt-hero-copy {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 48px));
  padding-top: clamp(118px, 13vw, 178px);
  margin-left: clamp(24px, 6vw, 92px);
}

.ppt-hero h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.2vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.82;
}

.ppt-hero-copy p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.8;
}

.ppt-link {
  display: inline-flex;
  margin-top: 28px;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ppt-link::after {
  content: "→";
  margin-left: 12px;
  color: var(--gold-2);
}

.ppt-hero-services {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(980px, calc(100% - 48px));
  margin: clamp(58px, 11vh, 116px) auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ppt-hero-services article {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: start;
  gap: 22px;
  min-height: 170px;
  padding: 28px clamp(22px, 2.7vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.58);
  backdrop-filter: blur(10px);
}

.ppt-hero-services article:last-child {
  border-right: 0;
}

.ppt-hero-services img {
  width: 68px;
  height: 56px;
  object-fit: contain;
}

.ppt-hero-services h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.ppt-hero-services p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.7;
}

.ppt-hero-statement {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: clamp(230px, 33svh, 360px);
  padding: 42px 24px 58px;
  text-align: center;
}

.ppt-hero-statement p {
  width: min(1180px, 100%);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.9vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.ppt-essence {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92svh;
  padding: clamp(96px, 14vh, 132px) 24px clamp(84px, 12vh, 118px);
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}

.ppt-section-number {
  position: absolute;
  top: clamp(42px, 7vh, 68px);
  left: clamp(28px, 6vw, 92px);
  margin: 0;
  color: #9a7b35;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ppt-essence h2 {
  width: 100%;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.ppt-essence h2::before {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin: 0 auto clamp(42px, 7vh, 64px);
  background: #b99647;
}

.ppt-essence p {
  width: 100%;
  margin: clamp(36px, 5vh, 52px) 0 0;
  color: #4f4a42;
  font-size: 1rem;
  line-height: 1.8;
}

.ppt-solutions {
  position: relative;
  height: auto;
  background: #050505;
}

.ppt-solutions > img {
  display: none;
}

.ppt-solutions::after {
  content: none;
}

.ppt-solution-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: auto;
}

.ppt-solution-list article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 27;
  padding: clamp(76px, 10vh, 118px) clamp(30px, 4vw, 64px) clamp(58px, 8vh, 86px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background-image: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.08) 42%, rgba(5, 5, 5, 0.62)), url("../imagens/solucoes-triplo.jpg");
  background-repeat: no-repeat;
  background-size: 300% 100%;
}

.ppt-solution-list article:last-child {
  border-right: 0;
}

.ppt-solution-list article:nth-child(1) {
  background-position:
    center,
    left center;
}

.ppt-solution-list article:nth-child(2) {
  background-position:
    center,
    center center;
}

.ppt-solution-list article:nth-child(3) {
  background-position:
    center,
    right center;
}

.ppt-solution-list span,
.security-list i,
.flow i {
  color: var(--gold-2);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.ppt-solution-list h3 {
  max-width: 8.5em;
  margin: auto 0 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.7vw, 3.35rem);
  font-weight: 500;
  line-height: 0.95;
  overflow-wrap: break-word;
}

.ppt-solution-list p,
.ppt-solution-list small {
  display: block;
  max-width: 27em;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  overflow-wrap: break-word;
}

.ppt-solution-list small {
  margin-top: 6px;
  font-size: 0.72rem;
}

.ppt-precision {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}

.ppt-precision > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ppt-precision::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 50%;
  background: rgba(5, 5, 5, 0.48);
}

.ppt-precision > div {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  min-height: 100svh;
  padding: clamp(72px, 10vh, 96px) 0 clamp(42px, 6vh, 62px);
  margin-left: clamp(24px, 6vw, 92px);
}

.ppt-precision span {
  display: block;
  margin-bottom: 0;
  color: var(--gold-2);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ppt-precision h2 {
  position: absolute;
  right: 0;
  bottom: clamp(132px, 20vh, 178px);
  left: 0;
  max-width: 980px;
  margin: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.6vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.94;
}

.ppt-pillars {
  position: relative;
  padding: clamp(92px, 13vw, 160px) clamp(24px, 6vw, 92px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(221, 197, 129, 0.1), transparent 36%),
    #050505;
  color: #fff;
}

.ppt-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 25%;
  opacity: 0.18;
}

.ppt-pillars-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 104px);
}

.ppt-pillars-heading span {
  color: var(--gold-2);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ppt-pillars-heading h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.ppt-pillars-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.ppt-pillars-grid article {
  display: flex;
  min-height: clamp(260px, 29vw, 420px);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.3vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.ppt-pillars-grid span {
  color: var(--gold-2);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.ppt-pillar-icon {
  align-self: center;
  display: grid;
  width: clamp(72px, 6.8vw, 112px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(221, 197, 129, 0.22), transparent 46%),
    rgba(221, 197, 129, 0.045);
  color: var(--gold-2);
  opacity: 0.95;
}

.ppt-pillar-icon svg {
  display: block;
  width: 68%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(221, 197, 129, 0.22));
}

.ppt-pillars-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.76rem, 2.56vw, 3.44rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-align: center;
  overflow-wrap: break-word;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--gold-2);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.kicker.dark {
  color: #987020;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

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

.btn.gold {
  color: #090909;
  background: linear-gradient(100deg, #987020, var(--gold-2));
}

.fleet,
.security,
.connect,
.sustainability,
.maturity,
.quote {
  padding: 120px clamp(24px, 7vw, 110px);
}

.heading h2,
.security h2,
.connect h2,
.sustainability h2,
.maturity h2,
.quote h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

.fleet {
  background: var(--paper);
  color: var(--ink);
}

.fleet-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  align-items: end;
  gap: 70px;
}

.fleet-heading > p {
  align-self: end;
  margin: 0;
  color: #554f47;
  line-height: 1.8;
}

.filters {
  display: flex;
  gap: 8px;
  margin-top: 60px;
  padding-bottom: 14px;
  overflow: auto;
  border-bottom: 1px solid var(--dark-line);
}

.filters button {
  flex: none;
  padding: 11px 16px;
  border: 1px solid rgba(9, 10, 11, 0.16);
  color: #5e5951;
  background: transparent;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 800;
}

.filters button.active,
.filters button:hover {
  color: var(--gold-2);
  background: var(--ink);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 23px;
  margin-top: 38px;
}

.vehicle {
  overflow: hidden;
  background: #ebe4d8;
}

.vehicle-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2;
}

.vehicle-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 52%, rgba(0, 0, 0, 0.65));
}

.vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle:hover img {
  transform: scale(1.035);
}

.vehicle-img span {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  left: 18px;
  color: var(--gold-2);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vehicle-copy {
  padding: 23px 24px 25px;
}

.vehicle h3,
.security-list h3 {
  margin: 0 0 9px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.vehicle p {
  margin: 0;
  color: #686158;
  font-size: 0.76rem;
  line-height: 1.65;
}

.note {
  margin-top: 27px;
  color: #746d64;
  font-size: 0.68rem;
}

.security {
  background: #050505;
}

.security-grid,
.connect-grid,
.sustainable-grid,
.maturity-grid,
.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(70px, 10vw, 150px);
}

.security-copy {
  position: sticky;
  top: 145px;
  align-self: start;
}

.security-copy > p:not(.kicker),
.connect-copy > p:not(.kicker),
.eco-copy > p:not(.kicker),
.quote-copy > p:not(.kicker) {
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.sustainability .eco-copy > p:not(.kicker) {
  color: #4f4a42;
}

.security-copy > a,
.quote-copy > a {
  display: block;
  margin: 8px 0;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 1.1rem;
}

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

.security-list article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 25px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.security-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  line-height: 1.65;
}

.connect {
  overflow: hidden;
  background: #0c0d0d;
}

.connect-grid {
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
}

.phone-stage {
  position: relative;
  min-height: 680px;
}

.glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(195, 160, 90, 0.42), rgba(23, 79, 57, 0.16) 42%, transparent 70%);
  filter: blur(24px);
}

.phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(330px, 72%);
  padding: 16px 12px;
  overflow: hidden;
  border: 1px solid rgba(221, 197, 129, 0.36);
  border-radius: 42px;
  background: #050506;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.phone > span {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 50%;
  width: 100px;
  height: 22px;
  border-radius: 0 0 15px 15px;
  background: #050506;
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  border-radius: 31px;
}

.badge {
  position: absolute;
  padding: 14px 17px;
  border: 1px solid var(--line);
  color: var(--gold-2);
  background: rgba(9, 10, 11, 0.82);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge.one {
  top: 180px;
  right: 0;
}

.badge.two {
  bottom: 150px;
  left: 0;
}

.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  margin: 40px 0 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow div {
  display: flex;
  flex-direction: column;
}

.flow strong {
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.flow small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
}

.flow > b {
  padding: 0 14px;
  color: #987020;
}

.connect ul {
  display: grid;
  gap: 12px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.connect li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.connect li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2b7753;
}

.sustainability {
  background: #fff;
  color: var(--ink);
}

.sustainable-grid,
.maturity-grid,
.quote-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.eco-img {
  position: relative;
  min-height: 590px;
}

.eco-img::before {
  content: "";
  position: absolute;
  inset: 34px -34px -34px 34px;
  border: 1px solid rgba(10, 10, 10, 0.16);
}

.eco-img > img {
  position: relative;
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.eco-img > div {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  color: var(--ink);
  background: var(--paper);
}

.eco-img strong {
  color: #174f39;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.eco-img span {
  max-width: 92px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eco-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(10, 10, 10, 0.16);
}

.eco-points article {
  padding: 25px 25px 0 0;
}

.eco-points article + article {
  padding-left: 25px;
  border-left: 1px solid rgba(10, 10, 10, 0.16);
}

.eco-points strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.eco-points span {
  display: block;
  margin-top: 8px;
  color: #5d574f;
  font-size: 0.7rem;
  line-height: 1.6;
}

.maturity {
  background: var(--paper);
  color: var(--ink);
}

.years {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  border-right: 1px solid var(--dark-line);
}

.years strong {
  color: #987020;
  font-family: var(--serif);
  font-size: clamp(7rem, 13vw, 13rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.years span {
  max-width: 190px;
  margin-top: 25px;
  color: #686158;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.maturity-copy > p:not(.kicker) {
  color: #5d574f;
  line-height: 1.8;
}

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

.tags span {
  padding: 10px 13px;
  border: 1px solid var(--dark-line);
  color: #4b463f;
  font-size: 0.68rem;
  font-weight: 800;
}

.quote {
  background: linear-gradient(135deg, #0a0b0c, #15120d);
}

.quote form {
  padding: clamp(26px, 4vw, 50px);
  color: var(--ink);
  background: #f2ecdf;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quote label {
  display: block;
  margin-bottom: 22px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote input,
.quote select,
.quote textarea {
  width: 100%;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid rgba(9, 10, 11, 0.25);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  resize: vertical;
}

.quote form .btn {
  width: 100%;
  border: 0;
}

.quote form small {
  display: block;
  margin-top: 12px;
  color: #777168;
  font-size: 0.63rem;
  text-align: center;
}

footer {
  padding: 70px clamp(24px, 7vw, 110px) 28px;
  border-top: 1px solid var(--line);
  background: #070809;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 50px;
}

.footer-brand img {
  width: 150px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 7px;
  color: var(--gold-2);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.71rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.63rem;
}

.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-hero {
  display: flex;
  min-height: clamp(420px, 58svh, 620px);
  align-items: flex-end;
  padding: calc(74px + clamp(80px, 10vw, 132px)) clamp(24px, 7vw, 110px) clamp(64px, 8vw, 104px);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72)),
    url("../imagens/home-hero-ppt.png") center / cover;
  color: #fff;
}

.legal-hero > div {
  width: min(980px, 100%);
}

.legal-hero span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-2);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

.legal-content {
  padding: clamp(74px, 10vw, 126px) clamp(24px, 7vw, 110px);
}

.legal-article {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-article > p {
  margin: 0 0 38px;
  color: #4f4a42;
  font-size: 1rem;
  line-height: 1.9;
}

.legal-article section {
  padding: 38px 0;
  border-top: 1px solid var(--dark-line);
}

.legal-article h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.legal-article p {
  margin: 0;
  color: #5d574f;
  line-height: 1.9;
}

.legal-article p + p {
  margin-top: 18px;
}

.float {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  padding: 14px 17px;
  background: #2b7753;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1080px) {
  .ppt-header {
    grid-template-columns: auto 1fr auto;
  }

  .ppt-nav {
    position: absolute;
    top: 74px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    padding: 32px;
    background: rgba(5, 5, 5, 0.98);
  }

  .ppt-nav.open {
    display: flex;
  }

  .ppt-nav a {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
  }

  .menu {
    display: block;
  }

  .ppt-hero-services,
  .fleet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .security-grid,
  .connect-grid,
  .sustainable-grid,
  .maturity-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .security-copy {
    position: static;
  }
}

@media (max-width: 980px) {
  .ppt-solutions {
    height: auto;
  }

  .ppt-solution-list {
    grid-template-columns: 1fr;
    height: auto;
  }

  .ppt-solution-list article {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 27;
    padding: 54px 32px 38px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .ppt-solution-list h3 {
    max-width: 100%;
    margin-top: auto;
  }

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

@media (max-width: 700px) {
  .ppt-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .ppt-logo img {
    width: 124px;
  }

  .ppt-nav {
    top: 68px;
  }

  .ppt-hero-bg {
    height: 58svh;
  }

  .ppt-hero-copy {
    width: calc(100% - 36px);
    padding-top: 116px;
    margin-left: 18px;
  }

  .ppt-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .ppt-hero-services {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    margin-top: 48px;
  }

  .ppt-hero-services article {
    grid-template-columns: 70px 1fr;
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ppt-hero-statement {
    min-height: 360px;
  }

  .ppt-pillars-heading {
    grid-template-columns: 1fr;
  }

  .ppt-pillars-grid article {
    min-height: 210px;
    padding: 24px;
  }

  .ppt-pillar-icon {
    width: 54px;
  }

  .ppt-pillars-grid h3 {
    font-size: clamp(1.06rem, 1.54vw, 2.06rem);
  }

  .ppt-solution-list,
  .fleet-heading,
  .fleet-grid,
  .footer-grid,
  .row,
  .eco-points,
  .flow {
    grid-template-columns: 1fr;
  }

  .ppt-solution-list article {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 27;
    padding: 46px 24px 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .ppt-solution-list h3 {
    margin-top: auto;
  }

  .fleet,
  .security,
  .connect,
  .sustainability,
  .maturity,
  .quote {
    padding: 90px 24px;
  }

  .phone-stage {
    min-height: 560px;
  }

  .flow > b {
    display: none;
  }

  .eco-points article + article {
    padding-left: 0;
    border-top: 1px solid rgba(10, 10, 10, 0.16);
    border-left: 0;
  }

  .eco-img,
  .eco-img > img {
    min-height: 420px;
    height: 420px;
  }

  .years {
    min-height: auto;
    padding-bottom: 50px;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .float {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .float::after {
    content: "↗";
    display: grid;
    place-items: center;
    height: 100%;
    font-size: 1.1rem;
  }
}
