* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul {
  list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #111821; /* Dark background matching the page theme */
}

::-webkit-scrollbar-thumb {
  background: #4a525d; /* Sleek, thin gray rounded thumb */
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f2ca50; /* Turn yellow/gold on hover for interactive feed */
}

* {
  scrollbar-width: thin;
  scrollbar-color: #4a525d #111821;
}

/* TOKENS - COLORS (PRIMITIVE + SEMANTIC) Industrial Precision Mono */
/* ---------- SURFACES ---------- */
/* ---------- TEXT ---------- */
/* ---------- OUTLINE ---------- */
/* ---------- BRAND / PRIMARY ---------- */
/* ---------- SECONDARY ---------- */
/* ---------- TERTIARY ---------- */
/* ---------- ERROR ---------- */
/* ---------- GRADIENTS ---------- */
/* TYPOGRAPHY */
@font-face {
  font-family: "Arial-Black";
  src: url(/src/fonts/Arial_Black.ttf) format("truetype");
}
@font-face {
  font-family: "Arial-Medium";
  src: url(/src/fonts/Arial-Medium.ttf) format("truetype");
}
header {
  width: 100%;
  height: 80px;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 20;
}
header div.container-header {
  width: 100%;
  height: 100%;
  display: flex;
  padding: 0 50px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
header div.container-header div.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
}
header div.container-header div.logo img {
  display: block;
  width: 150px;
}
header div.container-header button.hamburger {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 40;
  height: 40px;
  width: 40px;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
header div.container-header button.hamburger span {
  width: 30px;
  height: 2.7px;
  background-color: black;
  position: relative;
  margin: 5px;
  border-radius: 5px;
  transition: all 0.2s;
}
header div.container-header button.hamburger.active span.span-one {
  transform: translateY(6px) rotate(45deg);
}
header div.container-header button.hamburger.active span.span-two {
  transform: translateY(-6px) rotate(-45deg);
}
header div.container-header button.hamburger.active:hover {
  background-color: #F2CA50;
}
header .menu-blur {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 25;
}
header .menu-blur.active {
  opacity: 1;
  visibility: visible;
}
header nav.menu {
  position: fixed;
  top: 15px;
  right: 20px;
  width: 30vw;
  min-width: 520px;
  height: 94vh;
  padding: 24px 0 0;
  background: linear-gradient(115deg, #eef6fb 0%, #dfe7ee 48%, #f1f1f1 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Arial-Medium", Arial, sans-serif;
  color: #101827;
  transform: translateX(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 30;
}
header nav.menu .menu-logo {
  padding: 0 26px 80px;
}
header nav.menu .menu-logo img {
  display: block;
  width: 150px;
}
header nav.menu ul.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
  flex: 1;
}
header nav.menu ul.nav-list li {
  position: relative;
  min-height: 92px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
header nav.menu ul.nav-list li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background-color: rgba(16, 24, 39, 0.9);
  transition: width 0.9s ease;
}
header nav.menu ul.nav-list li a {
  min-height: inherit;
  padding: 0 26px;
  display: flex;
  align-items: center;
  color: inherit;
  font-family: "Arial-Medium", Arial, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 0.95;
  text-decoration: none;
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(28px);
  transition: color 0.15s ease, opacity 0.38s ease, transform 0.38s ease;
}
header nav.menu ul.nav-list li a:hover {
  color: #F2CA50;
  transform: translateX(8px);
}
header nav.menu .menu-footer {
  min-height: 174px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
header nav.menu .menu-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background-color: rgba(16, 24, 39, 0.9);
  transition: width 0.9s ease;
}
header nav.menu .menu-footer .menu-footer-column {
  position: relative;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
header nav.menu .menu-footer .menu-footer-column + .menu-footer-column::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
  background-color: rgba(16, 24, 39, 0.9);
  transition: height 0.9s ease;
}
header nav.menu .menu-footer .menu-footer-column a,
header nav.menu .menu-footer .menu-footer-column button,
header nav.menu .menu-footer .menu-footer-column span {
  color: #101827;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  text-decoration: none;
}
header nav.menu .menu-footer .language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
header nav.menu .menu-footer .language-option {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-weight: 400;
}
header nav.menu .menu-footer .language-option.active {
  font-weight: 700;
}
header nav.menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.45s ease, opacity 0.3s ease;
}
header nav.menu.active ul.nav-list li:not(:first-child)::before,
header nav.menu.active .menu-footer::before {
  width: 100%;
}
header nav.menu.active ul.nav-list li a {
  opacity: 1;
  transform: translateX(0);
}
header nav.menu.active ul.nav-list li:nth-child(1) a {
  transition-delay: 0.12s;
}
header nav.menu.active ul.nav-list li:nth-child(2) a {
  transition-delay: 0.2s;
}
header nav.menu.active ul.nav-list li:nth-child(3) a {
  transition-delay: 0.28s;
}
header nav.menu.active ul.nav-list li:nth-child(4) a {
  transition-delay: 0.36s;
}
header nav.menu.active ul.nav-list li:nth-child(5) a {
  transition-delay: 0.44s;
}
header nav.menu.active ul.nav-list li a:hover {
  color: #F2CA50;
  transform: translateX(8px);
  transition-delay: 0s;
}
header nav.menu.active .menu-footer-column + .menu-footer-column::before {
  height: 100%;
}

body.menu-open {
  overflow-y: scroll;
}

@media (max-width: 1120px) {
  header nav.menu {
    width: 54vw;
    min-width: 460px;
  }
}
@media (max-width: 680px) {
  header nav.menu {
    right: 0;
    top: 0;
    width: 100vw;
    min-width: 0;
    height: 100vh;
    transform: translateY(-100%);
  }
  header nav.menu .menu-logo {
    padding-bottom: 40px;
  }
  header nav.menu ul.nav-list li {
    min-height: 82px;
  }
  header nav.menu ul.nav-list li a {
    font-size: 48px;
  }
  header nav.menu .menu-footer {
    min-height: 150px;
  }
  header nav.menu .menu-footer .menu-footer-column {
    padding: 20px 26px;
  }
  header nav.menu .menu-footer .menu-footer-column a,
  header nav.menu .menu-footer .menu-footer-column button,
  header nav.menu .menu-footer .menu-footer-column span {
    font-size: 16px;
  }
  header nav.menu.active {
    transform: translateY(0);
  }
}
@media (max-width: 980px) {
  header div.container-header {
    padding: 0 40px;
  }
  header div.container-header div.logo {
    padding-left: 10px;
  }
}
@media (max-width: 620px) {
  header div.container-header {
    padding: 0 24px;
  }
  header div.container-header div.logo {
    padding-left: 10px;
  }
}
.home {
  position: relative;
  min-height: 100vh;
  padding: 0;
  background: linear-gradient(to bottom, #f5f5f7 50%, #f2ca50 50%, #947a19 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background vertical grid lines */
.home-grid-lines {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  right: 50px;
  width: calc(100% - 100px);
  pointer-events: none;
  z-index: 1;
  display: block;
}

.grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(17, 24, 33, 0.06);
}
.grid-line:nth-child(1) {
  left: 0;
}
.grid-line:nth-child(2) {
  left: 25%;
}
.grid-line:nth-child(3) {
  left: 50%;
}
.grid-line:nth-child(4) {
  left: 75%;
}
.grid-line:nth-child(5) {
  left: 100%;
}

.home-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

.home-top-row {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-top: 120px; /* Space for absolute header */
  padding-bottom: 40px;
  box-sizing: border-box;
}

.home-bottom-row {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 80px;
  box-sizing: border-box;
}

.home-title-wrapper {
  max-width: 780px;
  padding-left: 15px; /* Aligns content with the logo next to Line 1 */
}

.home-info-wrapper {
  max-width: 580px;
  padding-left: 15px; /* Aligns content with the logo next to Line 1 */
}

.home-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.home-tag span {
  width: 8px;
  height: 8px;
  background-color: #111821;
  border-radius: 50%;
}
.home-tag p {
  padding: 5px 12px;
  background-color: #111821;
  color: #f2ca50;
  font-family: "Arial-Black", Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.home-tag::after {
  content: "";
  width: 58px;
  height: 1px;
  background-color: rgba(17, 24, 33, 0.35);
}

.home h1 {
  color: #111821;
  font-family: "Arial-Black", Arial, sans-serif;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -1px;
  margin: 0;
}

.home-description {
  max-width: 520px;
  color: #111821;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 36px;
  font-weight: 100;
}

.home-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Industrial style buttons with corners and bullets */
.btn-industrial {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background-color: #f5f5f5;
  color: #111821;
  font-family: "Arial-Black", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s, transform 0.2s;
}
.btn-industrial .btn-bullet {
  width: 10px;
  height: 10px;
  padding: 5px;
  background-color: #f2ca50;
  margin-right: 12px;
  display: inline-block;
  transition: transform 0.25s;
}
.btn-industrial .btn-corner {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid #111821;
  pointer-events: none;
  transition: transform 0.2s;
}
.btn-industrial .top-left {
  top: -3px;
  left: -3px;
  border-right: none;
  border-bottom: none;
}
.btn-industrial .top-right {
  top: -3px;
  right: -3px;
  border-left: none;
  border-bottom: none;
}
.btn-industrial .bottom-left {
  bottom: -3px;
  left: -3px;
  border-right: none;
  border-top: none;
}
.btn-industrial .bottom-right {
  bottom: -3px;
  right: -3px;
  border-left: none;
  border-top: none;
}
.btn-industrial:hover {
  background-color: #ffffff;
  transform: translateY(-1px);
}
.btn-industrial:hover .btn-bullet {
  transform: scale(1.2);
}
.btn-industrial:hover .top-left {
  transform: translate(-2px, -2px);
}
.btn-industrial:hover .top-right {
  transform: translate(2px, -2px);
}
.btn-industrial:hover .bottom-left {
  transform: translate(-2px, 2px);
}
.btn-industrial:hover .bottom-right {
  transform: translate(2px, 2px);
}

.btn-secondary-industrial {
  background-color: black;
  color: #f2ca50;
  border: 1px solid rgba(17, 24, 33, 0.2);
}
.btn-secondary-industrial:hover {
  background-color: transparent;
  color: #111821;
  border-color: #111821;
}
.btn-secondary-industrial:hover .btn-bullet {
  background-color: #111821;
}

/* Floating tool layers container */
.home-floating-tools {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.tool-floating-item {
  position: absolute;
  max-width: none;
  filter: drop-shadow(0 25px 25px rgba(17, 24, 33, 0.18));
}

/* Three overlapping layers of tools rotating and floating */
.tool-depth-1 {
  width: 820px;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  animation: driftLarge 12s ease-in-out infinite;
  z-index: 10;
}

.tool-depth-2 {
  width: 540px;
  right: 15%;
  top: 25%;
  transform: rotate(25deg);
  opacity: 0.75;
  filter: drop-shadow(0 15px 15px rgba(17, 24, 33, 0.12));
  animation: driftMedium 18s ease-in-out infinite;
  z-index: 5;
}

.tool-depth-3 {
  width: 320px;
  right: 32%;
  top: 60%;
  transform: rotate(-35deg);
  opacity: 0.45;
  filter: blur(2px) drop-shadow(0 10px 10px rgba(17, 24, 33, 0.08));
  animation: driftSmall 24s ease-in-out infinite;
  z-index: 2;
}

/* Float Animations */
@keyframes driftLarge {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg) translate(0, 0);
  }
  50% {
    transform: translateY(-53%) rotate(2deg) translate(-10px, -15px);
  }
}
@keyframes driftMedium {
  0%, 100% {
    transform: rotate(25deg) translate(0, 0);
  }
  50% {
    transform: rotate(28deg) translate(15px, -20px);
  }
}
@keyframes driftSmall {
  0%, 100% {
    transform: rotate(-35deg) translate(0, 0);
  }
  50% {
    transform: rotate(-32deg) translate(-15px, 25px);
  }
}
@media (max-width: 980px) {
  .home {
    background: linear-gradient(to bottom, #f5f5f7 40%, #f2ca50 40%, #947a19 100%);
  }
  .home-grid-lines {
    width: calc(100% - 80px);
    max-width: none;
    left: 40px;
    right: 40px;
  }
  .home-title-wrapper,
  .home-info-wrapper {
    padding-left: 10px;
  }
  .home-content {
    padding: 0 40px;
    min-height: auto;
    justify-content: flex-start;
    gap: 60px;
  }
  .home-top-row {
    flex: none;
    padding-top: 100px;
    padding-bottom: 20px;
  }
  .home-bottom-row {
    flex: none;
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .home h1 {
    font-size: 52px;
  }
  .home-floating-tools {
    position: relative;
    width: 100%;
    height: 380px;
    margin-top: -20px;
    margin-bottom: 40px;
  }
  .tool-depth-1 {
    width: 580px;
    right: -10%;
    top: 50%;
  }
  .tool-depth-2 {
    width: 380px;
    right: 15%;
    top: 20%;
  }
  .tool-depth-3 {
    width: 220px;
    right: 40%;
    top: 50%;
  }
}
@media (max-width: 620px) {
  .home {
    background: linear-gradient(to bottom, #f5f5f7 35%, #f2ca50 35%, #947a19 100%);
  }
  .home-content {
    padding: 0 24px;
    gap: 40px;
  }
  .home-grid-lines {
    width: calc(100% - 48px);
    max-width: none;
    left: 24px;
    right: 24px;
  }
  .home-title-wrapper,
  .home-info-wrapper {
    padding-left: 10px;
  }
  .home h1 {
    font-size: 38px;
  }
  .home-description {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .home-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .btn-industrial {
    width: 100%;
    justify-content: center;
  }
  .home-floating-tools {
    height: 280px;
  }
  .tool-depth-1 {
    width: 440px;
    right: -15%;
  }
  .tool-depth-2 {
    width: 280px;
    right: 10%;
  }
  .tool-depth-3 {
    width: 180px;
    right: 35%;
  }
}
.mouse-carousel {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mouse-track {
  display: flex;
  gap: 28px;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.mouse-card {
  flex: 0 0 260px;
  background: #151515;
  border-radius: 16px;
  padding: 12px;
  opacity: 0.4;
  filter: blur(2px);
  transform: scale(0.85);
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}
.mouse-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}
.mouse-card h3 {
  margin-top: 12px;
  text-align: center;
  color: #fff;
}

/* card em destaque (controlado via JS) */
.mouse-card.active {
  transform: scale(1.15);
  opacity: 1;
  filter: blur(0);
  z-index: 10;
}

.catalog {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  padding: 80px 8%;
}

.catalog-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.catalog-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.catalog-image img {
  max-width: 100%;
  width: 550px;
  height: auto;
}

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

.catalog-controls {
  position: absolute;
  bottom: 60px;
  right: 8%;
}

.categoria {
  color: #99907c;
  letter-spacing: 4px;
  font-size: 14px;
  text-transform: uppercase;
}

.title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.descricao {
  color: #99907c;
  max-width: 420px;
  line-height: 1.6;
  font-size: 17px;
}

.tags span {
  padding: 10px 18px;
  border: 1px solid #99907c;
  border-radius: 999px;
  font-size: 14px;
  cursor: default;
  transition: 0.3s;
}

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

.btn-buy {
  padding: 16px 40px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

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

footer {
  background-color: #131313;
  color: #ffe9b0;
  padding: 20px;
  text-align: center;
  font-family: "Arial-Medium", Arial, sans-serif;
}

body {
  background-color: whitesmoke;
}

/*# sourceMappingURL=style.css.map */
