@import "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap";

/* components/nav/nav.scss */
:root {
  --nav-open-size: 1600px;
  --nav-open-size-half: 800px;
  --nav-closed-size: 64px;
  --nav-open-offset: calc((var(--nav-open-size) - var(--nav-closed-size)) / 2);
}
.nav-floating {
  position: fixed;
  top: var(--spacing-page);
  right: var(--spacing-page);
  width: var(--nav-closed-size);
  height: var(--nav-closed-size);
  outline: 0 solid var(--background-2);
  border-radius: 50%;
  overflow: hidden;
  z-index: var(--z-top);
  pointer-events: auto;
  transition:
    width 0.36s ease-out,
    height 0.36s ease-out,
    top 0.36s ease-out,
    right 0.36s ease-out,
    outline 0.2s ease-out;
}
.nav-floating:hover {
  outline: 8px solid var(--background-2);
}
.nav-floating__children {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: var(--spacing-3);
  z-index: calc(var(--z-top) + 2);
  padding-right: 112px;
}
.nav-floating__children > * {
  margin: 0;
}
.nav-floating.nav-floating--open {
  width: var(--nav-open-size);
  height: var(--nav-open-size);
  top: calc(var(--spacing-page) - var(--nav-open-offset));
  right: calc(var(--spacing-page) - var(--nav-open-offset));
  transition:
    width 0.46s ease-in-out,
    height 0.46s ease-in-out,
    top 0.46s ease-in-out,
    right 0.46s ease-in-out;
}
.nav-panel {
  position: absolute;
  top: 50%;
  right: 50%;
  width: var(--nav-open-size);
  height: var(--nav-open-size);
  transform: translate(50%, -50%);
  border-radius: 50%;
  background-color: var(--fill-high);
  pointer-events: none;
  z-index: var(--z-medium);
}
.nav-panel__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: var(--z-top);
}
.nav-floating.nav-floating--open .nav-panel__content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-panel__inner {
  position: absolute;
  left: calc(var(--nav-open-size-half) - min(320px, 45vw));
  top: calc(50% - 24px);
  width: min(320px, 45vw);
  display: flex;
  flex-direction: column;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 32px;
}
.nav-list li {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.nav-floating.nav-floating--open .nav-list li {
  opacity: 1;
  transform: translateX(0);
}
.nav-link,
.nav-action {
  display: block;
  width: 100%;
  padding: var(--spacing-2) 24px;
  color: var(--fill-low);
  font-family: var(--font-family-title);
  text-decoration: none;
  text-align: right;
  font-size: var(--text-size-5);
  line-height: 1.4;
  cursor: pointer;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  outline: 0px solid transparent;
  background: transparent;
  transition: all 0.2s ease;
}
.nav-link:hover:not(.nav-link--active)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  outline: 8px solid var(--fill-low);
  background: transparent;
}
.nav-link--active {
  color: var(--fill-lowest);
}
.nav-link--active::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--fill-lowest);
}
.nav-action {
  border: none;
}
.nav-toggle {
  font-weight: 700;
}
.nav-trigger {
  position: absolute;
  top: 50%;
  right: 50%;
  width: var(--nav-closed-size);
  height: var(--nav-closed-size);
  border-radius: 50%;
  background-color: var(--fill-high);
  border: 0;
  outline: 8px solid var(--fill-lowest);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translate(50%, -50%);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
  z-index: calc(var(--z-top) + 1);
  pointer-events: auto;
}
.nav-trigger:hover {
  background-color: var(--fill-highest);
  border-color: var(--fill-lowest);
}
.nav-floating.nav-floating--open .nav-trigger {
  transform: translate(50%, -50%);
}
.nav-trigger:not(.nav-trigger--open):hover .nav-trigger__icon {
  background-color: var(--fill-lowest);
}
.nav-trigger__icon {
  display: block;
  width: 8px;
  height: 32px;
  border-radius: 999px;
  background-color: var(--fill-lowest);
  transition: transform 0.25s ease;
}
.nav-trigger--open .nav-trigger__icon {
  transform: rotate(90deg);
}

/* components/button/icon-button.scss */
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background-color: var(--fill-high);
  color: var(--fill-lowest);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
  outline: none;
}
.icon-button:hover {
  background-color: var(--fill-highest);
  color: var(--fill-lowest);
}
.icon-button > svg {
  width: 60%;
  height: 60%;
  display: block;
}
.icon-button:active {
  transform: translateY(1px);
}
.icon-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.icon-button--sm {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
}
.icon-button--md {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
}
.icon-button--lg {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
}
.icon-button--xl {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
}
.theme-toggle-button {
  position: fixed;
  top: var(--spacing-page);
  right: calc(var(--spacing-page) + 88px);
  z-index: calc(var(--z-top) + 1);
}

/* components/button/button.scss */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-5);
  background-color: var(--fill-high);
  color: var(--fill-bottom);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-size-3);
  text-transform: uppercase;
  box-shadow: 0 0 0 0 var(--fill-highest);
  outline: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.button:hover {
  background-color: var(--fill-highest);
  box-shadow: 0 0 0 4px var(--fill-highest);
  outline: none;
}
.button svg {
  display: inline-flex;
  margin-right: 0.5rem;
}
.button--lg {
  padding: var(--spacing-2) var(--spacing-3);
}
.button--md {
  padding: var(--spacing-1) var(--spacing-2);
}
.button--sm {
  padding: var(--spacing-1) var(--spacing-1);
}
.button--ghost {
  background-color: transparent;
  color: var(--fill-high);
  border: none;
  box-shadow: none;
  outline: none;
}
.button--ghost:first-child {
  padding-left: 0;
}
.button--ghost:hover {
  background-color: transparent;
  color: var(--fill-top);
  box-shadow: none;
  outline: none;
}
.button--icon {
  padding: var(--spacing-2);
  width: calc(var(--spacing-5) + var(--spacing-2));
  height: calc(var(--spacing-5) + var(--spacing-2));
  min-width: auto;
  border-radius: 50%;
  font-size: 1.25rem;
}

/* components/dialog/dialog.scss */
.dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: calc(var(--z-top) + 10);
  padding: var(--spacing-page);
}
.dialog {
  width: min(520px, 100vw - 48px);
  border-radius: var(--radius-5) var(--radius-5) 0 var(--radius-5);
  padding: var(--spacing-4);
  background-color: var(--fill-lowest);
  color: var(--fill-high);
}
.dialog__header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
}
.dialog__body {
  display: grid;
  gap: var(--spacing-3);
  margin-top: var(--spacing-1);
}
.dialog__body p {
  margin: 0;
  color: inherit;
  line-height: 1.7;
}
.dialog__actions {
  display: flex;
  gap: var(--spacing-2);
  flex-wrap: wrap;
}
.dialog__actions button {
  flex: 1;
}
.dialog__actions .button {
  min-width: 160px;
}
.dialog__actions .button--ghost {
  border-color: currentColor;
}

/* components/write-down/write-down.scss */
.write-down {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  max-width: 900px;
  color: var(--foreground-1);
  position: relative;
  line-height: 1.3em;
}
.page.hero .header-description p.write-down:last-child {
  margin-bottom: 1em;
}
.write-down::after {
  content: "|";
  font-weight: 700;
  display: inline-block;
  margin-left: 0.15em;
  color: var(--foreground-1);
  opacity: 0;
  position: absolute;
}
.write-down__ghost {
  color: var(--fill-lowest);
  background-color: var(--fill-high);
  opacity: 1;
}
.write-down--typing::after,
.write-down--ghosting::after {
  opacity: 1;
}
.write-down--ai-chat::after {
  display: none;
}
.write-down--blinking::after {
  opacity: 1;
  animation: write-down-blink 0.35s step-end 6 forwards;
}
@keyframes write-down-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* components/scroll/scroll.scss */
.scroll-main {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  touch-action: pan-y;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: transparent;
}
.scroll-main::-webkit-scrollbar {
  width: 10px;
}
.scroll-main::-webkit-scrollbar-track {
  background: transparent;
}
.scroll-main::-webkit-scrollbar-thumb {
  background-color: var(--fill-low);
  border-radius: 32px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.scroll-content {
  min-height: 100vh;
  width: 100%;
}

/* components/header/header.scss */
.header {
  position: relative;
}
.header.background {
  background-color: var(--fill-bottom);
  background-size: cover;
  background-position: center;
}
.header.background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}
.header__container {
  position: relative;
  gap: var(--spacing-5);
  min-height: 30vh;
}
.header__top {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-3);
  flex-wrap: wrap;
  flex-direction: column-reverse;
  align-items: flex-start;
}
.header__back {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  padding: 0;
}
.header__breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-right: var(--spacing-5);
  overflow: hidden;
  width: calc(100% - 80px);
}
@media (orientation: portrait) {
  .header__breadcrumbs {
    margin-right: 0;
    gap: 0.1rem;
  }
}
.header__breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2);
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}
@media (orientation: portrait) {
  .header__breadcrumbs ul {
    gap: var(--spacing-1);
  }
}
.header__breadcrumbs li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
@media (orientation: portrait) {
  .header__breadcrumbs li {
    gap: var(--spacing-1);
  }
}
.header__breadcrumb-separator {
  color: var(--fill-low);
}
.header__breadcrumb-link {
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  color: var(--fill-medium);
}
@media (orientation: portrait) {
  .header__breadcrumb-link {
    padding: auto var(--spacing-0);
  }
}
.header__logo {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 0;
  line-height: 1.05;
  max-width: 100%;
}
.header__description {
  color: var(--fill-medium);
  font-size: var(--text-size-5);
  line-height: var(--line-height-5);
  margin-top: var(--spacing-3);
}
@media (orientation: portrait) {
  .header__description {
    font-size: var(--text-size-4);
    line-height: var(--line-height-4);
  }
}

/* components/content-index/content-index.scss */
.content-index {
  position: fixed;
  right: var(--spacing-page);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
  padding: 0.25rem;
  background: transparent;
  z-index: 20;
  background: var(--background-1);
  padding: var(--spacing-2) var(--spacing-0) var(--spacing-2) var(--spacing-2);
  border-radius: var(--radius-4);
  box-shadow: 0 0 0 2px var(--background-2);
  transition: all 0.2s ease;
}
.content-index:hover {
  background: var(--background-1);
  padding: var(--spacing-3);
  border-radius: var(--radius-4);
  box-shadow: 0 0 0 2px var(--background-2);
}
@media (max-width: 960px) {
  .content-index {
    display: none;
  }
}
.content-index__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 var(--spacing-1);
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  transition: background 0.2s ease, outline 0.2s ease;
  width: 100%;
  border-radius: var(--radius-3);
  outline: 4px solid rgba(255, 255, 255, 0);
}
.content-index__item:hover {
  background: rgba(255, 255, 255, 0.06);
  outline: 4px solid rgba(255, 255, 255, 0.06);
}
.content-index__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--fill-low);
  flex-shrink: 0;
}
.content-index__label {
  display: inline-block;
  opacity: 0;
  max-width: 0;
  transform: translateX(0.5rem);
  transition:
    opacity 0.2s ease,
    max-width 0.2s ease,
    transform 0.2s ease;
}
.content-index:hover .content-index__label {
  opacity: 1;
  max-width: 40vw;
  transform: translateX(0);
}
.content-index__item--h3 .content-index__marker,
.content-index__item--h4 .content-index__marker,
.content-index__item--h5 .content-index__marker,
.content-index__item--h6 .content-index__marker {
  background: rgba(255, 255, 255, 0.12);
}

/* components/formatted-text/formatted-text.scss */
.formatted-text {
  max-width: min(1100px, 100%);
  margin: 0 auto;
  word-break: break-word;
}
.formatted-text p {
  margin-bottom: var(--spacing-4);
  line-height: 1.8;
}
.formatted-text a {
  color: var(--primary);
  text-decoration: underline;
}
.formatted-text strong,
.formatted-text b {
  font-weight: 700;
}
.formatted-text em,
.formatted-text i {
  font-style: italic;
}
.formatted-text blockquote {
  margin: var(--spacing-4) 0;
  padding: var(--spacing-4);
  border-left: 4px solid var(--primary);
  background: var(--fill-muted);
}
.formatted-text ul,
.formatted-text ol {
  margin: var(--spacing-4) 0;
  padding-left: var(--spacing-5);
}
.formatted-text img {
  max-width: 100%;
  display: block;
  margin: var(--spacing-4) auto;
}

/* components/carousel/carousel.scss */
.carousel-overlay {
  position: relative;
  overflow: visible;
  width: 100vw;
}
.carousel-pin {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100vh;
  justify-content: center;
  padding: 2rem 0;
  background: transparent;
}
.carousel {
  width: 100%;
  overflow: hidden;
  max-height: var(--img-preview-max-height);
}
@media (orientation: portrait) {
  .carousel {
    max-height: var(--img-preview-max-height-portrait);
  }
}
.carousel-items {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
  align-items: center;
}
.carousel-item {
  flex: 0 0 100%;
  max-width: var(--img-preview-max-width);
  max-height: var(--img-preview-max-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (orientation: portrait) {
  .carousel-item {
    max-width: var(--img-preview-max-width-portrait);
    max-height: var(--img-preview-max-height-portrait);
  }
}
.carousel-item img {
  display: block;
  width: auto;
  max-height: var(--img-preview-max-height);
  height: auto;
  object-fit: cover;
  overflow: hidden;
  border-radius: var(--radius-3);
}
@media (orientation: portrait) {
  .carousel-item img {
    max-height: var(--img-preview-max-height-portrait);
  }
}
[data-theme=light] .carousel--grayscale .carousel-item img {
  filter: grayscale(96%) sepia(0.05) opacity(92%);
}
[data-theme=dark] .carousel--grayscale .carousel-item img {
  filter: grayscale(96%) sepia(0.36) opacity(82%);
}
.carousel-pin h2,
.carousel-pin p {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}
.carousel-pin h2 {
  font-size: clamp(1.5rem, 2vw, 2.5rem);
}
.carousel-pin p {
  font-size: 1rem;
  line-height: 1.6;
}

/* pages/articles.scss */
.articles-list {
  display: grid;
  gap: var(--spacing-3);
}
.article-card {
  display: flex;
  gap: var(--spacing-2);
  align-items: flex-start;
  border-radius: var(--radius-3);
  overflow: hidden;
  text-decoration: none;
  min-height: 200px;
  color: inherit;
  transition: transform 0.2s ease, outline 0.2s ease;
  outline: 0 solid var(--fill-low);
  background-color: var(--fill-bottom);
}
@media (orientation: portrait) {
  .article-card {
    flex-direction: column;
    align-items: stretch;
  }
}
.article-card:hover,
.article-card:focus-visible {
  outline: 8px solid var(--fill-low);
  background-color: var(--fill-bottom);
}
.article-card__preview {
  display: flex;
  min-width: 320px;
  width: 320px;
  height: 100%;
  overflow: hidden;
  justify-content: center;
}
.article-card__preview img {
  width: auto;
  max-width: 120%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  display: block;
}
.article-card__content {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-4);
  padding: var(--spacing-3);
}
@media (orientation: portrait) {
  .article-card__content {
    flex-direction: column;
    gap: var(--spacing-2);
    padding: var(--spacing-2);
  }
}
.article-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
  min-width: 0;
}
.article-card__title {
  margin: 0;
  font-size: var(--text-size-5);
  line-height: 1.4;
  font-weight: 500;
}
.article-card__desc {
  margin: 0;
  color: var(--fill-medium);
  font-weight: 300;
  font-size: var(--text-size-3);
  line-height: var(--line-height-3);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2);
  font-size: 0.9rem;
  color: var(--fill-low);
}
.article-card__language {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}
.article-card__language--pt {
  color: var(--success);
  border-color: var(--success);
}
.article-card__language--en {
  color: var(--primary);
  border-color: var(--primary);
}
.articles-section {
  margin-top: var(--spacing-6);
}
.articles-section h2 {
  margin: 0 0 var(--spacing-4);
  font-size: var(--text-size-6);
}
.articles-note {
  margin-top: var(--spacing-5);
  color: var(--fill-medium);
  font-size: var(--text-size-3);
  line-height: var(--line-height-3);
}
.articles-note a {
  color: inherit;
  text-decoration: underline;
}
@media (orientation: portrait) {
  .article-card {
    grid-template-columns: 1fr;
  }
  .article-card__preview {
    max-width: 100%;
    width: auto;
  }
}

/* pages/article.scss */
.article-image {
  width: 100%;
  max-width: min(100%, 1080px);
  margin: 0 auto var(--spacing-4) auto;
  overflow: hidden;
  border-radius: var(--radius-4);
}
.article-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 70vh;
  height: auto;
  object-fit: cover;
}
.article-content {
  max-width: min(1100px, 100%);
  margin: 0 auto;
}
.article-content ul,
.article-content ol {
  margin-left: var(--spacing-3);
  margin-bottom: var(--spacing-3);
}
.article-content img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.article-content figure {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-3);
  margin: var(--spacing-4) 0;
  align-items: stretch;
}
.article-content figure img {
  width: auto;
  flex: 1 1 0;
  min-width: 160px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-4);
}
@media (max-width: 768px) {
  .article-content figure {
    flex-direction: column;
  }
  .article-content figure img {
    width: 100%;
    height: auto;
  }
}
.article-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2);
  color: var(--fill-medium);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  color: var(--fill-medium);
  margin-bottom: var(--spacing-4);
  margin-top: var(--spacing-2);
  text-transform: uppercase;
  font-size: var(--text-size-1);
}
.article-meta span {
  display: inline-flex;
  align-items: center;
}
.article-language {
  padding: 0.2rem 0.45rem;
  border-radius: 9999px;
  border: 1px solid currentColor;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.article-meta span:first-child::before {
  content: "";
  opacity: 0;
}
.article-continue {
  margin-top: var(--spacing-5);
}

/* pages/projects.scss */
.project-case {
  display: grid;
  font-size: var(--text-size-4);
  line-height: var(--line-height-4);
}
.project-case__meta {
  color: var(--fill-lowest);
  flex-wrap: wrap;
  font-size: 0.95rem;
  display: flex;
}
@media (orientation: portrait) {
  .project-case__meta {
    justify-content: center;
  }
}
.project-case__purpose {
  display: grid;
  gap: var(--spacing-3);
  padding-top: var(--spacing-4);
}
.project-case__purpose h3 {
  margin: 0;
}
.project-case__purpose a.button {
  align-self: start;
}
.project-cards-section {
  display: grid;
  gap: var(--spacing-4);
}
.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: var(--spacing-5);
}
@media (orientation: portrait) {
  .project-cards {
    grid-template-columns: 1fr;
  }
}
.project-card {
  display: grid;
  gap: var(--spacing-2);
  text-decoration: none;
  grid-auto-flow: row;
  background: transparent;
  color: inherit;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.project-card h3 {
  margin: 0;
}
.project-card:hover,
.project-card:focus-visible {
  background-color: transparent;
  transform: none;
  border-color: none;
  box-shadow: none;
  outline: none;
}
.project-card--disabled {
  cursor: default;
  color: var(--fill-medium);
}
.project-card--disabled h3 {
  color: var(--fill-medium);
}
.project-card--disabled:hover,
.project-card--disabled:focus-visible {
  transform: none;
}
.project-card__image {
  min-height: 140px;
  overflow: hidden;
  background: var(--fill-low);
}
.project-card__image img {
  display: block;
  width: 320px;
  height: 240px;
  object-fit: cover;
}
.project-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}
.project-card__carousel-block {
  position: relative;
  width: 100%;
  padding: var(--spacing-4) 0;
  min-height: 280px;
  overflow: hidden;
  z-index: 0;
}
.project-card__carousel-shell {
  position: relative;
  inset: auto;
  overflow: hidden;
}
.project-card__carousel {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  gap: var(--spacing-3);
  padding: var(--spacing-3) var(--spacing-4);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.project-card__carousel-shell--behind {
  position: relative;
}
.project-card__carousel--behind {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}
.project-card__carousel::-webkit-scrollbar {
  display: none;
}
.project-card__carousel-item {
  scroll-snap-align: start;
  min-width: clamp(260px, 50vw, 520px);
  aspect-ratio: 16/9;
  border-radius: var(--radius-4);
  overflow: hidden;
  background: var(--fill-low);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
}
.project-card__carousel-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card__carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.56);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}
.project-card__carousel-arrow--left {
  left: 1rem;
}
.project-card__carousel-arrow--right {
  right: 1rem;
}
.project-card__carousel-arrow:hover,
.project-card__carousel-arrow:focus-visible {
  background: rgba(0, 0, 0, 0.72);
}
.project-case--with-carousel .project-case__intro,
.project-case--with-carousel .project-case__details,
.project-case--with-carousel .project-case__meta {
  position: relative;
  z-index: 1;
}
.project-case__intro {
  position: relative;
  z-index: 1;
}
.project-case__details {
  position: relative;
  z-index: 1;
}
.project-case__carousel-block {
  background: transparent;
}
.project-card__body strong {
  font-size: 1rem;
  display: block;
}
.project-card__body p {
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
}
.projects-content {
  position: relative;
  z-index: 2;
}
.projects-gallery {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.projects-gallery__card {
  position: fixed;
  right: 2rem;
  width: 12rem;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  font-weight: 700;
  border-radius: 1.25rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  transform-origin: center;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.projects-gallery__card span {
  font-size: 0.95rem;
  display: block;
}
.projects-gallery__card strong {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.2;
}
.projects-gallery__card--plurall {
  background: #b71c1c;
}
.projects-gallery__card--elo-copilot {
  background: #1b5e20;
}
.projects-gallery__card--email-code {
  background: #0d47a1;
}
@media (max-width: 1200px) {
  .projects-gallery__card {
    right: 1rem;
    width: 10rem;
  }
}
@media (max-width: 768px) {
  .projects-gallery {
    display: none;
  }
}

/* ui/styles.scss */
:root {
  --fill-bottom: hsla(var(--hue), var(--saturation), 100%, 1.0);
  --fill-lowest: hsla(var(--hue), var(--saturation), 95%, 1.0);
  --fill-low: hsla(var(--hue), var(--saturation), 74%, 1.0);
  --fill-medium: hsla(var(--hue), var(--saturation), 50%, 1.0);
  --fill-high: hsla(var(--hue), var(--saturation), 24%, 1.0);
  --fill-highest: hsla(var(--hue), var(--saturation), 10%, 1.0);
  --fill-top: hsla(var(--hue), var(--saturation), 0%, 1.0);
  --spacing-0: 0.25rem;
  --spacing-1: 0.5rem;
  --spacing-2: 1rem;
  --spacing-3: 2rem;
  --spacing-4: 4rem;
  --spacing-5: 8rem;
  --radius-0: 2px;
  --radius-1: 4px;
  --radius-2: 8px;
  --radius-3: 16px;
  --radius-4: 32px;
  --radius-5: 64px;
  --text-size-0: 0.75rem;
  --text-size-1: 0.875rem;
  --text-size-2: 1rem;
  --text-size-3: 1.125rem;
  --text-size-4: 1.25rem;
  --text-size-5: 1.5rem;
  --line-height-0: 1rem;
  --line-height-1: 1.25rem;
  --line-height-2: 1.5rem;
  --line-height-3: 1.75rem;
  --line-height-4: 2rem;
  --line-height-5: 2.25rem;
  --breakpoint-sm: 768px;
  --breakpoint-md: 1024px;
  --breakpoint-lg: 1600px;
  --z-low: 1;
  --z-medium: 1000;
  --z-high: 90000;
  --z-top: 99999;
}
:root {
  --hue: 35;
  --saturation: 10%;
}
html[data-theme=dark] {
  --fill-bottom: hsla(var(--hue), var(--saturation), 0%, 1.0);
  --fill-lowest: hsla(var(--hue), var(--saturation), 10%, 1.0);
  --fill-low: hsla(var(--hue), var(--saturation), 26%, 1.0);
  --fill-medium: hsla(var(--hue), var(--saturation), 50%, 1.0);
  --fill-high: hsla(var(--hue), var(--saturation), 74%, 1.0);
  --fill-highest: hsla(var(--hue), var(--saturation), 90%, 1.0);
  --fill-top: hsla(var(--hue), var(--saturation), 100%, 1.0);
}
.page {
  width: 100%;
  margin: 0 auto;
  padding: var(--spacing-page);
  max-width: 1280px;
}
.page.hero {
  display: grid;
  place-items: center;
  height: 100vh;
}
.tags {
  display: flex;
  gap: var(--spacing-2);
  flex-wrap: wrap;
}
.tag {
  display: inline-block;
  border-radius: var(--radius-3);
  text-transform: uppercase;
}
:root {
  --foreground-0: var(--fill-top);
  --foreground-1: var(--fill-highest);
  --foreground-2: var(--fill-high);
  --foreground-0-contrast: var(--fill-low);
  --foreground-1-contrast: var(--fill-lowest);
  --foreground-2-contrast: var(--fill-bottom);
  --background-0: var(--fill-bottom);
  --background-1: var(--fill-lowest);
  --background-2: var(--fill-low);
  --body-text-color: var(--fill-highest);
  --heading-color: var(--fill-high);
  --text-muted: var(--fill-low);
  --border: var(--fill-medium);
  --font-family: "Inter", sans-serif;
  --font-family-title: "Sora", sans-serif;
  --spacing-page: var(--spacing-4);
  --hero-avatar-size-portrait: 66vw;
  --hero-avatar-size-landscape: 66vh;
  --img-preview-max-width: 800px;
  --img-preview-max-height: 640px;
  --img-preview-max-width-portrait: 480px;
  --img-preview-max-height-portrait: 320px;
}
@media (orientation: portrait) {
  :root {
    --spacing-page: var(--spacing-2);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  margin-left: 2rem;
  margin-bottom: 2rem;
}
* {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
  position: relative;
  font-weight: 500;
  background-color: transparent;
  color: var(--fill-high);
  outline: 4px solid transparent;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    outline 0.2s ease;
}
strong {
  font-weight: 700;
  color: var(--foreground-0);
}
blockquote {
  border-left: 4px solid var(--border);
  padding-left: var(--spacing-3);
  margin-bottom: var(--spacing-3);
  margin-left: -var(--spacing-3);
  font-style: italic;
}
.callout-block {
  border-left: 4px solid var(--fill-high);
  padding-left: var(--spacing-3);
  margin-bottom: var(--spacing-3);
  margin-left: -var(--spacing-3);
  background-color: var(--fill-lowest);
}
.pullquote {
  border-top: 1px solid var(--fill-high);
  border-bottom: 1px solid var(--fill-high);
  padding: var(--spacing-3);
  margin-bottom: var(--spacing-3);
  font-style: italic;
  text-align: center;
}
html,
body,
#root {
  min-height: 100%;
  height: auto !important;
}
html,
body {
  min-height: 100%;
  height: auto !important;
  font-family: var(--font-family);
  background-color: var(--background-1);
  color: var(--foreground-1);
  overflow-x: hidden;
  overflow-y: auto;
  font-weight: 348;
}
body {
  font-size: var(--text-size-4);
  line-height: var(--line-height-4);
}
hr {
  border: none;
  border-bottom: 4px solid var(--fill-bottom);
  border-top: 2px solid var(--fill-low);
  margin: var(--spacing-4) 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-family-title);
  color: var(--heading-color);
  margin-bottom: var(--spacing-2);
  letter-spacing: -0.03em;
}
p {
  margin-bottom: var(--spacing-3);
}
p:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}
h2,
h3,
h4,
h5 {
  font-weight: 400;
}
h2 {
  font-size: clamp(2.3rem, 3.4vw, 3.4rem);
  line-height: clamp(2.3rem, 3.4vw, 3.4rem);
  margin-bottom: var(--spacing-3);
}
h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: clamp(1.6rem, 2.4vw, 2.4rem);
}
h4 {
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: clamp(1.3rem, 1.8vw, 1.8rem);
}
h5 {
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  line-height: clamp(1.1rem, 1.4vw, 1.4rem);
}
article {
  margin-bottom: var(--spacing-4);
  max-width: 720px;
}
article img {
  width: 100%;
  border-radius: var(--radius-4);
  margin-bottom: var(--spacing-3);
  overflow: hidden;
}
article a {
  color: var(--fill-high);
  font-weight: 500;
  position: relative;
  background-color: transparent;
  outline: 4px solid transparent;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    outline 0.2s ease;
}
article a:hover {
  background-color: var(--fill-high);
  color: var(--fill-bottom);
  outline: 4px solid var(--fill-high);
}
footer {
  margin-top: var(--spacing-5);
  color: var(--fill-medium);
}
@media (orientation: portrait) {
  footer {
    font-size: var(--text-size-2);
  }
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content > img {
  margin-top: var(--spacing-4);
  max-width: var(--img-preview-max-width);
  max-height: var(--img-preview-max-height);
  overflow: hidden;
  border-radius: var(--radius-3);
}
@media (orientation: portrait) {
  .content > img {
    max-width: var(--img-preview-max-width-portrait);
    max-height: var(--img-preview-max-height-portrait);
  }
}
section {
  max-width: 1200px;
}
.page.hero {
  max-width: none;
}
.page.hero h2 {
  margin: var(--spacing-1) 0 var(--spacing-3) 0;
  text-transform: lowercase;
}
.page.hero .header {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: space-between;
  gap: var(--spacing-2);
}
.page.hero .header-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-1);
  font-size: clamp(2.6rem, 5.6vw, 5.6rem);
  line-height: 100%;
  font-family: var(--font-family-title);
  font-weight: 678;
  letter-spacing: -0.03em;
  color: var(--fill-high);
}
.page.hero .header-description {
  max-width: min(400px, 100%);
  align-self: flex-end;
  text-align: right;
}
.page.hero .header-description p:last-child {
  margin-bottom: 0;
}
.page.hero .hero-avatar {
  width: var(--hero-avatar-size-landscape);
  height: var(--hero-avatar-size-landscape);
  border-radius: 50%;
  background-image: url(/img/garaujo-avatar.jpg);
  background-size: 110%;
  background-position: center;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: calc(-1 * var(--hero-avatar-size-landscape) / 2);
  margin-top: calc(-1 * var(--hero-avatar-size-landscape) / 2);
}
@media (orientation: portrait) {
  .page.hero .hero-avatar {
    width: 66vw;
    height: 66vw;
    margin-left: -33vw;
    margin-top: -33vw;
  }
}
/*# sourceMappingURL=bundle.css.map */
