header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px;
}

  @media screen and (min-width: 1280px) {header {
    /* padding: 40px 80px 80px; */
    padding: 40px 80px 60px
}
  }

  @media screen and (min-width: 1440px) {header {
    /* padding: 60px 120px 80px; */
    padding: 60px 120px 60px
}
  }

  header div {
    display: block;
  }

.header__actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.toggle-language {
  margin-right: 15px;
}

.toggle-language__option {
    cursor: pointer;
    transition: opacity 300ms ease-in;
    opacity: 0.8;
    outline: none;
  }

.toggle-language__option:nth-of-type(1):after {
        content: "";
        width: 1px;
        height: 11px;
        display: inline-block;
        margin: 0 10px;
        background: #1e1e1e;
        position: relative;
      }

.toggle-language__option:hover,
    .toggle-language__option:active,
    .toggle-language__option:focus,
    .toggle-language__option--active {
      opacity: 1;
      font-weight: bold;
    }

.toggle-theme {
  cursor: pointer;
  transition: opacity 300ms ease-in;
  opacity: 0.8;
  outline: none;
}

.toggle-theme:hover,
  .toggle-theme:active,
  .toggle-theme:focus {
    opacity: 1;
  }

.left-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.left-header__name {
    display: none;
  }

@media screen and (min-width: 768px) {

.left-header__name {
      display: block;
      cursor: pointer
  }
    }

/* https://codepen.io/made-on-mars/pen/qqEgXP */
.trigger-menu-button {
  border-top: 3px solid #1e1e1e;
  height: 30px;
  width: 30px;
  box-sizing: border-box;
  position: relative;
  z-index: 30;
  cursor: pointer;
  transition: opacity 300ms ease-in;
  opacity: 0.8;
  outline: none;
}
.trigger-menu-button:before,
  .trigger-menu-button:after {
    content: "";
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    left: 0;
    background: #1e1e1e;
    transition: all 0.3s ease-in;
  }
.trigger-menu-button:before {
    top: 8px;
  }
.trigger-menu-button:after {
    top: 20px;
  }
.trigger-menu-button:hover,
  .trigger-menu-button:active,
  .trigger-menu-button:focus {
    opacity: 1;
  }
.trigger-menu-button:hover + .trigger-menu-button__hover, .trigger-menu-button:active + .trigger-menu-button__hover, .trigger-menu-button:focus + .trigger-menu-button__hover {
      opacity: 1;
    }
.trigger-menu-button__hover {
    width: 60px;
    height: 60px;
    margin-top: -16px;
    margin-left: -15px;
    border-radius: 50%;
    position: absolute;
    background-color: rgba(154, 154, 154, 0.1);
    opacity: 0;
    transition: opacity 600ms cubic-bezier(0.47, 0.99, 1, 0.99);
  }
@media (min-width: 1024px) {
.trigger-menu-button__hover {
      width: 80px;
      height: 80px;
      margin-top: -26px;
      margin-left: -25px
  }
    }
.trigger-menu-button > div {
    margin-left: 60px;
  }

.nav {
  position: absolute;
  z-index: 10;
  margin: 0 0 20px 40px;
  padding: 0;
  overflow: hidden;
  height: 100%;
}

  .nav li {
    list-style-type: none;
    display: block;
    will-change: width, margin-left;
  }

  .nav__item {
    width: 0;
    margin-left: -120px;
    transition: width 0.6s ease-in, margin-left 0.6s ease-in;
  }

  .nav a {
    display: block;
    height: 30px;
    border: none;

    /* https://www.w3schools.com/cssref/css3_pr_text-overflow.asp */
    white-space: nowrap;
    overflow: hidden;
  }

  .nav a.nav__item__link--active {
      font-weight: bold;
    }

.error-page {
  min-height: 100%;
  padding-top: 30px;
}

  .error-page__status-code {
    margin-bottom: 0;
  }

  .error-page__message {
    margin-top: 0;
  }

  .error-page__citation {
    max-width: 850px;
  }

  @media (min-width: 1024px) {

  .error-page__citation {
      font-size: 1.4em;
      font-weight: 300;
      line-height: 1.4
  }
    }

  @media (min-width: 1200px) {

  .error-page__citation {
      font-size: 1.6em
  }
    }


.blog-container {
  max-width: 800px !important;
  margin: 0 auto;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-header h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }

.blog-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
  }

.posts-grid {
  display: grid;
  gap: 2rem;
}

@media screen and (min-width: 768px) {

.posts-grid {
    gap: 0
}
  }

.post-link {
  border-bottom: none !important;
}

/* padding: 1.5rem; */

@media screen and (min-width: 768px) {

.post-card {
    padding: 1.5rem 1.5rem 0 1.5rem
}
  }

.post-card:after {
    content: '';
    display: block;
    height: 1px;
    background: #d1d1d1;
    margin-top: 1.5rem;
  }

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.read-time::before {
  content: '\2022';
  margin-right: 0.5rem;
}

.source-badge {
  background: #1a8917;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.post-title {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
}

.post-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-title a:hover {
  color: var(--accent-color);
}

.post-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.loading,
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
}

.empty-state code {
  background: var(--bg-secondary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: 'Fira Code', monospace;
  display: inline-block;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 2rem;
  }
  
  .post-meta {
    flex-wrap: wrap;
  }
}


.post-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  /* padding: 2rem 1rem; */
}

.not-found {
  text-align: center;
  padding: 4rem 1rem;
}

.not-found h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.not-found p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.not-found a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent-hover);
}

.post-header {
  margin-bottom: 3rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.read-time::before {
  content: '\2022';
  margin-right: 0.5rem;
}

.source-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1a8917;
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.original-link {
  color: white !important;
  text-decoration: underline;
  font-size: 0.8rem;
}

.original-link:hover {
  opacity: 0.8;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: var(--text-primary);
}

.post-content {
  line-height: 1.7;
  color: var(--text-primary);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.post-content h1 { font-size: 2rem; }
.post-content h2 { font-size: 1.7rem; }
.post-content h3 { font-size: 1.4rem; }
.post-content h4 { font-size: 1.2rem; }

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-secondary);
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.post-content a:hover {
  color: var(--accent-hover);
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 0 2rem 0;
}

.post-content figure {
  margin: 0;
  text-align: center;
}

.post-content figcaption {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-style: italic;
}

.post-content iframe {
  max-width: 100%;
  margin: 2rem 0;
}

.post-content code {
  background: var(--bg-secondary);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
}

.post-content pre {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
}

.post-content pre code {
  background: none;
  padding: 0;
}

.post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.post-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.back-to-blog,
.view-original {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.back-to-blog:hover,
.view-original:hover {
  color: var(--accent-hover);
}

@media (max-width: 768px) {
  /* .post-title {
    font-size: 2rem;
  } */
  
  /* .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  } */
  
  .source-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  
  .post-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1280px) {.home-page {
    /* background: url(../static/img/home/carlohcs-2026.webp) center right no-repeat; */
    background-size: cover;
    /* Use a black tint to darken, or white tint to brighten */
    /* background-color: rgba(0, 0, 0, 0.9);  */
    /* background-color: #1e1e1e !important; */
  
    /* Blends the color and image together */
    /* background-blend-mode: darken;  */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url(/_next/static/images/carlohcs-2026.webp_2K_202608311846-6adaef7cb1286dd36bf485c72a9309ec.jpeg) center/cover
}
  }
  @media screen and (min-width: 1440px) {
    .home-page .page-component {
      padding: 0 120px 0 120px;
    }
  }

@media (min-width: 1024px) {

.home__left {
      min-width: 60%
  }
    }

@media (min-width: 1280px) {

.home__left {
      min-width: 50%
  }
    }

/* &__right {
    filter: saturate(0.9);
    display: none;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    @media (min-width: 1280px) {
      display: block;
      background: url(../static/img/home/carlohcs-lg.png) bottom right no-repeat;
      width: 50%;
      background-position: bottom left;
      background-size: 840px;
    }
  } */

.home__carlohcs-photography--xs {
      width: 140px;
      border-radius: 50%;
      display: block;
      margin: 20px auto;
      box-shadow: #1dc779 0 0px 10px 0;
    }

@media (min-width: 768px) {

.home__carlohcs-photography--xs {
        width: 200px
    }
      }

@media (min-width: 1024px) {

.home__carlohcs-photography--xs {
        width: 280px
    }
      }

@media (min-width: 1279px) {

.home__carlohcs-photography--xs {
        display: none
    }
      }

@media (min-width: 1200px) {

.home__welcome p {
        font-size: 1.6em;
        font-weight: 300;
        line-height: 1.4;
        /* max-width: 26em; */

        margin: 32px 0
    }
      }

.home__welcome-description__short-description {
      /*font-size: 14px;*/
      line-height: 1.3;
      margin-top: 0 !important;
    }

.home__welcome-description * {
      margin: 0;
    }

.home__welcome-description__connect {
      margin: 0 !important;
    }

.home .social-networks {
    display: inline-block;
    padding: 5px 0;
  }

.home .social-networks__content {
      display: flex;
      justify-content: space-between;
      width: 260px;
    }

/*margin: 0 auto;*/

@media (min-width: 768px) {

.home .social-networks__content {
        /*margin: 0;*/
    }
      }

.home .social-network {
    color: #000;
  }

.dark-ui .social-icon {
    color: #1dc779;
  }

.dark-ui .footer {
    color: #b0b0b0;
  }

.footer {
  margin-top: 20px;
  display: block;
  font-size: 12px;
  font-style: italic;
  color: #606060;
}

@media (min-width: 1200px) {

.footer {
    font-size: 18px
}
  }

.resume p > strong:before {
        content: "- ";
      }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

html,
body,
#__next,
.app {
  min-height: 100vh;
}

/* https://gist.github.com/oskarhane/615d28c6455081035d2ec83311fa3b2d#file-global-css */
html {
  content: "";
  overflow-x: hidden;
}
html.overflow--hidden {
    overflow: hidden;
  }
html.overflow--hidden body,
    html.overflow--hidden .app {
      overflow: hidden;
    }

html,
body {
  scrollbar-gutter: stable; /* Evita o "jump" quando scrollbar aparece/desaparece */
  scroll-behavior: smooth;
}

@media (prefers-color-scheme: light) {
  html {
    content: "light";
  }
}

@media (prefers-color-scheme: dark) {
  html {
    content: "dark";
  }
}

body {
  background: #fff;
  color: #1e1e1e;
  /*https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter*/
  scrollbar-gutter: stable;

  /* Evita o "jump" quando scrollbar aparece/desaparece */
  overflow: hidden auto;

  /* &.hydrated {
    transition: background-color 0.2s ease, color 0.2s ease;
  } */

  /* Previne flash durante navegação */
  /* &.page-transitioning {
    transition: none !important;
    
    &.dark-ui {
      background: #1e1e1e !important;
      color: #e1e1e1 !important;
    }
  } */

  font-family: "Rubik", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  font-size: 1.125em;
}

/* Tema dark */

body.dark-ui {
    background: #1e1e1e !important;
    color: #e1e1e1 !important;
  }

body.dark-ui a {
      color: #e1e1e1;
    }

body.dark-ui:not(.menu-open) .trigger-menu-button {
      border-top-color: #e1e1e1;
    }

body.dark-ui .trigger-menu-button:before,
      body.dark-ui .trigger-menu-button:after {
        background: #e1e1e1;
      }

body.dark-ui .toggle-language__option:nth-of-type(1):after {
            background: #e1e1e1;
          }

/* Menu aberto */

/* Pensar em um jeito melhor */

body.menu-open .page-component:after {
        z-index: 3;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        display: block;
      }

/* overflow-x: hidden; */

body.menu-open .trigger-menu-button {
      border-color: transparent;
    }

body.menu-open .trigger-menu-button:before,
      body.menu-open .trigger-menu-button:after {
        width: 33px;
        left: -2px;
      }

body.menu-open .trigger-menu-button:before {
        transform: rotate(45deg);
      }

body.menu-open .trigger-menu-button:after {
        transform: rotate(135deg);
        top: 9px;
      }

body.menu-open .nav li {
      width: 240px;
      margin-left: 0;
    }

body.menu-open .page-component {
      transform: translateX(320px);
      background-color: rgba(29, 199, 121, 0.12);
      filter: blur(5px);
    }

a:not(.no-link-style) {
  color: #1e1e1e;
  text-decoration: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border-bottom: 2px solid rgba(29, 199, 121, 0.65);
  transition: color 500ms cubic-bezier(0.47, 0.99, 1, 0.99),
    transform 0.3s ease-in-out;
  outline: none;
}

a:not(.no-link-style):hover,
  a:not(.no-link-style):active,
  a:not(.no-link-style):focus {
    color: #fff;
    /* transform: scale(1.1); */
  }

a:not(.no-link-style):before {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background-color: #1dc779;
    transform: perspective(1px) translateZ(0);
    transition: width 500ms cubic-bezier(0.47, 0.99, 1, 0.99);
  }

a:not(.no-link-style):hover:before,
  a:not(.no-link-style):active:before,
  a:not(.no-link-style):focus:before {
    width: 100%;
  }

a {
  outline: none;
}

a.link--zoom {
      transition: transform 500ms cubic-bezier(0.47, 0.99, 1, 0.99);
    }

a.link--zoom:hover,
      a.link--zoom:active,
      a.link--zoom:focus {
        transform: scale(1.3);
      }

/*margin: 0 auto;*/

.container--center {
    margin: 0 auto;
  }

/*@media (min-width:768px){
              max-width:720px;
            }*/

@media (min-width: 992px) {

.container {
    max-width: 960px
}
  }

/*@media (min-width:576px){
              max-width:540px;
            }*/

@media (min-width: 1200px) {

.container {
    max-width: 1140px
}
  }

/* https://ricostacruz.com/til/css-media-query-breakpoints */

@media (min-width: 1440px) {

.container {
    max-width: 1348px
}
  }

@media (min-width: 1680px) {

.container {
    max-width: 1556px
}
  }

@media (min-width: 1920px) {

.container {
    max-width: 1764px
}
  }

.page__introduction {
    margin-bottom: 80px;
  }

@media (min-width: 1024px) {

.page__introduction {
      margin-bottom: 100px
  }
    }

.page__description {
    max-width: 600px;
    display: inline-block;
  }

@media (min-width: 1200px) {

.page__description {
      /*max-width: 700px;*/
      max-width: 800px
  }
    }

.page__item {
    /*margin: 80px 0;*/
  }

@media (min-width: 1024px) and (min-height: 768px) {

.content {
    text-align: left
}
  }

.column {
  width: 50%;
}

.column:nth-of-type(1) {
    padding-right: 20px;
  }

@media screen and (min-width: 1280px) {

.column:nth-of-type(1) {
      padding-right: 60px
  }
    }

.column:nth-of-type(2) {
    padding-left: 20px;
  }

@media screen and (min-width: 1280px) {

.column:nth-of-type(2) {
      padding-left: 60px
  }
    }

h2 {
  font-size: 1.2em;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 4.5em;
    font-weight: 500;
    margin: 0;
  }

  h2 {
    font-size: 2.2em;
    margin-top: 0;
  }

  a {
    padding: 2px 2px 0;
  }
}

.page-component {
  /* #1DC779; */
  display: flex;
  flex-flow: column;
  width: 100%;
  /* min-height: calc(100vh - 120px); */
  justify-content: flex-start;
  visibility: visible;
  box-sizing: border-box;
  padding: 0 40px 40px;
}

@media screen and (min-width: 1280px) {

.page-component {
    /* padding: 0 80px 80px 80px; */
    padding: 0 80px 40px 80px
}
  }

@media screen and (min-width: 1440px) {

.page-component {
    /* padding: 0 120px 120px 120px; */
    padding: 0 120px 80px 120px
}
  }

.page-component > h1 {
    margin-top: 0;
  }

.page-component {
  position: relative; /* Necessário devido ao click fora do componente */
  animation: fadeInUp 0.5s ease-out;
  opacity: 1;
  z-index: 20;
  transform: translateY(0);
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in,
    filter 0.6s ease-out;
  will-change: opacity, transform, filter;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* https://github.com/zeit/next.js/issues/7945 */
#__next-prerender-indicator {
  display: none;
}

.icon {
  width: 24px;
  height: 24px;
}

.flex {
  display: flex;
  flex-flow: column;
}

.flex--justify-center {
    justify-content: center;
  }

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

/* Efeito de fade in quando a página carrega */
/*
.page-enter {
  opacity: 0;
  transform: translateY(20px);
}

.page-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}*/

/* Efeito de fade out quando sai da página */
/*
.page-exit {
  opacity: 1;
  transform: translateY(0);
}

.page-exit-active {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}*/

/* Loading indicator */
.loading-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #000, #1dc779a6);
  z-index: 9999;
  animation: loading-slide 10s ease-in-out infinite;
}

@keyframes loading-slide {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* ==== PROJETOS ==== */
@media (min-width: 1280px) {
.project:not(.project--main) .project__title {
      margin-top: -40px !important
  }
    }
@media (min-width: 1440px) {
.project:not(.project--main) .project__title {
      margin-top: -60px !important
  }
    }
@media (min-width: 1280px) {
.project:not(.project--main):nth-child(odd) .project__cover {
        box-shadow: -25px 30px 60px 5px rgba(0, 0, 0, 0.3)
    }
      }
@media (min-width: 1280px) {
.project:not(.project--main):nth-child(even) .project__cover {
        box-shadow: 25px 30px 60px 5px rgba(0, 0, 0, 0.3)
    }
      }

.dark-ui .project__cover {
      box-shadow: 5px 10px 30px 0px rgba(255, 255, 255, 0.2) !important;
    }

.dark-ui .post-card:after {
      background: rgba(255, 255, 255, 0.1);
    }

.projects .project {
    margin: 80px 0;
  }

@media screen and (min-width: 1024px) {

.projects .project {
      margin: 100px 0
  }
    }

.projects .project:first-of-type {
      margin-top: 0;
    }

.projects .project--no-shadow .project__cover {
        box-shadow: none !important;
      }

@media screen and (min-width: 1024px) {

.projects .project--reduced-margin {
        margin: 100px 0
    }
      }

.projects .project__cover {
      max-width: 100%;
      margin: 0 auto 20px;
      box-shadow: 0 15px 20px 5px rgba(68, 68, 68, 0.3);
    }

.projects .project__description {
      max-width: 650px;
      margin-top: 10px;
    }

@media screen and (min-width: 1024px) {

.projects .project__description {
        margin-top: 20px
    }
      }

.projects .project__description p {
        margin: 0;
      }

@media screen and (min-width: 1024px) {

.projects .project--main .project__cover {
          max-width: 1200px;
          margin: 0 auto 60px;
          display: block
      }
        }

.projects .project--main .project__content {
        flex-flow: column !important;
      }

.projects .project--main .project__content__column:nth-of-type(1) {
            width: 100% !important;
          }

.projects .project--main .project__content__column:nth-of-type(2) {
            width: auto !important;
          }

.projects .project .project__content {
      display: flex;
      flex-flow: column;
      align-items: center;
      justify-content: center;
    }

@media screen and (min-width: 1024px) {

.projects .project .project__content__column {
          width: 50%
      }
        }

@media screen and (min-width: 1024px) {
      .projects .project .project__content {
        flex-flow: row;
      }
        .projects .project:not(.project--main):nth-child(even) .project__content {
          flex-direction: row-reverse;
        }
            @media screen and (min-width: 1024px) {
              .projects .project:not(.project--main):nth-child(even) .project__content__column:nth-of-type(1) {
                padding-left: 20px;
              }

              .projects .project:not(.project--main):nth-child(even) .project__content__column:nth-of-type(2) {
                padding-right: 20px;
              }
            }

            @media screen and (min-width: 1280px) {
              .projects .project:not(.project--main):nth-child(even) .project__content__column:nth-of-type(1) {
                padding-left: 40px;
              }

              .projects .project:not(.project--main):nth-child(even) .project__content__column:nth-of-type(2) {
                padding-right: 40px;
              }
            }
            @media screen and (min-width: 1024px) {
              .projects .project:not(.project--main):nth-child(odd) .project__content__column:nth-of-type(1) {
                padding-right: 20px;
              }

              .projects .project:not(.project--main):nth-child(odd) .project__content__column:nth-of-type(2) {
                padding-left: 20px;
              }
            }

            @media screen and (min-width: 1280px) {
              .projects .project:not(.project--main):nth-child(odd) .project__content__column:nth-of-type(1) {
                padding-right: 40px;
              }

              .projects .project:not(.project--main):nth-child(odd) .project__content__column:nth-of-type(2) {
                padding-left: 40px;
              }
            }
    }

.projects .project .project__video {
      width: 100%;
      max-width: 100%;
      cursor: pointer;
    }

.projects .project:last-child {
      margin-bottom: 0;
    }

.projects .project__title {
      margin: 0;
    }

.projects .project__technology {
      font-size: 12px;
      margin-bottom: 0;
    }

@media screen and (min-width: 1024px) {

.projects .project__technology {
        font-size: 16px;
        margin-top: 20px !important
    }
      }

