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

@font-face {
  font-family: "Gordita";
  src: url("../assets/fonts/Gordita-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titulo";
  src: url("../assets/fonts/Title-type.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Titulos";
  src: url("../assets/fonts/Oxanium-SemiBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #080f1a;
  --color-bg-deep: #050b13;
  --color-bg-card: #060c14;
  --color-bg-card-soft: #09111d;
  --color-primary: #e63d46;
  --color-primary-hover: #ff4d58;
  --color-text: #f5f7fb;
  --color-text-soft: #c8ced8;
  --color-muted: #687386;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(230, 61, 70, 0.8);
  --color-placeholder: #ffffff;

  --font-main: "Gordita", "Segoe UI", sans-serif;
  --font-title: "Gordita", "Segoe UI", sans-serif;

  --header-height: 112px;
  --side-nav-width: 200px;
  --content-left: 410px;
  --content-max: 1340px;

  --radius-sm: 5px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.28);
}

*,
*::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: var(--font-main);
  overflow-x: hidden;
}

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

button {
  border: 0;
  cursor: pointer;
}

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



::selection {
  background: var(--color-primary);
  color: var(--color-text);
}

.is-hidden {
  display: none !important;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tech-icon--custom {
  position: relative;
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: grid;
  place-items: center;
  font-size: initial;
}

.tech-icon__img {
  position: absolute;
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.tech-icon__img--normal {
  opacity: 1;
}

.tech-icon__img--hover {
  opacity: 0;
}

.tech-icon--custom:hover .tech-icon__img--normal {
  opacity: 0;
  transform: translateY(-4px) scale(1.05);
}

.tech-icon--custom:hover .tech-icon__img--hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.05);
}
