@charset "UTF-8";
:root {
  /* Color scheme */
  /* Base palette */
  --color-light: #e4e4ea;
  --color-dark: #1b1210;
  --color-accent: #5a0000;
  --color-bg: #1b1210;
  --color-surface: rgba(255, 255, 255, 0.68);
  --color-surface-strong: #f2f2f6;
  --color-text: #231816;
  --color-text-soft: #6f5d56;
  --color-text-button: #231816;
  --color-line: rgba(27, 18, 16, 0.12);
  --color-text-brand: maroon;
  --color-text-label-footer: #f2f2f6;
  /*footer*/
  --color-text-footer: #aa0404;
  /*marquee*/
  --color-text-marquee-primary: #aa040480;
  --color-text-marquee-secondary: #f2f2f480;
  /* Primary family */
  --color-primary: #840000;
  --color-secondary: #5a0000;
  --color-primary-hover: #9e1a1a;
  --color-primary-active: #650000;
  --color-primary-subtle: rgba(132, 0, 0, 0.1);
  --color-primary-contrast: #fff4f4;
  /* Shadows & glass */
  --shadow-soft: 0 20px 60px rgba(35, 24, 22, 0.09);
  --shadow-glow: 0 12px 30px rgba(132, 0, 0, 0.28);
  --border-glass: 1px solid rgba(255, 255, 255, 0.28);
  --color-btn-ghost: #000000a4;
  /* glass */
  --color-bg-light: #e4e4ea;
  --color-bg-dark: #1b1210;
  --color-glass-light: rgba(255, 255, 255, 0.28);
  --color-glass-dark: #00000047;
  /* Services project grid */
  --color-icon-project: #ff4500;
  --color-bg-icon-project: #1b1210b9;
  --color-bg-project: #840000;
  --color-text-project: #ffffffc0;
  /* Scrollbar */
  --color-bg-scrollbar: #00000016;
  --color-btn-scrollbar: #840000;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

:root {
  /* Radii */
  --radius-sm: 0.9rem;
  --radius-md: 1.4rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  /* Containers */
  --container-max: 90rem;
  --container-padding: clamp(0.9rem, 2.2vw, 2.75rem);
  --container: min(100% - (var(--container-padding) * 2), var(--container-max));
  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;
  /* Motion */
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Custom Scrollbar (Global & Modal) ───────────────────────────────────────── */
html {
  /* Firefox: hide by default */
  scrollbar-width: none;
  transition: scrollbar-color 0.3s var(--ease-standard);
}

html.has-scrolled {
  scrollbar-width: thin;
  scrollbar-color: var(--color-btn-scrollbar) var(--color-bg-scrollbar);
}

/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 0.8rem;
  height: 0.8rem;
}

::-webkit-scrollbar-track {
  background: transparent;
  margin-block: 0.8rem; /* Controla o 'respiro' nas pontas da barra */
}

/* Default state: transparent thumb */
::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: var(--radius-pill);
  border: 4px solid transparent;
  background-clip: padding-box;
  -webkit-transition: background 0.3s var(--ease-standard);
  transition: background 0.3s var(--ease-standard);
}

/* Scrolled state: show thumb for the main window and all elements */
.has-scrolled::-webkit-scrollbar-thumb,
.has-scrolled ::-webkit-scrollbar-thumb {
  background-color: var(--color-btn-scrollbar);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.has-scrolled::-webkit-scrollbar-thumb:hover,
.has-scrolled ::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary-hover);
}

/* A trilha aparece apenas quando há scroll */
.has-scrolled::-webkit-scrollbar-track {
  background: var(--color-bg-scrollbar);
}

/* Modal and area-specific scrollbars always show if scrolled inside */
.contact-modal__panel::-webkit-scrollbar-thumb,
.contact-form__field textarea::-webkit-scrollbar-thumb {
  background-color: var(--color-btn-scrollbar) !important;
  opacity: 0.4;
}
.contact-modal__panel::-webkit-scrollbar-thumb:hover,
.contact-form__field textarea::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary-hover) !important;
  opacity: 1;
}

.section-shell {
  width: var(--section-shell-width, var(--container));
  min-height: var(--section-shell-height, auto);
  margin-inline: auto;
  padding-block: var(--section-shell-padding-block, 0);
  padding-inline: var(--section-shell-padding-inline, 0);
}

/* Home pages */
body.page-home {
  --section-shell-width: 100%;
  --section-shell-height: 100vh;
  --section-shell-padding-block: clamp(3rem, 5vw, 6rem);
  --section-shell-padding-inline: clamp(1.5rem, 4vw, 5rem);
}
body.page-home .hero,
body.page-home .about,
body.page-home .projects,
body.page-home .services,
body.page-home .technical-strip,
body.page-home .contact {
  width: var(--section-shell-width);
  min-height: var(--section-shell-height);
  padding-block: var(--section-shell-padding-block);
  padding-inline: var(--section-shell-padding-inline);
}
body.page-home .hero {
  width: 100%;
  min-height: 100vh;
  padding-block: 0;
  padding-inline: 0;
}
body.page-home .technical-strip {
  position: relative;
  min-height: 100vh;
  background: transparent;
  overflow: hidden;
  margin-block: 0;
}
body.page-home .technical-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-light);
  opacity: var(--strip-bg-opacity, 0);
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at 225% 50%, black var(--strip-mask-radius, 0), transparent calc(var(--strip-mask-radius, 0) + 60vw));
  mask-image: radial-gradient(circle at 225% 50%, black var(--strip-mask-radius, 0), transparent calc(var(--strip-mask-radius, 0) + 60vw));
}
body.page-home .services {
  background: var(--color-light);
  margin-block: 0;
  margin-top: -1px; /* Overlap to hide sub-pixel gaps */
  min-height: 105vh; /* Aumentado ligeiramente para melhor encaixe no scroll */
  padding-top: 0.5rem; /* Espaço extra para o título não bater no topo/header */
}

/* Project detail pages */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Plus Jakarta Sans", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

main {
  overflow: clip;
}

.split-word {
  display: inline-flex;
  overflow: hidden;
  vertical-align: top;
}

.split-word__inner {
  display: inline-block;
}

body {
  line-height: 1.6;
}

h1,
h2,
h3,
strong {
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

h1 span,
h2 span,
h3 span {
  font-size: inherit !important;
}

h1 {
  font-size: clamp(1.4rem, 7vw, 5.4rem) !important;
  font-weight: 800 !important;
}

h2 {
  font-size: clamp(1.4rem, 4vw, 3.6rem) !important;
  font-weight: 700 !important;
  max-width: 100%;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem) !important;
  font-weight: 700 !important;
}

p,
span,
a,
button {
  font-size: 1.1rem !important;
  font-weight: bold !important;
}

.text-serif,
.text-serif span {
  font-family: "Instrument Serif", serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
  line-height: inherit;
  letter-spacing: -0.05em;
  vertical-align: baseline;
}

@font-face {
  font-family: "MovementDirect";
  src: url("../assets/img/font/Movement-DirectBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  h1,
  h2,
  h3,
  span,
  strong {
    font-family: "MovementDirect", sans-serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
    white-space: pre-wrap;
  }
}
.text-movement span {
  font-family: "MovementDirect", sans-serif !important;
  font-weight: 900 !important;
  font-style: normal !important;
  text-transform: uppercase;
  font-size: 0.95em;
  letter-spacing: 0.02em;
}

.section-heading {
  position: relative;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  width: 100%;
  text-align: center;
  color: var(--color-primary);
}

.section-heading-projects {
  position: relative;
  gap: var(--space-3);
  margin-bottom: 90vh;
  width: 100%;
  text-align: center;
  color: var(--color-primary-contrast);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.28s var(--ease-standard), background-color 0.28s var(--ease-standard), border-color 0.28s var(--ease-standard), box-shadow 0.28s var(--ease-standard), color 0.28s var(--ease-standard);
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.015);
}

.button--primary {
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  box-shadow: var(--shadow-glow);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-primary-contrast);
  color: var(--color-primary);
}

.button--primary:active {
  background: var(--color-primary-active);
  transform: translateY(0) scale(0.99);
}

.button--ghost {
  background: var(--color-btn-ghost);
  color: var(--color-primary-contrast);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--color-primary);
  background: var(--color-primary-contrast);
  color: var(--color-primary);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 1rem 0;
  pointer-events: none;
}

.site-header__bar {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  max-width: none;
  padding-inline: var(--container-padding);
  min-height: 4.5rem;
  margin-inline: 0;
}

.menu-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--color-glass-dark);
  backdrop-filter: blur(10px) invert(0.8);
  -webkit-backdrop-filter: blur(10px) invert(0.8);
  flex: 0 0 auto;
}

.menu-toggle span {
  position: absolute;
  width: 1.1rem;
  height: 2px;
  background: #ddd;
  transition: transform 0.24s var(--ease-standard), opacity 0.24s var(--ease-standard);
}

.menu-toggle span:first-child {
  transform: translateY(-0.22rem);
}

.menu-toggle span:last-child {
  transform: translateY(0.22rem);
}

.menu-toggle.is-open span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}

.site-header__menu-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  width: -moz-max-content;
  width: max-content;
  min-width: 80%;
  max-width: min(100vw - var(--container-padding) * 2, 26rem);
  padding: 0.5rem;
  border: transparent;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
}

.site-header__menu-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  border: var(--border-glass);
  background: var(--color-glass-light);
  backdrop-filter: blur(10px) invert(0.8);
  -webkit-backdrop-filter: blur(10px) invert(0.8);
  box-shadow: var(--shadow-soft);
}

.site-header__menu-nav {
  display: grid;
  gap: 0.45rem;
}

.site-header__menu-nav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  padding: 0.25rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 3vw, 1.05rem);
  font-weight: 600;
}
.site-header__menu-nav a:hover, .site-header__menu-nav a:focus-visible {
  background: var(--color-glass-dark);
  color: #ddd;
}

.site-header__menu-actions {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--color-line);
}

.toggle-pill {
  --pill-h: 2.75rem;
  --pill-pad: 0.2rem;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--pill-h);
  padding: var(--pill-pad);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-line);
  background: var(--color-glass-light);
  cursor: pointer;
  text-decoration: none;
}
.toggle-pill:hover, .toggle-pill:focus-visible {
  background: var(--color-glass-dark);
}

.toggle-pill__track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.toggle-pill__track span {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  opacity: 1;
  transition: opacity 0.28s ease;
}

.toggle-pill:not(.is-right) .toggle-pill__track span:first-child {
  opacity: 0;
}

.toggle-pill.is-right .toggle-pill__track span:last-child {
  opacity: 0;
}

.toggle-pill__bubble {
  position: absolute;
  left: var(--pill-pad);
  top: var(--pill-pad);
  width: calc(50% - var(--pill-pad) * 1.5);
  height: calc(var(--pill-h) - var(--pill-pad) * 2);
  border-radius: var(--radius-pill);
  background: var(--color-glass-dark);
  box-shadow: 0 2px 8px rgba(27, 18, 16, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.toggle-pill.is-right .toggle-pill__bubble {
  transform: translateX(calc(100% + var(--pill-pad)));
}

.toggle-pill__bubble-inner {
  display: flex;
  width: 200%;
  height: 100%;
  will-change: transform;
}
.toggle-pill__bubble-inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

.toggle-pill.is-right .toggle-pill__bubble-inner {
  transform: translateX(-50%);
}

.site-header__logo {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  display: block;
  width: clamp(12rem, 30vw, 22rem);
  height: auto;
  pointer-events: auto;
  transform-origin: center center;
  overflow: visible;
  line-height: 0;
}

.site-header__logo svg,
.site-logo-fx {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 303.9/101.6;
  overflow: visible;
  -webkit-mask: url(#logo-mask);
  mask: url(#logo-mask);
  backdrop-filter: blur(8px) invert(1);
  outline: 4px solid blue;
}

.site-header__controls {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0.5rem;
  border-radius: calc(infinity * 1px);
  pointer-events: auto;
}

.site-header__controls::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: var(--border-glass);
  background: var(--color-glass-light);
  backdrop-filter: blur(10px) invert(0.8);
  -webkit-backdrop-filter: blur(10px) invert(0.8);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 47.99rem) {
  .site-header__bar {
    min-height: 3.4rem;
    align-items: center;
  }
  .site-header__logo {
    left: var(--container-padding, 1.25rem);
    top: 50%;
    width: 20rem;
    height: 3.5rem;
    overflow: hidden;
  }
  .site-logo-fx {
    width: 303.9px !important;
    height: 101.6px !important;
    transform: scale(0.4) !important;
    transform-origin: left top !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
  }
  .site-header__controls > .button {
    padding-inline: 0.65rem;
    padding-block: 0.35rem;
    font-size: 0.72rem;
    min-height: 2rem;
    white-space: nowrap;
  }
  .site-header__controls {
    gap: 0.3rem;
    padding: 0.3rem;
  }
  .menu-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.contact-modal {
  width: min(100vw - 1rem, 80%);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
}

.contact-modal::backdrop {
  background: rgba(15, 10, 8, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.contact-modal[open] {
  display: grid;
  place-items: center;
}

.contact-modal__shell {
  position: relative;
  width: 100%;
}

.contact-modal__backdrop {
  position: fixed;
  inset: 0;
  opacity: 0;
}

.contact-modal__panel {
  --color-text: #e4e4ea;
  --color-text-soft: rgba(228, 228, 234, 0.55);
  --color-line: rgba(255, 255, 255, 0.1);
  --color-primary-subtle: rgba(132, 0, 0, 0.22);
  position: relative;
  display: grid;
  gap: clamp(0.5rem, 1.8vh, 1.2rem);
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(27, 18, 16, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  max-height: calc(100dvh - 3rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.contact-modal__panel span,
.contact-modal__panel label,
.contact-modal__panel p,
.contact-modal__panel a {
  color: var(--color-text-soft) !important;
}

.contact-modal__panel h3 {
  color: var(--color-text);
  font-size: clamp(1.1rem, 3.5vw, 1.55rem);
  line-height: 1.22;
}

.contact-modal__glow {
  pointer-events: none;
  position: absolute;
  inset: -150px 0 auto auto;
  width: 380px;
  height: 640px;
  border-radius: 50%;
  background: rgba(132, 0, 0, 0.26);
  filter: blur(90px);
  transform: rotate(45deg);
  z-index: 0;
}

.contact-modal__header,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-modal__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.contact-modal__close {
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
  cursor: pointer;
  transition: background 0.2s var(--ease-standard), border-color 0.2s var(--ease-standard);
}

.contact-modal__close:hover {
  background: var(--color-primary-subtle);
  border-color: rgba(132, 0, 0, 0.4);
}

.contact-modal__close span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.8rem;
  height: 1.5px;
  background: var(--color-text-soft);
  border-radius: 999px;
  transition: background 0.2s var(--ease-standard);
}

.contact-modal__close:hover span {
  background: var(--color-primary-contrast);
}

.contact-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-form {
  display: grid;
  gap: clamp(0.5rem, 1.5vh, 0.8rem);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 30rem) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.contact-form__field {
  display: grid;
  gap: 0.38rem;
}

.contact-form__field > span {
  color: var(--color-text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.contact-form__field--required > span::after {
  content: "*";
  position: absolute;
  top: -2px;
  right: -0.7rem;
  color: #ff3b30;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1;
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text);
  resize: vertical;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s var(--ease-standard), box-shadow 0.2s var(--ease-standard);
}
.contact-form__field input::-moz-placeholder, .contact-form__field textarea::-moz-placeholder, .contact-form__field select::-moz-placeholder {
  color: rgba(228, 228, 234, 0.28);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder,
.contact-form__field select::placeholder {
  color: rgba(228, 228, 234, 0.28);
}

.contact-form__field textarea {
  min-height: 80px;
  max-height: 120px;
  overflow-y: auto;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
  outline: 2px solid transparent;
  border-color: rgba(132, 0, 0, 0.65);
  box-shadow: 0 0 0 4px rgba(132, 0, 0, 0.18);
}

.contact-form__select-wrap {
  position: relative;
}

.contact-form__select-wrap select {
  cursor: pointer;
  padding-right: 2.5rem;
}

.contact-form__select-wrap select option {
  background: rgb(27, 18, 16);
  color: var(--color-text);
  padding: 0.5rem 1rem;
}

.contact-form__select-icon {
  pointer-events: none;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  display: flex;
  align-items: center;
  color: var(--color-text-soft);
}
.contact-form__select-icon svg {
  width: 100%;
  height: 100%;
}

.contact-form__accordion {
  position: relative;
  width: 100%;
}

.contact-form__accordion-trigger {
  display: none;
  width: 100%;
  padding: 0.75rem 1rem;
  align-items: center;
  justify-content: space-between;
  background: var(--color-glass-dark);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px) invert(0.8);
  -webkit-backdrop-filter: blur(10px) invert(0.8);
  transition: all 0.24s var(--ease-standard);
}
.contact-form__accordion-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-form__accordion-icon {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.24s var(--ease-standard);
}
.contact-form__accordion-icon svg {
  width: 100%;
  height: 100%;
}

.contact-form__accordion[data-active=true] .contact-form__accordion-trigger {
  border-color: var(--color-primary);
}
.contact-form__accordion[data-active=true] .contact-form__accordion-icon {
  transform: rotate(180deg);
}
.contact-form__accordion[data-active=true] .contact-form__accordion-content {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 0.5rem;
}

.contact-form__accordion-content {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.3s var(--ease-standard), opacity 0.3s, margin 0.3s;
}

.contact-form__project-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 0.15rem;
  overflow: hidden;
}

.contact-form__radio {
  position: relative;
  cursor: pointer;
}
.contact-form__radio input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.contact-form__radio span {
  display: inline-block;
  padding: 0.42rem 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-soft);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.18s var(--ease-standard), border-color 0.18s var(--ease-standard), color 0.18s var(--ease-standard);
}
.contact-form__radio input[type=radio]:checked + span {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.contact-form__radio input[type=radio]:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(132, 0, 0, 0.3);
  border-color: var(--color-primary);
}

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}
.contact-form__checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form__checkbox-box {
  flex: 0 0 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 0.18rem;
  display: grid;
  place-items: center;
  transition: background 0.18s var(--ease-standard), border-color 0.18s var(--ease-standard);
  position: relative;
}
.contact-form__checkbox-box::before {
  content: "*";
  position: absolute;
  top: -5px;
  right: -5px;
  color: #ff3b30;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1;
}

.contact-form__checkbox input[type=checkbox]:checked ~ .contact-form__checkbox-box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.contact-form__checkbox input[type=checkbox]:checked ~ .contact-form__checkbox-box::after {
  content: "";
  display: block;
  width: 0.28rem;
  height: 0.52rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(1px, -1px) rotate(45deg);
}

.contact-form__checkbox-text {
  color: var(--color-text-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-form__link {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
@media (max-width: 47.99rem) {
  .contact-form__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}

.contact-form__actions {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
}

@media (max-height: 680px) {
  .contact-modal__panel {
    gap: 0.6rem;
    padding: 1rem 1.25rem;
  }
  .contact-form {
    gap: 0.6rem;
  }
  .contact-form__field input,
  .contact-form__field textarea,
  .contact-form__field select {
    padding: 0.6rem 0.85rem;
  }
  .contact-form__budget {
    gap: 0.35rem;
  }
}
@media (max-width: 47.99rem) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .contact-form__accordion-trigger {
    display: flex;
  }
  .contact-form__accordion-content {
    grid-template-rows: 0fr;
    opacity: 0;
    margin-top: 0;
  }
  .contact-form__project-types {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.5rem 0.2rem;
  }
  .contact-form__radio {
    width: 100%;
  }
  .contact-form__radio span {
    width: 100%;
    text-align: left;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
  }
}
@media (max-width: 28rem) {
  .contact-modal {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    margin: 0;
    max-height: 93dvh;
    transform: none;
  }
  .contact-modal[open] {
    display: block;
  }
  .contact-modal__panel {
    border-radius: 1.5rem 1.5rem 0 0;
    max-height: 93dvh;
    padding: 1.25rem 1rem env(safe-area-inset-bottom, 1.5rem);
  }
}
.technical-card,
.language-card,
.contact__panel,
.project-stat,
.viewer-placeholder,
.project-sidebar,
.project-copy {
  border: 1px solid var(--color-line);
  background: color-mix(in srgb, var(--color-surface-strong) 90%, transparent);
  box-shadow: var(--shadow-soft);
}

.project-card {
  align-items: center;
  justify-content: center;
}

.metric-card {
  align-items: center;
  justify-content: center;
}

.metric-card,
.project-stat {
  padding: 1rem;
  border-radius: var(--radius-md);
}

.metric-card span,
.project-stat span,
.project-card__tag,
.language-card__label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-text-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1.2rem;
}

.project-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid transparent !important;
}

.project-card img {
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-card__body {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1.4rem;
}

.language-card {
  display: grid;
  gap: 0.6rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-standard), border-color 0.3s var(--ease-standard);
}

.language-card:hover,
.language-card:focus-visible {
  transform: translateY(-4px);
}

/* Slider Component */
.project-slider-wrapper {
  position: absolute;
  width: 100vw;
  height: 70vh;
  left: 0;
}

.project-slider-shadow {
  z-index: 10;
  pointer-events: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
}

.project-slider-shadow.left {
  left: 0;
  background-image: linear-gradient(90deg, var(--color-primary), transparent);
}

.project-slider-shadow.right {
  right: 0;
  background-image: linear-gradient(-90deg, var(--color-primary), transparent);
}

.project-slider {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}

.project-slider::-webkit-scrollbar {
  display: none;
}

.project-card--slide {
  flex: 0 0 85%;
  scroll-snap-align: center;
  height: 70vh;
  border: 1px solid transparent !important;
}

.project-card--slide:first-child {
  margin-left: 7.5%;
}

.project-card--slide:last-child {
  margin-right: 7.5%;
}

@media (min-width: 48rem) {
  .project-card--slide {
    flex: 0 0 76%;
  }
  .project-card--slide:first-child {
    margin-left: 12%;
  }
  .project-card--slide:last-child {
    margin-right: 12%;
  }
}
.project-card__link {
  text-decoration: none;
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid transparent !important;
}

.project-card__image-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.project-card__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card__link:hover .project-card__image-wrap img {
  transform: scale(1.05) rotate(1deg);
}

.project-card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: linear-gradient(0deg, rgba(8, 8, 8, 0.95), rgba(8, 8, 8, 0.48) 35%, transparent 51%);
  color: #fff;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.project-card__tags .project-card__tag {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background: var(--color-glass-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.project-card__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  text-align: left;
}

.project-card__title {
  margin: 0;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  background-color: var(--color-glass-dark);
  border-radius: var(--radius-sm);
  padding-inline: 1rem;
  padding-block: 0.5rem;
}

.project-card__text-wrap p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
}

.project-slider-controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.slider-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-primary-contrast);
  box-shadow: var(--color-primary-contrast);
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  cursor: pointer;
  transition: background 0.3s var(--color-primary-contrast), color 0.3s var(--color-primary), border-color 0.3s var(--color-primary-contrast);
}

.slider-button:hover,
.slider-button:focus-visible {
  background: var(--color-primary-contrast);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

.icon-slider-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==============================================================================
   ANIMAÇÃO E LAYOUT DO HERO (Hero Pack Effect)
   ============================================================================== 
   -> Este arquivo consolida as declarações visuais do bloco inicial da página
*/
.hero {
  display: grid;
  padding-top: clamp(6rem, 10vw, 8.5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.hero__copy {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  max-width: 100%;
}

.hero__lede {
  max-width: 100%;
  color: var(--color-text-soft);
  font-size: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.hero__visual-shell {
  position: relative;
  overflow: clip;
  background: #120d0c;
  clip-path: inset(0 round 0);
  width: 100%;
  height: clamp(22rem, 58vw, 46rem);
  min-height: 22rem;
  margin-inline: 0;
  border-radius: clamp(1.25rem, 2vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.hero__visual-shell > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__metrics {
  position: absolute;
  inset: auto 1rem 1rem;
  display: grid;
  gap: 0.8rem;
}

/* Modificadores estritos para a variação "--pack" (com a animação de enquadramento GSAP) */
.page-home .hero--pack {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100% !important;
  /* Força largura total do monitor */
  max-width: none !important;
  margin-left: 0%;
  /* Truque para centralizar horizontalmente mesmo em grid/container */
  padding: 0 !important;
  position: relative;
  overflow: hidden !important;
  /* Clipped at the sides to prevent 160vw marquees from overflowing */
}
.page-home .hero--pack .hero__copy {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-inline: var(--container-padding);
}
.page-home .hero--pack .hero__copy h1,
.page-home .hero--pack .hero__copy p {
  text-align: center;
  margin-inline: auto;
}
.page-home .hero--pack .hero__visual-shell {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: none;
  min-height: 100vh;
  border-radius: 0;
  margin: 0;
  clip-path: inset(0% 0% 0% 0% round 0rem);
  will-change: transform, clip-path;
  z-index: 1;
}
.page-home .hero--pack .hero__visual-shell > .hero-pack__media > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-home .hero--pack .hero__visual-shell .hero__overlay-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  text-align: center;
  padding-inline: auto;
  z-index: 20; /* acima do canvas (z-index: 2) */
  /* opacity e visibility são controlados exclusivamente pelo GSAP */
  pointer-events: none;
  margin-inline: 2rem auto;
}
.page-home .hero--pack .hero__visual-shell .hero__overlay-copy h2 {
  font-size: clamp(3rem, 10vw, 7.5rem) !important;
  max-width: 14ch;
  margin-block: 1rem;
  color: var(--color-primary-contrast);
  line-height: 1.1;
  text-align: left;
}
.page-home .hero--pack .hero__visual-shell .hero__overlay-copy .eyebrow {
  color: var(--color-primary);
  font-size: clamp(1rem, 2.5vw, 1.6rem) !important;
  text-align: left;
}
.page-home .hero--pack .hero__visual-shell .hero__overlay-copy .hero__lede {
  font-size: clamp(1.2rem, 3.5vw, 2.5rem) !important;
  width: 70%;
  margin-top: 2rem;
  text-align: left;
  color: var(--color-primary);
  margin-left: 0;
  line-height: 1.3;
}
.page-home .hero--pack {
  /* As métricas agora acompanham a compactação */
}
.page-home .hero--pack .hero__metrics {
  inset: auto clamp(0.75rem, 1.5vw, 1.25rem) clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: min(100%, 48rem);
  z-index: 2;
}
.page-home .hero--pack .hero__track-marquee {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160vw;
  /* Largura ampliada para cobrir a diagonal da inclinação de 30º */
  transform-origin: center center;
  margin-top: -2% !important;
  z-index: 0;
  pointer-events: none;
  border-block: none;
}
.page-home .hero--pack .hero__track-marquee .marquee__track {
  padding-block: auto;
  background: var(--color-bg);
  width: -moz-max-content;
  width: max-content;
  display: flex;
  justify-content: center;
}
.page-home .hero--pack .hero__track-marquee .marquee__hero_text {
  font-size: 60px;
  font-weight: 800;
  font-style: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: transparent;
  gap: 1rem;
}
.page-home .hero--pack .hero__track-marquee .marquee__hero_text img {
  width: 100%;
  height: 100%;
}
.page-home .hero--pack .hero__track-marquee--primary {
  transform: translate(-50%, -50%);
}
.page-home .hero--pack .hero__track-marquee--secondary {
  transform: translate(-50%, 0);
}
.page-home .hero-pack__media {
  width: 100%;
  height: 100%;
  will-change: transform;
  position: relative;
}
.page-home .hero-pack__media canvas {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

/* Media Queries para Hero */
@media (min-width: 48rem) {
  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(22rem, 0.96fr);
    align-items: end;
  }
  .hero__metrics {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  }
}
@media (max-width: 47.99rem) {
  .hero__copy {
    max-width: none;
  }
  .hero__lede {
    max-width: none;
    font-size: 0.98rem;
  }
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero__actions .button {
    width: 100%;
  }
  .hero__metrics {
    inset: auto 0.75rem 0.75rem;
  }
  .page-home.hero--pack {
    min-height: auto;
  }
  .page-home.hero--pack .hero__visual-shell {
    width: 100%;
    min-height: 24rem;
    height: 64vw;
    max-height: 32rem;
    margin-inline: 0;
    border-radius: 1.6rem;
  }
  .page-home.hero--pack .hero__copy {
    max-width: none;
  }
}
/* O contêiner que segura os botões na tela dentro do limite do pai */
.sticky-actions-wrapper {
  position: sticky;
  margin-top: 10rem !important;
  z-index: 10;
  width: -moz-max-content;
  width: max-content;
  /* Centralização horizontal */
  margin: 70% 50% !important;
  left: 0% !important;
  transform: translateX(-50%);
}

/* Força os botões a ficarem ombro a ombro (horizontal) sempre */
.custom-flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; /* Proíbe de quebrar a linha */
  gap: 1rem; /* Espaço entre os botões, ajuste como preferir */
  justify-content: center;
}

/* Previne que o texto dentro do botão quebre em duas linhas */
.btn-sticky-custom {
  white-space: nowrap;
}

/* O Treino de Adaptação para Telas Menores (Celulares) */
@media (max-width: 768px) {
  .sticky-actions-wrapper {
    bottom: 2rem; /* Abaixa um pouco no mobile para não ocupar muita tela */
    align-self: center;
  }
  .btn-sticky-custom {
    font-size: 0.8rem; /* Reduz a fonte */
  }
}
/* ==============================================================================
   ANIMAÇÃO E LAYOUT DO TRACK HORIZONTAL (Technical Strip / Collage)
   ============================================================================== 
   -> Este arquivo controla o comportamento espacial e colagem dos cards.
*/
/* 1. MÓDULOS DE TAMANHOS DOS CARDS
   Altere os valores de 'flex' e 'min-height' para mudar o tamanho base deles.
   Você pode criar novas variações aqui (ex: --small, --hero, etc)
*/
.technical-card {
  flex: 0 0 clamp(16rem, 28vw, 23rem);
  /* <- Largura padrão do card comum */
  padding: 1rem;
  border-radius: var(--radius-lg);
  position: relative;
}
.technical-card img {
  border-radius: 1.3rem;
  margin-bottom: 1rem;
}
.technical-card strong {
  display: block;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-weight: 800;
}
.technical-card p {
  font-size: 1.05rem !important;
  font-weight: 500 !important; /* Overrides global bold */
  line-height: 1.5;
  color: var(--color-text-soft);
  margin: 0;
}

.technical-card--tall {
  flex: 0 0 clamp(16rem, 25vw, 20rem);
  /* <- Largura do card alto */
  min-height: 32rem;
  /* <- Altura forçada do card alto */
  margin-right: -2rem;
  margin-bottom: -1rem;
  display: flex;
  flex-direction: column;
}
.technical-card--tall img {
  height: 18rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.technical-card--wide {
  flex: 0 0 clamp(24rem, 40vw, 36rem);
  /* <- Largura esticada do panoramico */
  margin-right: -1rem;
  margin-bottom: -3rem;
}
.technical-card--wide img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.technical-card--large {
  flex: 0 0 clamp(22rem, 34vw, 30rem);
  min-height: 28rem;
  margin-left: 3rem;
  margin-right: -4rem;
  margin-bottom: -6%;
}

/* ==============================================================================
   2. SISTEMA DE COLAGEM E SOBREPOSIÇÃO (.technical-strip__track)
   Altere o margin-top / margin-bottom para subir e descer o card na linha visual
   Altere o margin-left para definir a intensidade da aproximação/sobreposição 
   Altere o z-index para dizer quem fica por cima e quem fica por baixo!
   ============================================================================== */
/* Wrapper que engloba a introdução e o track lateral */
.technical-strip {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

/* O Cabeçalho (Introdução do lado esquerdo) */
.technical-strip__intro {
  flex: 0 0 clamp(32rem, 45vw, 42rem);
  padding-right: 4rem;
  /* Ajuste este Z-INDEX se ele for ser coberto/cobrir o primeiro card */
  z-index: 5;
  position: relative;
  /* Posição no eixo horizontal (negativo faz invadir o espaço seguinte) */
  margin-right: -10rem;
  /* Posição vertical */
  transform: translateY(-3rem);
}
.technical-strip__intro h2 {
  max-width: none;
  /* Apenas 1 a 2 linhas sem quebra forçada */
}

@media (max-width: 47.99rem) {
  .technical-card {
    flex-basis: min(82vw, 19rem);
    min-width: min(82vw, 19rem);
  }
}
.technical-strip__track {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  padding-inline: max(var(--container-padding), (100vw - var(--container-max)) / 2 + var(--container-padding));
  /* Collage System - Os Filhos Individuais (Cards) */
}
.technical-strip__track .technical-card {
  transition: transform 0.3s ease;
  /* CARD 1 (neste contexto, ele é o filho de índice 2 da div técnica) */
}
.technical-strip__track .technical-card:nth-child(2) {
  margin-top: 8rem;
  /* Joga o card mais pra baixo */
  z-index: 2;
  /* Como a intro é 5, a intro cobre este card ! */
}
.technical-strip__track .technical-card {
  /* CARD 2 */
}
.technical-strip__track .technical-card:nth-child(3) {
  margin-left: -4rem;
  /* Puxa ele 4rem contra a direita do CARD 1 */
  margin-bottom: 12rem;
  /* Joga ele bem para o alto da tela */
  z-index: 6;
  /* Por estar com 6, ele passa por CIMA de todos */
}
.technical-strip__track .technical-card {
  /* CARD 3 */
}
.technical-strip__track .technical-card:nth-child(4) {
  margin-left: -6rem;
  /* Se engolindo com o Card 2 */
  margin-top: 4rem;
  /* Posicionado mais baixo que o eixo central */
  z-index: 3;
  /* Cobrindo por baixo do card 2 e card 4 */
}
.technical-strip__track .technical-card {
  /* CARD 4 */
}
.technical-strip__track .technical-card:nth-child(5) {
  margin-left: -2rem;
  margin-bottom: 3rem;
  z-index: 4;
}
.technical-strip__track .technical-card {
  /* Efeito de destaque automático com o mouse */
}
.technical-strip__track .technical-card:hover {
  transform: translateY(-0.5rem);
  z-index: 10;
}

.technical-card--featured-text {
  flex: 0 0 auto;
  /* Permite que o card cresça conforme o conteúdo */
  min-width: -moz-max-content;
  min-width: max-content;
  /* Garante que o background siga o texto nowrap */
  width: -moz-fit-content;
  width: fit-content;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 8rem);
  margin-top: 0 !important;
  margin-left: -3rem;
  z-index: 8;
}
.technical-card--featured-text h2 {
  font-size: clamp(2rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
  color: #fff;
  /* Tira quebra para o texto 'correr' na lateral */
}

.about,
.projects,
.contact {
  width: var(--section-shell-width, 100%);
  min-height: var(--section-shell-height, auto);
  margin-inline: auto;
  margin-block: auto;
}

.about {
  margin-top: 1vh;
}

.about__grid,
.contact__panel,
.contact__meta {
  display: grid;
  gap: var(--space-3);
}

.about__grid > *,
.contact__panel > *,
.contact__meta > * {
  min-width: 0;
}

@media (min-width: 48rem) {
  .project-grid,
  .about__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  }
  .contact__panel {
    grid-template-columns: minmax(0, 14rem) minmax(0, 1fr);
    align-items: center;
  }
  .contact__meta {
    justify-items: end;
  }
  .language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.marquee {
  position: relative;
  z-index: 0;
  overflow: hidden;
  margin-top: calc(-50vh - 2.1rem);
  padding-block: var(--space-4);
}

.marquee__track {
  display: inline-flex;
  gap: var(--space-3);
  align-items: center;
  white-space: nowrap;
}

.marquee__hero_text {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  padding: 1rem 1.5rem;
  font-weight: 900;
  font-size: clamp(3.5rem, 12vw, 9rem) !important;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

/* Estilos específicos por track */
.hero__track-marquee--primary .marquee__hero_text {
  font-family: "MovementDirect", sans-serif !important;
  color: var(--color-text-marquee-primary) !important;
}

.hero__track-marquee--secondary .marquee__hero_text {
  color: var(--color-text-marquee-secondary) !important;
}

@media (max-width: 47.99rem) {
  .marquee__hero_text {
    padding: 0.5rem 0.75rem;
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
}
.page-home .footer {
  --footer-panel: var(--color-dark);
  --footer-text-main: var(--color-light);
  --footer-text-soft: var(--color-primary);
  --footer-accent: var(--color-primary);
  --footer-marquee-glow: maroon;
  --footer-portrait-width: clamp(15rem, 25vw, 30rem);
  position: relative;
  width: 100%;
  height: 125vh;
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-primary) 25%);
  overflow: hidden;
}
.page-home .footer .footer__shell {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-block: auto;
}
.page-home .footer .footer__shell .footer__clip {
  position: absolute;
  inset: 0rem 1rem -20vh 1rem;
  background-color: var(--color-bg-dark);
  color: var(--footer-text-main);
  clip-path: url(#Footer);
  overflow: hidden;
}
.page-home .footer .footer__shell .footer__clip .footer__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 600px) 1fr;
  grid-template-areas: "left stage right";
  align-items: start;
  height: 80%;
  padding-inline: 5vw;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__headline {
  position: absolute;
  top: 4%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 20;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__headline .text-serif {
  font-size: clamp(2rem, 4vw, 4.5rem);
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__subheadline {
  position: absolute;
  top: 14%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 20;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__subheadline .text-serif {
  font-size: clamp(2rem, 4vw, 4.5rem);
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side {
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 50vh;
  margin-top: 60%;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side--left {
  grid-area: left;
  align-items: center;
  text-align: center;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side--right {
  grid-area: right;
  align-items: center;
  text-align: center;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side-label {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--color-text-footer);
  font-weight: bold !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2vw, 1.5rem) !important;
  font-weight: 700 !important;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side-links a,
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side-links span {
  color: var(--color-text-label-footer);
  font-size: clamp(1rem, 1.5vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side-links a:hover,
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side-links span:hover {
  opacity: 0.7;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__stage {
  grid-area: stage;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  width: calc(100% + 4vw);
  margin-inline: -2vw;
  position: static;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__stage .footer__portrait {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  flex: 1;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__stage .footer__portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
  display: block;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__stage .footer__cta {
  position: absolute;
  align-items: flex-start;
  bottom: 28vh;
  z-index: 20;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__marquee {
  position: absolute;
  bottom: 28vh;
  left: 0;
  width: 100%;
  z-index: 1;
  display: flex;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__marquee::before,
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  z-index: 2;
  pointer-events: none;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-dark) 0%, transparent 100%);
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-dark) 0%, transparent 100%);
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__marquee-track {
  display: flex;
  gap: clamp(2rem, 4vw, 4rem);
  width: -moz-max-content;
  width: max-content;
  animation: footerStrip 28s linear infinite;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__marquee-item {
  display: flex;
  align-items: center;
}
.page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__marquee-item img {
  height: 20vh;
  max-width: none;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.6;
}

.page-home .footer .footer__legal {
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1rem;
  color: var(--color-surface-strong);
  font-size: 0.7rem !important;
  font-weight: 600;
}
.page-home .footer .footer__legal .footer__legal-links,
.page-home .footer .footer__legal .footer__legal-links-pt {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
  font-size: 1rem !important;
}
.page-home .footer .footer__legal .footer__legal-links a,
.page-home .footer .footer__legal .footer__legal-links-pt a {
  color: inherit;
  text-decoration: none;
}
.page-home .footer .footer__legal .footer__legal-links a:hover,
.page-home .footer .footer__legal .footer__legal-links-pt a:hover {
  color: var(--color-dark);
}

@keyframes footerStrip {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 48rem) {
  .page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 55%) minmax(0, 1fr);
    grid-template-areas: "left stage right";
    align-items: start;
    justify-items: initial;
    gap: 0;
    padding-inline: 2vw;
  }
  .page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side {
    margin-top: 30%;
    gap: 0.4rem;
  }
  .page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout,
  .page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout {
    align-items: center;
    text-align: center;
    overflow: hidden;
  }
  .footer__side--left {
    text-align: left !important;
    align-items: flex-start !important;
    overflow: visible !important;
    margin-left: 0rem !important;
    padding-bottom: 35vh !important;
  }
  .footer__side--right {
    text-align: right !important;
    overflow: visible !important;
    margin-right: 0rem !important;
    align-items: flex-end !important;
    padding-bottom: 35vh !important;
  }
  .footer__side-links a,
  .footer__side-links span {
    font-size: clamp(0.75rem, 1.9vw, 0.85rem) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .footer__headline {
    margin-top: 10vh !important;
    scale: 1.5 !important;
  }
  .footer__subheadline {
    margin-top: 5vh !important;
    scale: 0.8 !important;
  }
  .page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side-label {
    font-size: clamp(0.5rem, 2.5vw, 1rem) !important;
    letter-spacing: 0.02em;
  }
  .page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side-links a,
  .page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__side-links span {
    font-size: clamp(0.4rem, 1.9vw, 0.85rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
  }
  .page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout .footer__stage {
    width: calc(100% + 2vw);
    margin-inline: -1vw;
  }
  .footer__marquee {
    position: absolute;
    bottom: 60vh !important;
    left: 0;
    width: 100%;
    height: 25vh !important;
    z-index: 1;
    display: flex;
  }
  .footer__marquee::before,
  .footer__marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: auto;
    z-index: 2;
    pointer-events: none;
  }
  .footer__marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-dark) 0%, transparent 100%);
  }
  .footer__marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-dark) 0%, transparent 100%);
  }
  .footer__marquee-track {
    display: flex;
    gap: 5rem !important;
    width: -moz-max-content;
    width: max-content;
    animation: footerStrip 28s linear infinite;
  }
  .footer__marquee-item {
    display: flex;
    align-items: center;
  }
  .footer__marquee-item img {
    height: 20vh !important;
    max-width: none;
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
    opacity: 0.6;
  }
  .page-home .footer .footer__shell .footer__clip .footer__inner .footer__layout {
    height: 80%;
    align-items: end;
    padding-bottom: 5vh;
  }
  .footer__stage .footer__portrait img {
    padding-bottom: 100%;
    scale: 1.6 !important;
  }
  .footer__legal {
    padding-inline: 0 !important;
    margin-left: 0vw;
    margin-bottom: -0.8rem;
    gap: 0.5rem !important;
  }
  .footer__legal .footer__legal-links {
    scale: 0.7 !important;
    text-align: center !important;
  }
  .footer__legal .footer__legal-links-pt {
    scale: 0.5 !important;
    text-align: center !important;
    margin-right: -2.5rem;
  }
}
/* ==========================================================================
   SERVICES GRID (Ajustado para GSAP)
   ========================================================================== */
.services {
  display: grid;
  gap: var(--space-5);
}

.services__layout {
  display: grid;
  gap: var(--space-5);
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
}

.services__visual {
  position: relative;
  width: 100%;
}

.services__canvas {
  /* 1. Extrapola o container para preencher 100% da largura da tela */
  width: 80vw;
  margin-left: calc(50% - 40vw);
  height: clamp(16rem, 50vw, 22rem);
  /* 2. Manda para o fundo e evita qualquer interferência (como bloquear cliques) */
  position: relative;
  z-index: -1;
  pointer-events: none;
  transform: translateY(-15%);
  /* 3. Como colocar sutilmente para cima:
     Você pode usar a propriedade 'transform: translateY()' com um valor negativo,
     da mesma maneira que usamos calc() para quebrar a largura.
     Exemplo:
     transform: translateY(-50px); 
     ou
     transform: translateY(-5%);
  */
  /* 4. Previne que a imagem estique (considerando a proporção de cada frame) */
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-lg); /* Talvez possa ser removido já que agora preenche a tela inteira */
}

.services__divider {
  display: none;
}

.services__grid {
  position: relative;
  width: 100%;
}

/* CARDS */
.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-inline: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-secondary);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-soft);
  min-height: clamp(25rem, 50vh, 40rem);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -15%;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 190, 40, 0.5) 0%, rgba(255, 150, 15, 0.3) 30%, rgba(255, 110, 0, 0.15) 55%, rgba(255, 80, 0, 0.06) 75%, transparent 100%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
  animation: fireGlow 4s ease-in-out infinite alternate;
}

@keyframes fireGlow {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 0.75;
    transform: scale(1.03);
  }
}
.service-card:hover {
  box-shadow: var(--shadow-glow);
  border-color: var(--color-primary-subtle);
}

.service-card__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);
  margin-top: 1rem;
  color: var(--color-primary-contrast);
}

.service-card__head h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 80%;
  margin: 0;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: var(--radius-md);
  background: var(--color-bg-icon-project);
  color: var(--color-icon-project);
}

.service-card__icon svg {
  width: 3.2rem;
  height: 3.2rem;
}

.service-card__index {
  color: var(--color-primary-contrast);
  font-weight: 700;
}

.service-card span {
  color: var(--color-text-project);
  font-size: clamp(0.95rem, 2.1vw, 3.1rem);
  line-height: 1.6;
  margin-top: auto;
  margin-bottom: var(--space-2);
  text-align: justify;
  padding-inline: 1.5rem;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  margin-bottom: 1rem;
}

.service-card__tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-primary-contrast);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   BREAKPOINT MOBILE (Ajustes Específicos para Mobile)
   ========================================================================== */
@media (max-width: 47.99rem) {
  .services {
    /* Ajuste do espaçamento desta sessão para as outras (anterior e posterior) */
    margin-top: 2rem;
    margin-bottom: 4rem;
    min-height: auto; /* Importante para mobile para não forçar altura de desktop */
    gap: 2rem;
  }
  .section-heading {
    margin-bottom: 2rem;
  }
  .services__visual {
    /* Confirmação de que a animação canva não apareça em telas mobile */
    display: none !important;
  }
  .services__layout {
    gap: 1.5rem;
  }
  /* Correção do tamanho dos elementos e textos no mobile */
  .service-card {
    min-height: auto;
    padding-inline: 1.5rem;
    padding-block: 1.5rem;
    gap: 1rem;
  }
  .service-card_mobile {
    opacity: 0;
    transform: translate3d(0, 2rem, 0);
  }
  .service-card_ready_mobile {
    will-change: opacity, transform;
  }
  .service-card_mobile.service-card_visible_mobile {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .service-card__head {
    /* Ajuste para não quebrar feio em telas muito pequenas */
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 0;
  }
  .service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
  }
  .service-card__icon svg {
    width: 2rem;
    height: 2rem;
  }
  .service-card__head h3 {
    font-size: 1.15rem;
    max-width: 100%;
    line-height: 1.25;
  }
  .service-card span {
    font-size: 0.95rem;
    padding-inline: 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: left;
  }
  .service-card__tags {
    gap: 0.4rem;
    margin-bottom: 0;
  }
  .service-card__tags span {
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
    margin-bottom: 0;
    margin-top: 0;
  }
}
/* ==========================================================================
   BREAKPOINT DESKTOP (Engenharia do Layout)
   ========================================================================== */
@media (min-width: 64rem) {
  .services__layout {
    grid-template-columns: 35% 1fr;
    gap: var(--space-8);
    align-items: start;
  }
  .services__visual {
    height: auto;
  }
  .services__canvas {
    height: calc(100vh - 12rem);
    max-height: 800px;
  }
  .services__divider {
    display: block;
    position: absolute;
    top: 5%;
    bottom: 5%;
    right: calc(var(--space-8) / 2 * -1);
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--color-bg-project), transparent);
    pointer-events: none;
  }
}
.language-landing {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: var(--space-5) 0;
}

.language-landing__shell {
  display: grid;
  gap: var(--space-5);
}

.site-signature {
  width: -moz-fit-content;
  width: fit-content;
}

.language-landing__content {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
}

.language-landing__intro,
.language-landing__fallback {
  max-width: 40rem;
  color: var(--color-text-soft);
}

.language-grid {
  display: grid;
  gap: 1rem;
}

.hero__animation-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-right: 5vw;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(100, 100, 100, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(100, 100, 100, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  background-color: #f0eeec;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 75% at 50% 45%, transparent 20%, rgba(80, 78, 76, 0.35) 70%, rgba(40, 38, 36, 0.72) 100%);
  pointer-events: none;
}

.hero_lnportrait {
  position: absolute;
  justify-self: right;
  inset: 0;
  width: auto;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 48rem) {
  .hero_lnportrait {
    position: absolute;
    justify-self: right;
    margin-left: 4rem;
    inset: 0;
    width: auto;
    height: auto;
    align-self: end;
    z-index: 1;
    pointer-events: none;
  }
}

.hero-title {
  text-align: left;
  margin-inline: 10vw auto;
  margin-top: 200px;
  color: #231816;
  width: 100%;
  line-height: 1.3;
}
@media (max-width: 48rem) {
  .hero-title {
    text-align: left;
    margin-inline: 2vw auto;
    margin-top: 100px;
  }
}

.hero-title2 {
  text-align: left !important;
  margin-inline: 10vw auto !important;
  color: #231816;
  width: 100%;
  line-height: 1.3;
}
@media (max-width: 48rem) {
  .hero-title2 {
    text-align: left !important;
    margin-inline: 2vw auto !important;
  }
}/*# sourceMappingURL=main.css.map */