:root {
  --black: #030607;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(4, 12, 26, 0.92);
  --line: rgba(72, 156, 255, 0.2);
  --line-strong: rgba(30, 144, 255, 0.48);
  --text: #ffffff;
  --soft: #d9e3e8;
  --muted: #98a6ad;
  --cyan: #1e90ff;
  --blue: #006dff;
  --gold: #fde68a;
  --platinum: #e6eef0;
  --champagne: #d7b56d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --glow: 0 0 46px rgba(0, 132, 255, 0.22);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, #000 0, #030607 34%, #071011 100%),
    linear-gradient(115deg, rgba(0, 109, 255, 0.12), transparent 42%),
    var(--black);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4.6vw, 58px);
  color: var(--text);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom: 1px solid var(--line);
  background: rgba(1, 5, 6, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 82px;
  min-width: 82px;
  height: 58px;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.6vw, 24px);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--cyan);
}

.site-nav a {
  position: relative;
  border-radius: 999px;
  padding: 8px 10px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover {
  background: rgba(0, 132, 255, 0.1);
}

#inicio,
#empresas,
#direcao,
#parcerias,
#contato,
#midias-sociais {
  scroll-margin-top: 104px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.language-option {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.language-option.is-active,
.language-option:hover {
  color: #031014;
  background: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-light {
  position: absolute;
  inset: 0;
  background: #000;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: clamp(50px, 7vw, 108px);
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 98px 0 70px;
}

.hero-copy-block {
  width: min(100%, 900px);
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  border: 1px solid rgba(215, 181, 109, 0.32);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--champagne);
  background: linear-gradient(180deg, rgba(215, 181, 109, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.badge-icon {
  display: inline-flex;
  font-size: 16px;
}

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

.hero-title-logo {
  width: min(500px, 100%);
  margin: 0 auto 24px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.hero-title-logo img,
.hero-logo-video {
  width: 100%;
  height: auto;
}

.hero-logo-video {
  display: block;
  border: 0;
  background: #000;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.2;
}

.title-rule {
  width: 160px;
  height: 2px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero-text {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: rgba(230, 238, 240, 0.9);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 28px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  border-color: rgba(30, 144, 255, 0.5);
  color: #e9feff;
  background: linear-gradient(180deg, rgba(0, 132, 255, 0.22), rgba(0, 109, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 44px rgba(0, 0, 0, 0.22);
}

.button-primary:hover {
  border-color: rgba(215, 181, 109, 0.48);
  background: linear-gradient(180deg, rgba(30, 144, 255, 0.26), rgba(0, 109, 255, 0.11));
  box-shadow: 0 0 36px rgba(0, 132, 255, 0.3), 0 22px 56px rgba(0, 0, 0, 0.3);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.button-light {
  color: #061014;
  background: #ffffff;
}

.orbit-stage {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.orbit {
  position: absolute;
  display: none;
  border: 1px solid rgba(30, 144, 255, 0.34);
  border-radius: 50%;
}

.orbit-one {
  width: min(450px, 78vw);
  height: min(450px, 78vw);
}

.orbit-two {
  width: min(350px, 62vw);
  height: min(350px, 62vw);
  border-color: rgba(30, 144, 255, 0.18);
}

.orbit-three {
  width: min(250px, 46vw);
  height: min(250px, 46vw);
}

.core {
  position: relative;
  display: grid;
  width: min(220px, 45vw);
  height: min(220px, 45vw);
  place-items: center;
  border: 1px solid rgba(30, 144, 255, 0.46);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(0, 132, 255, 0.13);
  box-shadow: 0 0 76px rgba(0, 132, 255, 0.32);
  animation: rotateCore 35s linear infinite;
}

.logo-core {
  width: min(430px, 82vw);
  height: min(258px, 50vw);
  border-radius: 8px;
  border-color: transparent;
  padding: 0;
  animation: none;
  background: transparent;
  box-shadow: none;
}

.core::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(30, 144, 255, 0.32);
  border-radius: inherit;
  content: "";
}

.logo-core::before {
  display: none;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(86px, 10vw, 136px) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 48px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.accent {
  color: var(--gold);
}

.section-heading p:not(.eyebrow),
.partnership-copy > p:not(.eyebrow),
.final-cta p,
.company-card p,
.partner-types p,
.proposal-form p {
  color: var(--muted);
  line-height: 1.7;
}

.section-heading p:not(.eyebrow),
.partnership-copy > p:not(.eyebrow),
.final-cta p {
  font-size: 18px;
}

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

.company-card,
.partner-types div,
.proposal-form,
.partnership-panel,
.final-cta,
.social-panel {
  border: 1px solid rgba(72, 156, 255, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(0, 132, 255, 0.09), rgba(30, 144, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.company-card {
  min-height: 282px;
  padding: 30px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.company-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow), var(--glow);
}

.card-icon,
.large-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(30, 144, 255, 0.34);
  border-radius: 10px;
  color: var(--cyan);
  background: linear-gradient(180deg, rgba(0, 132, 255, 0.18), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  font-size: 28px;
}

.company-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(72, 156, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 132, 255, 0.2), transparent 44%),
    linear-gradient(135deg, rgba(4, 7, 8, 0.94), rgba(12, 15, 16, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 36px rgba(0, 0, 0, 0.28);
}

.company-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.large-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  font-size: 34px;
}

.company-card h3 {
  margin-bottom: 14px;
}

.direction {
  border-top: 1px solid rgba(215, 181, 109, 0.14);
  border-bottom: 1px solid rgba(215, 181, 109, 0.14);
  background:
    linear-gradient(180deg, rgba(215, 181, 109, 0.055), transparent),
    linear-gradient(90deg, transparent, rgba(0, 132, 255, 0.055), transparent);
}

.direction-inner {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(66px, 7vw, 88px) 0;
}

.direction-inner p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.52;
}

.partnerships {
  padding-bottom: 460px;
}

.partnership-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 6vw, 72px);
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(0, 132, 255, 0.14), rgba(30, 144, 255, 0.055)),
    rgba(255, 255, 255, 0.02);
}

.partner-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.partner-types div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.partner-types svg {
  width: 26px;
  height: 26px;
  margin-bottom: 16px;
  color: var(--cyan);
}

.proposal-form {
  display: grid;
  gap: 14px;
  align-self: start;
  padding: 26px;
  background: rgba(0, 0, 0, 0.5);
}

.proposal-form input,
.proposal-form select,
.proposal-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 16px 17px;
  color: var(--text);
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.proposal-form input::placeholder,
.proposal-form textarea::placeholder {
  color: rgba(203, 213, 225, 0.48);
}

.proposal-form select {
  color: rgba(255, 255, 255, 0.76);
}

.proposal-form option {
  color: #061014;
}

.proposal-form textarea {
  min-height: 146px;
  resize: vertical;
}

.proposal-form input:focus,
.proposal-form select:focus,
.proposal-form textarea:focus {
  border-color: rgba(30, 144, 255, 0.58);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(0, 132, 255, 0.14);
}

.proposal-form p {
  margin: 0;
  font-size: 14px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(0, 132, 255, 0.18), rgba(30, 144, 255, 0.1)),
    rgba(255, 255, 255, 0.025);
}

.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 45px);
}

.social-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 132, 255, 0.1)),
    rgba(255, 255, 255, 0.015);
}

.social-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 45px);
}

.social-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.social-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-channel {
  display: grid;
  min-height: 132px;
  place-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 20px 12px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.social-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
}

.social-icon svg {
  width: 32px;
  height: 32px;
}

.social-tiktok {
  border-color: rgba(30, 144, 255, 0.46);
}

.social-tiktok .social-icon {
  background: linear-gradient(135deg, #111111, #00f2ea 52%, #ff0050);
}

.social-instagram {
  border-color: rgba(236, 72, 153, 0.38);
}

.social-instagram .social-icon {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 48%, #6228d7);
}

.social-facebook {
  border-color: rgba(24, 119, 242, 0.42);
}

.social-facebook .social-icon {
  background: #1877f2;
}

.social-tiktok:hover {
  box-shadow: 0 0 32px rgba(0, 132, 255, 0.22);
}

.social-instagram:hover {
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.14);
}

.social-facebook:hover {
  box-shadow: 0 0 30px rgba(24, 119, 242, 0.14);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.contact-channel {
  display: grid;
  width: 142px;
  min-height: 120px;
  place-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 18px 14px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.channel-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
}

.channel-icon svg {
  width: 32px;
  height: 32px;
}

.contact-whatsapp {
  border-color: rgba(37, 211, 102, 0.42);
}

.contact-whatsapp .channel-icon {
  background: #25d366;
}

.contact-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.18);
}

.contact-line {
  border-color: rgba(6, 199, 85, 0.42);
}

.contact-line .channel-icon {
  background: #06c755;
}

.contact-line:hover {
  background: rgba(6, 199, 85, 0.1);
  box-shadow: 0 0 30px rgba(6, 199, 85, 0.18);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 30px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes rotateCore {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    gap: 16px;
  }

  .site-nav {
    gap: 12px;
    font-size: 12px;
  }

  .hero-inner,
  .direction-inner,
  .partnership-panel,
  .final-cta,
  .social-panel {
    grid-template-columns: 1fr;
  }

  .orbit-stage {
    min-height: 420px;
  }

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

  .final-cta .button {
    justify-self: start;
  }

  .contact-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 82px;
  }

  #inicio,
  #empresas,
  #direcao,
  #parcerias,
  #contato,
  #midias-sociais {
    scroll-margin-top: 82px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .site-header.is-open {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand {
    position: relative;
    z-index: 1002;
    width: 64px;
    min-width: 64px;
    height: 45px;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

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

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 86px 22px 28px;
    overflow-y: auto;
    color: #ffffff;
    background: #020404;
    font-size: 17px;
    text-align: center;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  .site-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(30, 144, 255, 0.18);
    border-radius: 10px;
    padding: 10px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.035);
  }

  .site-nav .language-switcher {
    align-self: center;
    margin-top: 8px;
  }

  .site-nav .language-option {
    min-width: 54px;
    min-height: 34px;
    font-size: 12px;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding: 110px 0 62px;
  }

  .badge {
    align-items: flex-start;
    border-radius: 8px;
    line-height: 1.5;
  }

  .hero-actions,
  .partner-types,
  .site-footer {
    flex-direction: column;
  }

  .hero-actions,
  .site-footer {
    display: flex;
  }

  .button {
    width: 100%;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-channel {
    width: 100%;
  }

  .social-actions {
    grid-template-columns: 1fr;
  }

  .company-grid,
  .partner-types {
    grid-template-columns: 1fr;
  }

  .company-card {
    min-height: auto;
  }

  .section,
  .direction-inner {
    width: min(100% - 32px, 1180px);
  }

  .orbit-stage {
    min-height: 300px;
  }

  .logo-core {
    width: min(330px, 84vw);
    height: min(198px, 52vw);
  }

  .hero-logo {
    width: min(280px, 74vw);
  }
}
