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

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

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

:root {
  --navy: #172758;
  --navy-deep: #0d183c;
  --navy-soft: #26396f;
  --orange: #f47a20;
  --orange-dark: #dc6412;
  --cream: #f6f3ec;
  --paper: #fffdf9;
  --ink: #16203a;
  --muted: #697087;
  --line: #dfe2e9;
  --white: #ffffff;
  --green: #25d366;
  --shadow: 0 24px 70px rgb(13 24 60 / 14%);
  --radius: 24px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-deep);
  border-radius: 8px;
  transform: translateY(-140%);
}

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

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

.topbar {
  position: relative;
  z-index: 30;
  color: rgb(255 255 255 / 78%);
  background: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.topbar__divider {
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
}

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgb(13 24 60 / 94%);
  border-bottom: 1px solid rgb(255 255 255 / 9%);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease;
}

.header.scrolled {
  box-shadow: 0 8px 30px rgb(13 24 60 / 9%);
}

.header__inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand__logo {
  width: auto;
  height: 70px;
  object-fit: contain;
}

.brand__monogram {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50% 50% 50% 12px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand__copy {
  display: grid;
  gap: 5px;
}

.brand__copy strong {
  color: var(--navy-deep);
  font-size: 0.92rem;
  letter-spacing: 0.09em;
}

.brand__copy small {
  color: var(--orange-dark);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav > a:not(.button) {
  position: relative;
}

.nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav > a:hover::after,
.nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgb(244 122 32 / 22%);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 14px 30px rgb(244 122 32 / 30%);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 10px 19px;
}

.button--wide {
  width: 100%;
  border-radius: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 10px;
  color: var(--white);
  border-bottom: 1px solid rgb(255 255 255 / 35%);
  font-size: 0.82rem;
  font-weight: 700;
  transition: border-color 0.2s ease, gap 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 13px;
  border-color: var(--orange);
}

.text-link--dark {
  color: var(--navy);
  border-color: rgb(23 39 88 / 24%);
}

.hero {
  position: relative;
  min-height: calc(100vh - 111px);
  min-height: 720px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    linear-gradient(100deg, rgb(13 24 60 / 6%), rgb(13 24 60 / 4%)),
    url("assets/images/hero-salles-amorim-marca.webp") center / cover no-repeat;
  transform: scale(1.015);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgb(9 18 49 / 98%) 0%, rgb(9 18 49 / 90%) 36%, rgb(9 18 49 / 32%) 67%, rgb(9 18 49 / 16%) 100%),
    linear-gradient(0deg, rgb(9 18 49 / 72%) 0%, transparent 38%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 5%;
  width: 1px;
  height: 100%;
  background: rgb(255 255 255 / 7%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 170px;
}

.hero__content {
  width: min(680px, 62%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: rgb(255 255 255 / 72%);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  display: inline-block;
  background: var(--orange);
}

.eyebrow--dark {
  color: var(--orange-dark);
}

.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: block;
  color: #ff9a50;
  font-style: normal;
}

.hero__lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.hero__proof {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgb(255 255 255 / 12%);
  background: rgb(10 20 52 / 74%);
  backdrop-filter: blur(18px);
}

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

.proof-item {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 36px;
  border-left: 1px solid rgb(255 255 255 / 10%);
}

.proof-item:last-child {
  border-right: 1px solid rgb(255 255 255 / 10%);
}

.proof-item__icon {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid rgb(244 122 32 / 50%);
  border-radius: 50%;
  font-size: 1rem;
}

.proof-item p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.proof-item strong {
  font-size: 0.82rem;
}

.proof-item small {
  color: rgb(255 255 255 / 57%);
  font-size: 0.69rem;
}

.section {
  padding-block: 120px;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading h2,
.advantages h2,
.about h2,
.quote h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 72px;
}

.section-heading--split p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.solutions {
  background: var(--paper);
}

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

.solution-card {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
  border-radius: var(--radius);
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card::before,
.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.solution-card::before {
  background: var(--card-bg, linear-gradient(145deg, #31477d, #111d47));
  transition: transform 0.5s ease;
}

.solution-card::after {
  background:
    linear-gradient(180deg, rgb(9 17 45 / 18%) 0%, rgb(9 17 45 / 22%) 38%, rgb(9 17 45 / 96%) 84%),
    linear-gradient(90deg, rgb(9 17 45 / 18%) 0%, transparent 66%);
}

.solution-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.solution-card:hover::before {
  transform: scale(1.04);
}

.solution-card--corporate { --card-bg: url("assets/images/card-marca-corporativo.webp") center 18% / cover no-repeat; }
.solution-card--hospitality { --card-bg: url("assets/images/card-hotelaria.webp") center 24% / cover no-repeat; }
.solution-card--gastronomy { --card-bg: url("assets/images/card-marca-gastronomia.webp") center 20% / cover no-repeat; }
.solution-card--health { --card-bg: url("assets/images/card-marca-saude.webp") center 16% / cover no-repeat; }
.solution-card--school { --card-bg: url("assets/images/card-marca-escolar.webp") center 18% / cover no-repeat; }
.solution-card--events { --card-bg: url("assets/images/card-marca-eventos.webp") center 14% / cover no-repeat; }

.solution-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solution-card > div:last-child {
  position: relative;
  z-index: 2;
}

.solution-card__model {
  display: none;
}

.solution-card__model--wide {
  right: -10px;
  height: 86%;
}

.solution-card:hover .solution-card__model {
  transform: translateY(-3px) scale(1.025);
}

.solution-card__number {
  color: rgb(255 255 255 / 62%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.solution-card__arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: 50%;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.solution-card:hover .solution-card__arrow {
  color: var(--navy-deep);
  background: var(--orange);
  border-color: var(--orange);
}

.solution-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.solution-card p {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.79rem;
  line-height: 1.65;
}

.brand-band {
  padding-block: 24px;
  overflow: hidden;
  color: var(--navy-deep);
  background: var(--orange);
}

.brand-band__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 2vw;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.brand-band span {
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-band i {
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-30%); }
}

.advantages {
  background: var(--cream);
}

.advantages__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 8vw;
}

.advantages__visual {
  position: relative;
}

.advantages__image {
  min-height: 680px;
  background:
    linear-gradient(180deg, transparent 45%, rgb(13 24 60 / 36%)),
    url("assets/images/detail-uniformes-marca.webp") center 30% / cover no-repeat,
    linear-gradient(145deg, #a4adbd, #33466f);
  border-radius: 200px 200px 28px 28px;
  box-shadow: var(--shadow);
}

.clients {
  padding-block: 82px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clients__inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1.44fr);
  align-items: center;
  gap: 72px;
}

.clients__heading .eyebrow {
  margin-bottom: 15px;
}

.clients__heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.clients__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.clients__logos > div {
  min-width: 0;
  min-height: 105px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: #fbfbfc;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clients__logos img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: none;
  opacity: 0.88;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.clients__logos > div:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.advantages__badge {
  position: absolute;
  right: -34px;
  bottom: 58px;
  width: 174px;
  height: 174px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--orange);
  border: 8px solid var(--cream);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-8deg);
}

.advantages__badge span {
  font-size: 0.7rem;
}

.advantages__badge strong {
  max-width: 110px;
  font-size: 1rem;
  line-height: 1.15;
}

.advantages__intro {
  margin: 28px 0 36px;
  color: var(--muted);
}

.advantage-list {
  border-top: 1px solid #d8d6d0;
}

.advantage-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding-block: 22px;
  border-bottom: 1px solid #d8d6d0;
}

.advantage-list article > span {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 700;
}

.advantage-list h3 {
  margin: 0 0 5px;
  color: var(--navy-deep);
  font-size: 1rem;
}

.advantage-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.process {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgb(70 93 154 / 36%), transparent 26%),
    var(--navy-deep);
}

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

.section-heading--center {
  max-width: 750px;
  margin-right: auto;
  margin-bottom: 72px;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:last-child {
  margin: 20px 0 0;
  color: rgb(255 255 255 / 62%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  min-width: 0;
  padding-right: 30px;
}

.process-step__number {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
}

.process-step__line {
  position: relative;
  height: 1px;
  margin: 18px 0 26px;
  background: rgb(255 255 255 / 20%);
}

.process-step__line::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
}

.process-step h3 {
  max-width: 200px;
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.process-step p {
  margin: 0;
  color: rgb(255 255 255 / 55%);
  font-size: 0.77rem;
}

.about {
  background: var(--paper);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 9vw;
}

.about__content > p:not(.eyebrow) {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--muted);
}

.about__content .text-link {
  margin-top: 25px;
}

.about__statement {
  position: relative;
  padding: 58px;
  color: var(--white);
  background: var(--navy);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.about__quote {
  position: absolute;
  top: 24px;
  right: 36px;
  color: rgb(255 255 255 / 10%);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
}

.about__statement blockquote {
  position: relative;
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.4rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.about__signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.about__signature > span {
  width: 44px;
  height: 2px;
  background: var(--orange);
}

.about__signature p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.about__signature strong {
  font-size: 0.78rem;
}

.about__signature small {
  color: rgb(255 255 255 / 52%);
  font-size: 0.66rem;
}

.quote {
  padding-block: 110px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgb(23 39 88 / 98%), rgb(13 24 60 / 98%)),
    var(--navy);
}

.quote__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 9vw;
}

.quote h2 {
  color: var(--white);
}

.quote__content > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgb(255 255 255 / 63%);
}

.quote__contact {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 42px;
}

.quote__contact > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy-deep);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
}

.quote__contact p {
  display: grid;
  margin: 0;
}

.quote__contact small {
  color: rgb(255 255 255 / 55%);
  font-size: 0.66rem;
}

.quote__contact strong {
  font-size: 1rem;
}

.quote-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgb(4 10 30 / 30%);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field > span {
  color: var(--navy-deep);
  font-size: 0.68rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--ink);
  background: #f7f7f8;
  border: 1px solid #e4e5e9;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #979cab;
  font-size: 0.75rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgb(244 122 32 / 12%);
}

.form-note {
  margin: 14px 0 0;
  color: #8c91a0;
  font-size: 0.62rem;
  text-align: center;
}

.footer {
  color: rgb(255 255 255 / 65%);
  background: #080f28;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.7fr;
  gap: 55px;
  padding-block: 72px;
}

.brand--light .brand__monogram {
  color: var(--navy-deep);
  background: var(--orange);
}

.footer .brand__logo {
  height: 76px;
}

.brand--light .brand__copy strong {
  color: var(--white);
}

.footer__brand > p {
  max-width: 360px;
  margin: 22px 0 0;
  font-size: 0.77rem;
}

.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.74rem;
}

.footer__column h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 0.75rem;
}

.footer__column a {
  transition: color 0.2s ease;
}

.footer__column a:hover {
  color: var(--orange);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: 0.65rem;
}

.footer__bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgb(10 25 20 / 24%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow: 0 16px 34px rgb(10 25 20 / 34%);
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 29px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1020px) {
  .nav { gap: 18px; }
  .nav > a:not(.button) { display: none; }
  .hero__content { width: min(720px, 78%); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages__grid { gap: 7vw; }
  .advantages__image { min-height: 600px; }
  .about__grid { gap: 6vw; }
  .footer__main { grid-template-columns: 1.3fr 0.7fr 0.9fr; }
  .footer__column:last-child { display: none; }
  .clients__inner { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 800px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .topbar__inner { gap: 10px; font-size: 0.58rem; }
  .header__inner { min-height: 72px; }
  .brand__logo { height: 54px; }
  .brand__monogram { width: 39px; height: 39px; }
  .brand__copy strong { font-size: 0.78rem; }
  .brand__copy small { font-size: 0.52rem; }
  .menu-toggle { display: block; order: 3; }
  .nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 20px 24px 26px;
    color: var(--white);
    background: var(--navy-deep);
    border-top: 1px solid rgb(255 255 255 / 10%);
    box-shadow: 0 24px 30px rgb(13 24 60 / 12%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav > a:not(.button) { display: block; padding: 13px 4px; border-bottom: 1px solid rgb(255 255 255 / 10%); }
  .nav .button { margin-top: 18px; }
  .menu-open .nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .hero { min-height: 760px; }
  .hero__media { background-position: 62% center; opacity: 0.68; }
  .hero__shade { background: linear-gradient(90deg, rgb(9 18 49 / 98%) 0%, rgb(9 18 49 / 72%) 80%, rgb(9 18 49 / 58%)); }
  .hero__inner { align-items: flex-start; padding-top: 82px; padding-bottom: 255px; }
  .hero__content { width: 100%; }
  .hero h1 { max-width: 620px; font-size: clamp(2.65rem, 10vw, 4.7rem); }
  .hero__lead { max-width: 570px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { min-height: 76px; padding: 13px 0; border-left: 0; border-bottom: 1px solid rgb(255 255 255 / 9%); }
  .proof-item:last-child { border-right: 0; border-bottom: 0; }
  .proof-item__icon { width: 36px; height: 36px; flex-basis: 36px; }
  .section { padding-block: 84px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 18px; }
  .advantages__grid,
  .about__grid,
  .quote__grid { grid-template-columns: 1fr; }
  .advantages__visual { width: min(88%, 520px); margin-inline: auto; }
  .advantages__image { min-height: 580px; }
  .advantages__badge { right: -22px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 52px; }
  .about__grid { gap: 55px; }
  .quote__grid { gap: 50px; }
  .footer__main { grid-template-columns: 1.4fr 0.8fr; }
  .footer__column:nth-child(3) { grid-column: 1 / -1; }
  .clients__logos { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 560px) {
  .topbar__inner span:first-child,
  .topbar__divider { display: none; }
  .hero { min-height: 820px; }
  .hero__inner { padding-top: 62px; padding-bottom: 250px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 10px; margin-top: 30px; }
  .hero .button { width: 100%; }
  .eyebrow { margin-bottom: 16px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 300px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .advantages h2,
  .about h2,
  .quote h2 { font-size: clamp(2rem, 11vw, 3rem); }
  .advantages__visual { width: calc(100% - 20px); }
  .advantages__image { min-height: 470px; }
  .advantages__badge { width: 142px; height: 142px; right: -18px; bottom: 32px; }
  .advantages__content { margin-top: 24px; }
  .process-grid { grid-template-columns: 1fr; row-gap: 42px; }
  .process-step { padding-right: 0; }
  .process-step h3 { max-width: none; }
  .about__statement { padding: 40px 30px; }
  .quote { padding-block: 80px; }
  .quote-form { padding: 25px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer__main { grid-template-columns: 1fr; gap: 36px; padding-block: 55px; }
  .footer__column:nth-child(3) { grid-column: auto; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 54px; height: 54px; }
  .clients { padding-block: 64px; }
  .clients__logos { grid-template-columns: repeat(2, 1fr); }
  .clients__logos > div { min-height: 94px; padding: 16px; }
}
