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

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

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

@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("fonts/DMSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  src: url("fonts/DMMono-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

:root {
  --orange: #c17a3a;
  --orange-light: #e2a768;
  --ink: #14100e;
  --ink-soft: #1c1714;
  --cream: #f2ece4;
  --paper: #fffaf3;
  --muted: #a9a099;
  --muted-dark: #6f665f;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(20, 16, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #090706;
}

body {
  margin: 0;
  background: #090706;
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 7%, rgba(193, 122, 58, 0.17), transparent 27rem),
    radial-gradient(circle at 85% 70%, rgba(112, 62, 28, 0.18), transparent 32rem),
    #090706;
}

.ambient {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.14;
}

.ambient--one {
  top: -12rem;
  left: -8rem;
  background: var(--orange);
}

.ambient--two {
  right: -11rem;
  bottom: -14rem;
  background: #7a3e1b;
}

.site-shell {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink);
  border-inline: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.44);
}

.topbar {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 26px;
  border-bottom: 1px solid var(--line);
}

.brand-link {
  display: inline-flex;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name strong {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand__name small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "DM Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.15em;
}

.brand--compact img {
  width: 29px;
  height: 29px;
}

.brand--compact .brand__name strong {
  font-size: 17px;
}

.brand--compact .brand__name small {
  font-size: 5px;
}

.topbar__login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.topbar__login:hover {
  color: var(--orange-light);
}

.hero {
  position: relative;
  display: flex;
  min-height: 690px;
  align-items: flex-end;
  overflow: hidden;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.025);
  animation: heroFocus 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero__veil {
  background:
    linear-gradient(180deg, rgba(12, 9, 8, 0.2) 0%, rgba(12, 9, 8, 0.38) 34%, rgba(12, 9, 8, 0.98) 92%),
    linear-gradient(90deg, rgba(12, 9, 8, 0.68) 0%, transparent 72%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 42px 38px;
  animation: rise 0.8s 0.12s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  max-width: 600px;
  margin-top: 18px;
  font-family: "Sora", sans-serif;
  font-size: clamp(43px, 8vw, 68px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 em,
.closing h2 em {
  color: var(--orange-light);
  font-style: normal;
}

.hero__content > p {
  max-width: 510px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.primary-button,
.card-button {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.primary-button {
  width: min(100%, 330px);
  margin-top: 28px;
  padding: 0 20px;
  background: var(--orange);
  color: #fff;
}

.primary-button:hover,
.card-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover,
.card-button--orange:hover {
  background: #d28a48;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero__tags span,
.format-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.section {
  padding-inline: 42px;
}

.intro {
  padding-top: 76px;
  padding-bottom: 38px;
  background: var(--cream);
  color: var(--ink);
}

.intro h2,
.authority h2,
.quick-links h2 {
  max-width: 610px;
  margin-top: 15px;
  font-family: "Sora", sans-serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.intro > p {
  max-width: 535px;
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.6;
}

.solutions {
  display: grid;
  gap: 14px;
  padding: 0 20px 72px;
  background: var(--cream);
}

.solution-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.solution-card--app {
  padding: 30px 24px 24px;
  background:
    linear-gradient(140deg, #1f1915 0%, #100d0b 80%),
    var(--ink);
  color: var(--cream);
}

.solution-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-index {
  color: var(--orange-light);
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.card-kicker {
  color: rgba(255, 255, 255, 0.52);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin-top: 22px;
  font-family: "Sora", sans-serif;
  font-size: clamp(31px, 6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.solution-card__lead {
  max-width: 510px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.feature-list li::before {
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.app-preview {
  position: relative;
  height: auto;
  margin: 30px -5px 20px;
}

.app-preview__desktop {
  position: relative;
  display: block;
  inset: auto;
  width: 92%;
  border: 6px solid #29231f;
  border-radius: 10px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
}

.app-preview__mobile {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 21%;
  border: 5px solid #29231f;
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.42);
}

.card-button {
  padding: 0 18px;
}

.card-button--light {
  background: var(--orange);
  color: #fff;
}

.card-button--light:hover {
  background: #d28a48;
}

.solution-card--consultoria {
  min-height: 610px;
  color: var(--cream);
}

.solution-card__background,
.solution-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.solution-card__background {
  object-fit: cover;
}

.solution-card__shade {
  background:
    linear-gradient(180deg, rgba(16, 12, 10, 0.3), rgba(16, 12, 10, 0.93) 66%),
    linear-gradient(90deg, rgba(16, 12, 10, 0.58), transparent 80%);
}

.solution-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px 24px;
}

.format-tags {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.format-tags span {
  border-color: rgba(226, 167, 104, 0.48);
  color: var(--orange-light);
}

.consultoria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.consultoria-grid span {
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  background: rgba(9, 7, 6, 0.34);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.solution-card__note {
  margin-top: 20px;
  padding-left: 13px;
  border-left: 2px solid var(--orange);
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.card-button--orange {
  margin-top: 22px;
  background: var(--orange);
  color: #fff;
}

.authority {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--paper);
  color: var(--ink);
}

.authority__photo-wrap {
  position: relative;
}

.authority__photo {
  display: block;
  width: 100%;
  aspect-ratio: 0.82;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 18%;
}

.authority__seal {
  position: absolute;
  right: -18px;
  bottom: 24px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-align: center;
}

.authority h2 {
  margin-top: 13px;
  font-size: clamp(27px, 4.3vw, 40px);
}

.authority__content > p {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.65;
}

.authority__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 22px;
  color: #7b6f66;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.quick-links {
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--ink-soft);
}

.quick-links h2 {
  color: var(--cream);
}

.link-stack {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

.link-stack a {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.link-stack a:hover {
  transform: translateX(3px);
  border-color: rgba(193, 122, 58, 0.58);
  background: rgba(193, 122, 58, 0.08);
}

.link-stack a > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.link-stack small {
  color: var(--orange-light);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.link-stack a > span:last-child {
  color: var(--orange-light);
}

.closing {
  padding: 78px 42px;
  background:
    linear-gradient(rgba(15, 11, 9, 0.8), rgba(15, 11, 9, 0.94)),
    url("images/kitchen.webp") center / cover;
}

.closing h2 {
  margin-top: 16px;
  font-family: "Sora", sans-serif;
  font-size: clamp(36px, 6vw, 55px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.closing > p {
  max-width: 510px;
  margin-top: 19px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  line-height: 1.6;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px 42px;
  border-top: 1px solid var(--line);
  background: #0d0a08;
}

footer p {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

footer > a {
  color: rgba(255, 255, 255, 0.55);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFocus {
  from {
    opacity: 0.75;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.025);
  }
}

@media (max-width: 620px) {
  .site-shell {
    border: 0;
  }

  .topbar {
    height: 68px;
    padding-inline: 18px;
  }

  .topbar__login {
    font-size: 8px;
  }

  .hero {
    min-height: 640px;
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__content {
    padding: 0 22px 30px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero__content > p {
    font-size: 14px;
  }

  .hero__tags {
    gap: 6px;
  }

  .section {
    padding-inline: 22px;
  }

  .intro {
    padding-top: 62px;
    padding-bottom: 32px;
  }

  .intro h2,
  .quick-links h2 {
    font-size: 32px;
  }

  .solutions {
    padding: 0 10px 62px;
  }

  .solution-card--app,
  .solution-card__body {
    padding: 26px 18px 18px;
  }

  .app-preview {
    height: auto;
    margin-top: 24px;
  }

  .solution-card--consultoria,
  .solution-card__body {
    min-height: 570px;
  }

  .authority {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .authority__photo-wrap {
    width: 78%;
  }

  .authority__seal {
    right: -26px;
  }

  .authority h2 {
    font-size: 32px;
  }

  .quick-links {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .closing {
    padding: 68px 22px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 22px;
  }

  footer p {
    grid-column: 1;
    order: 3;
  }
}

@media (max-width: 370px) {
  .brand--compact .brand__name small {
    display: none;
  }

  .topbar__login {
    letter-spacing: 0;
  }

  .hero__tags span {
    font-size: 6.5px;
  }

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

@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;
  }
}
