.projeto__detalhes {
  background: #0f0f0f;
  color: #fff;
  transition: background 0.8s ease;

  /* Variáveis com as cores do projeto */
  /* Deve ser re-definido no HTML de cada página */
  --primary-project-color: #5835f3;
  --shadow-project-color: #7151fb;
}

.projeto__detalhes .container {
  max-width: calc(1200px + 80px);
}

.projeto__detalhes.change-background {
  background: var(--primary-project-color);
}

.projeto__detalhes [data-tldr="true"].hidden {
  display: none !important;
  max-width: 0;
  width: 0;
  visibility: hidden;
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
}

.projeto__detalhes * {
  color: inherit;
}

.projeto__detalhes .projeto__text {
  font: 400 18px/30.6px "Epilogue", serif;
  color: rgba(255, 255, 255, 0.55);
}

.projeto__detalhes .projeto__text > strong {
  color: #fff;
  font-weight: 400;
}

.projeto__detalhes > header.container {
  max-width: calc(1631px + 64px);
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  z-index: 999;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  transition: 0.4s;
  padding: 32px 32px 0 32px;
}

@media screen and (max-width: 1180px) {
  .projeto__detalhes > header.container {
    padding: 20px 32px 0 20px;
  }
}

.projeto__detalhes .projeto__detalhes__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.button__nav {
  display: flex;
  align-items: center;

  padding: 12px 14px;
  width: max-content;
  height: 40px;

  border-radius: 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.05);

  text-align: center;
  font: 600 14px/16.8px "Epilogue", serif;
  transition: background 0.3s ease;
}

.button__nav:hover {
  background: rgba(255, 255, 255, 0.05);
}

.button__nav span {
  display: block;
  margin-left: 8px;
  transition: margin 0.3s ease;
}

.button__nav--right span {
  margin-right: 8px;
  margin-left: 0;
}

.button__nav--right img {
  rotate: 180deg;
}

.button__nav:hover span {
  margin-left: 16px;
}

.button__nav--right:hover span {
  margin-right: 16px;
  margin-left: 0;
}

.projeto__detalhes .projeto__detalhes__nav > div {
  display: flex;
  align-items: center;
  padding: 4px;
  height: 40px;

  border-radius: 56px;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);

  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.projeto__detalhes .projeto__detalhes__nav > div button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15.432px 5px 10px;

  border-radius: 48px;
  color: rgba(255, 255, 255, 0.5);
  font: 600 14px/24px "Epilogue", serif;
  transition: color 0.3s ease;
  border: 1px solid transparent;
}

.projeto__detalhes .projeto__detalhes__nav > div button:hover {
  color: #e8e5ff;
}

.projeto__detalhes .projeto__detalhes__nav > div button.active {
  height: 32px;
  color: #e8e5ff;
  background: rgba(236, 235, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);

  font: 600 14px/24px "Epilogue", serif;
}

.projeto__detalhes .projeto__detalhes__nav > div button span {
  display: flex;
  padding: 1.8px 4.077px 1.53px 4.39px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);

  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font: 400 12px/14.4px "Inter", sans-serif;
}

.projeto__detalhes .projeto__content {
  padding-top: 160px;
}

.projeto__detalhes .projeto__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 90px;
  opacity: 0.8;
}

.projeto__detalhes .projeto__hero .subtitulo {
  display: flex;
  flex-direction: column;
  gap: 25.5px;
  align-items: center;
}

.projeto__detalhes .projeto__hero .subtitulo img {
  width: 47.64px;
  height: 47.64px;
}

.projeto__detalhes .projeto__hero .subtitulo p {
  font: 400 10px/21.6px "Epilogue", serif;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.projeto__detalhes .projeto__hero h1 {
  display: flex;
  flex-direction: column;
  gap: 30px;

  font: 500 125.434px/115.2px "Epilogue", serif;
  color: #fff;
  text-align: center;
  letter-spacing: -6.4px;
}

.projeto__detalhes .projeto__hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.projeto__hero__demo {
  width: 100%;
  max-height: 720px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 40px;
  -webkit-filter: drop-shadow(0px 0px 52px var(--shadow-project-color));
  filter: drop-shadow(0px 0px 52px var(--shadow-project-color));
}

.projeto__hero__demo img,
.projeto__hero__demo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projeto__overview {
  display: flex;
  gap: 40px;
  flex-wrap: wrap-reverse;
  justify-content: space-between;

  padding-top: 80px;
}

.projeto__overview.container {
  max-width: calc(950px + 80px);
}

.projeto__overview > aside {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 24px;
  max-width: 160px;
  width: 100%;
}

.projeto__overview > aside > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.projeto__overview > aside > div > p {
  color: rgba(255, 255, 255, 0.55);
  font: 400 16px/22.4px "Epilogue", serif;
}

.projeto__overview > aside > div > h6,
.projeto__overview__content > h6 {
  font: 500 18px/27px "Epilogue", serif;
  color: #fff;
  letter-spacing: -0.54px;
}

.projeto__detalhes .projeto__overview__content > h6 {
  margin-bottom: 12px;
}

.projeto__overview__content {
  max-width: 660px;
  width: 100%;
  flex: 1 1 450px;
}

.projeto__detalhes .projeto__overview__content .overview__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.projeto__detalhes .projeto__highlight {
  border-radius: 16px;
  background: rgba(88, 53, 243, 0.03);
  padding: 20px 24px;
  border: 1px solid rgba(88, 53, 243, 0.2);

  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 574px;
  width: 100%;
}

.projeto__detalhes .projeto__highlight svg {
  flex-shrink: 0;
}

.projeto__detalhes .projeto__highlight div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.projeto__detalhes .projeto__highlight div h6 {
  color: #fff;
  font: 600 1rem/1.1rem "Epilogue", serif;
}

.projeto__detalhes .projeto__highlight div p {
  color: #7151fb;
  font-size: 16px;
  line-height: 22px;
}

.projeto__detalhes .projeto__highlight div p strong {
  font-weight: 600;
}

.projeto__goals {
  display: grid;
  position: relative;
  min-height: 453px;
  width: 100%;
  margin-top: 135px;
}

.projeto__goals::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
  background-color: rgba(15, 15, 15, 0.8);
  pointer-events: none;
}

.projeto__goals .goals__banner {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
}

.projeto__goals > .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
  gap: 44px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.projeto__goals > .container h2 {
  flex-basis: 256px;
  margin-top: 26px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  font: 500 34px/44.2px "Epilogue", serif;
  letter-spacing: -0.68px;
}

.projeto__goals .goals__list {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 44px;
  flex: 1 1 314px;
}

.projeto__goals .goals__list > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 352px;
}

.projeto__goals .goals__list > div > h3 {
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  font: 600 54px/54px "Epilogue", serif;
}

.projeto__goals .goals__list > div > p {
  max-width: 461px;
  width: 100%;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.41);
  font: 500 22px/30.8px "Epilogue", serif;
}

.projeto__workshop.container {
  padding-top: 100px;
}

.projeto__workshop__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}

.projeto__workshop__content section {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 21px;
}

.projeto__workshop__content section h4 {
  font: 600 24px/26.4px "Epilogue", serif;
  letter-spacing: -0.72px;
  max-width: 265px;
  width: 100%;
}

.projeto__workshop__content section > div,
.projeto__workshop__content section > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 432px;
  max-width: 574px;
}

.projeto__workshop__content .workshop__highlight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin-bottom: 15px;
}

.workshop__highlight__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;

  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(88, 53, 243, 0.2);
  background: linear-gradient(
    91deg,
    rgba(88, 53, 243, 0.15) 0%,
    rgba(88, 53, 243, 0.05) 100%
  );
}

.workshop__highlight__item span {
  display: grid;
  place-content: center;
  flex-shrink: 0;

  width: 24px;
  height: 24px;
  border-radius: 9999px;
  border: 1px solid rgba(88, 53, 243, 0.1);
  background: var(--primary-color);

  font: 400 16px/0 "Inter", sans-serif;
  color: rgba(0, 0, 0, 0.8);
}

.workshop__highlight__item p {
  font-size: 16px;
  line-height: 24px;
}

.projeto__cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: center;
  margin-top: 100px;
}

.projeto__cards__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 400px;
  max-width: 588px;
}

@media (min-width: 864px) {
  .projeto__cards__list--right {
    padding-top: 64px;
  }
}

.projeto__card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
}

.projeto__card .projeto__card-img-wrapper {
  max-height: 506px;
}

.projeto__card .projeto__card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 100%;
}

.projeto__card-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 32px;
}

.projeto__card-content h5 {
  font: 600 24px/26.4px "Epilogue", serif;
  letter-spacing: -0.72px;
}

.projeto__card-content .projeto__text {
  font-size: 16px;
  line-height: 24px;
}

.projeto__branding {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.projeto__branding .projeto__workshop__content {
  margin-top: 152px;
}

.projeto__branding__img {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.projeto__branding__img img {
  width: 100%;
  object-fit: cover;
}

.projeto__design {
  display: flex;
  flex-direction: column;
  gap: 94px;
}

body.tldr .projeto__design {
  gap: 40px;
}

.projeto__design__logo-sticker {
  position: fixed;
  left: -136px;
  top: -160px;
  max-height: 558px;
  max-width: 562px;
  min-height: 358px;
  min-width: 362px;
  width: 38.75vw;
  height: 39vw;
  z-index: -1;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  fill: rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

@media (max-width: 1080px) {
  .projeto__design__logo-sticker {
    left: -9.45%;
    top: -10%;
  }
}

body.change-background .projeto__design__logo-sticker {
  opacity: 0.09;
  visibility: visible;
}

.projeto__design__logo-sticker img,
.projeto__design__logo-sticker svg,
.projeto__design__sticker img {
  width: 100%;
  height: 100%;
}

.projeto__design__sticker {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  max-width: 315px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
  will-change: transform;
}

.projeto__design__sticker--left {
  transform: perspective(1200px) translateX(-50px) translateY(0px) scale(1)
    rotate(20deg);
  left: 0;
  bottom: 159px;
}

.projeto__design__sticker--right {
  transform: perspective(1200px) translateX(80px) translateY(0px) scale(1)
    rotate(-20deg);
  right: 0;
  top: 181px;
}

@media (min-width: 1020px) {
  .projeto__design.stickers .projeto__design__sticker {
    opacity: 0.8;
    visibility: visible;
  }

  .projeto__design.stickers .projeto__design__sticker--left {
    transform: perspective(1200px) translateX(60px) translateY(0px) scale(1)
      rotate(-16deg);
  }

  .projeto__design.stickers .projeto__design__sticker--right {
    transform: perspective(1200px) translateX(-60px) translateY(0px) scale(1)
      rotate(24deg);
  }
}

.projeto__design .projeto__hero {
  display: flex;
  flex-direction: column;
  gap: 150px;
  margin-top: 120px;
  opacity: 1;
  padding-bottom: 0;
}

.projeto__design .projeto__hero h1 {
  gap: 0;
  font-size: 112px;
  line-height: 100px;
  letter-spacing: -5.6px;
}

.projeto__design .projeto__hero > div p {
  max-width: 956px;
  width: 100%;
  text-align: center;
  margin-top: 36px;
}

.projeto__design .projeto__hero__demo {
  max-width: 1200px;
  border-radius: 16px;
  -webkit-filter: drop-shadow(0px 0.602px 2.288px rgba(0, 0, 0, 0.02))
    drop-shadow(0px 2.289px 8.696px rgba(0, 0, 0, 0.06))
    drop-shadow(0px 10px 38px rgba(0, 0, 0, 0.25))
    drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 0.602px 2.288px rgba(0, 0, 0, 0.02))
    drop-shadow(0px 2.289px 8.696px rgba(0, 0, 0, 0.06))
    drop-shadow(0px 10px 38px rgba(0, 0, 0, 0.25))
    drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.1));
  margin-bottom: 0;
}

.projeto__consumer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 758px) {
  .projeto__consumer .projeto__workshop__content section > h4 {
    margin-top: 56px;
  }
}

.projeto__consumer .projeto__workshop__content section > div {
  max-width: 970px;
}

.projeto__consumer__imgs {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.projeto__design__features .projeto__workshop__content {
  margin-top: 56px;
}

.projeto__design__features .projeto__workshop__content section ul {
  gap: 16px;
  list-style-type: none;
}

.projeto__feature__item {
  display: flex;
  gap: 16px;

  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
}

.projeto__feature__item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.projeto__feature__item .projeto__text {
  font-size: 16px;
  line-height: 22px;
}

.projeto__design__carousel .swiper-slide {
  max-width: 100%;
  width: calc(33.3333% - 24px);
  min-width: 294px;
}

.projeto__design__carousel-item {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0px 0.602px 0.602px -0.75px rgba(0, 0, 0, 0.05),
    0px 2.289px 2.289px -1.5px rgba(0, 0, 0, 0.05),
    0px 10px 10px -2.25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  max-height: 704px;
}

.projeto__design__carousel .carousel-container {
  position: relative;
}

.projeto__design__carousel .swiper-pagination-container {
  position: absolute;
  width: max-content;
  position: relative;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 10px 0;
}

.projeto__design__carousel .swiper-pagination {
  position: static;
  width: max-content;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.2);
  --swiper-pagination-bottom: 15px;
  --swiper-pagination-bullet-size: 10px;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-inactive-color: rgba(255, 255, 255, 0.5);
  --swiper-pagination-color: #fff;
  padding: 5px;
}

.projeto__design__carousel__next,
.projeto__design__carousel__prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.projeto__design__carousel__prev {
  left: 20px;
}

.projeto__design__carousel__next {
  right: 50px;
}

.projeto__design__carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 720px) {
  .projeto__design__carousel .swiper {
    padding-right: 24px;
  }

  .projeto__design__carousel__next {
    right: 80px;
  }
}

.projeto__insights .projeto__design__features {
  margin-top: 56px;
  margin-bottom: 50px;
}

.projeto__insights__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projeto__results {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 115px;
  padding-bottom: 50px;
}

.projeto__results .projeto__workshop__content {
  max-width: calc(950px + 80px);
}

.projeto__results .projeto__workshop__content section {
  flex-direction: column;
}

.projeto__results .projeto__workshop__content section > h4,
.projeto__results .projeto__workshop__content section > div {
  max-width: 100%;
}

.projeto__results .projeto__workshop__content section > div {
  gap: 20px;
  flex-basis: 0;
}

.projeto__learnings {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.learnings__cards__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.projeto__learning__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 588px;
  /* max-width: 463px; */
  width: 100%;
  padding: 32px 18px 24px 32px;
}

.projeto__learning__card h5 {
  font: 600 24px/26.4px "Epilogue", serif;
}

.projeto__learning__card svg,
.projeto__learning__card img {
  width: 32px;
  height: 35px;
  flex-shrink: 0;
}

.projeto__next {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.projeto__next > aside {
  display: none;
}

body.tldr .projeto__next > aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  margin: 0 auto 54px;
  max-width: 600px;
  width: 100%;
  padding: 32px;
}

.full-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 536px;
  width: 100%;
}

.full-card-content h6 {
  font: 600 24px/26.4px "Epilogue", serif;
}

.full-card-content p.projeto__text {
  display: flex;
  align-items: center;
}

.full-card-content p.projeto__text button {
  font: 400 18px/24px "Epilogue", serif;
  text-decoration-line: underline;
  text-underline-position: from-font;
}

.projeto__next aside .btn-full-content {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  padding: 8px;

  font: 500 16px/20px "Epilogue", serif;
  letter-spacing: -0.19px;
  transition: color 0.3s ease;
}

.projeto__next aside .btn-full-content:hover {
  color: #fff;
}

.projeto__next aside .btn-full-content img {
  width: 14px;
  height: 16px;
  opacity: 0.55;
  rotate: 180deg;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.projeto__next aside .btn-full-content:hover img {
  transform: translateX(-5px);
  opacity: 1;
}

.projeto__next header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.projeto__next header div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.projeto__next header div h5 {
  font: 500 48px/52.8px "Epilogue", serif;
  letter-spacing: -2.4px;
}

.projeto__next header div span {
  color: rgba(255, 255, 255, 0.55);
  font: 400 15.125px/14.4px "Epilogue", serif;
  letter-spacing: -0.48px;
  text-transform: uppercase;
}

.projeto__next header nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 234px;
  width: 100%;
}

.projeto__next header .button__nav {
  font-size: 16px;
  line-height: 21px;
}

.projeto__next .go-back-home-link {
  color: rgba(255, 255, 255, 0.55);
  font: 500 14px/15.4px "Epilogue", serif;
  letter-spacing: -0.42px;
}

.projeto__next .go-back-home-link a {
  text-decoration-line: underline;
  text-underline-position: from-font;
  transition: 0.3s ease;
}

.projeto__next .go-back-home-link a:hover {
  color: #fff;
}

.projeto__next__content {
  display: flex;
  justify-content: center;
  overflow: hidden;
  height: 320px;
}

.projeto__next__img-wrapper {
  border-radius: 8px 8px 0px 0px;
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.05);
  max-width: 730px;
  width: 100%;
  height: 410px;
  padding: 11px 22px;
  margin-top: 56px;
  transition: transform 0.8s ease;
}

.projeto__next__img-wrapper.animate:hover {
  transform: scale(1.1);
}

.projeto__next__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Se a posição da foto não ficar boa,
   * basta usar a seguinte propriedade.
   *
   * object-position: eixo-X eixo-Y
   */
}

.projeto__footer__content.container {
  max-width: calc(1631px + 64px);
  padding: 40px 32px;
}

.projeto__footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.projeto__footer__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.03);
}

.projeto__footer__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 190px;
}

.projeto__footer__links .copyright {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.copyright__year {
  font: 500 14px/14px "Epilogue", serif;
}

.rights-reserved {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11.625px;
  line-height: 12px;
  text-transform: uppercase;
}

@media (min-width: 720px) {
  .projeto__footer__links {
    gap: 0;
  }

  .projeto__footer__links .copyright {
    margin-top: 66px;
    margin-bottom: 34px;
  }
}

.projeto__footer__links .logo {
  max-width: 142px;
  width: 100%;
  max-height: 39px;
}

.projeto__footer__links .logo img {
  width: 100%;
  height: 100%;
}

.projeto__footer .footer__social__container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.projeto__footer .footer__social__container a {
  display: grid;
  place-content: center;
  line-height: 0;
  width: 32px;
  height: 32px;

  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  padding: 6px;
  transition: background 0.3s ease;
}

.projeto__footer .footer__social__container a[title="Instagram"] {
  padding: 8px;
}

.projeto__footer .footer__social__container a:hover {
  background: rgba(255, 255, 255, 0.25);
}

.projeto__footer .footer__social__container a img,
.projeto__footer .footer__social__container a svg {
  width: 20px;
  height: 20px;
}

.footer__side-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 265px;
  width: 100%;
  flex: 1 1 160px;
}

.footer__side-info .button__nav {
  width: 100%;
  padding: 8px;
  border-radius: 20px;
  display: grid;
  place-content: center;
}

.footer__side-info .button__nav img {
  width: 24px;
  height: 24px;
  rotate: 90deg;
}

.footer__side-info .copyright {
  margin-top: auto;
  text-align: right;
}

.popup__short-on-time__container {
  display: grid;
  place-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0 20px;
  z-index: 50;
}

.popup__short-on-time {
  transform: translateY(100%);
  visibility: hidden;

  display: flex;
  padding: 6px 12px;
  align-items: center;
  gap: 8px;
  border-radius: 56px;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);

  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup__short-on-time.show {
  transform: translateY(-32px);
  visibility: visible;
}

.popup__short-on-time img,
.popup__short-on-time svg {
  flex-shrink: 0;
}

.popup__short-on-time p {
  font: 500 14px/16.8px "Inter", sans-serif;
  color: #fff;
}

.popup__short-on-time p strong {
  color: #fff;
  text-align: center;
  font: 400 12px/14.4px "Inter", sans-serif;

  padding: 1.5px 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 420px) {
  .footer__side-info .copyright {
    text-align: left;
  }

  .popup__short-on-time p {
    font-size: 12px;
  }

  .popup__short-on-time p strong {
    font-size: 10px;
  }
}

@media (max-width: 1080px) {
  .projeto__detalhes .projeto__hero h1 {
    font-size: 90px;
    line-height: 80px;
  }

  .projeto__overview {
    padding-top: 40px;
  }

  .projeto__goals,
  .projeto__branding .projeto__workshop__content {
    margin-top: 100px;
  }

  .projeto__workshop.container {
    padding-top: 60px;
  }

  .projeto__branding,
  .projeto__results {
    gap: 70px;
  }

  .projeto__design {
    gap: 40px;
  }

  .projeto__design .projeto__hero {
    gap: 100px;
  }
}

@media (max-width: 642px) {
  .projeto__detalhes .projeto__detalhes__nav > div {
    position: static;
    transform: translate(0, 0);
  }

  .projeto__detalhes .projeto__detalhes__nav > div button,
  .projeto__detalhes .projeto__detalhes__nav > div button.active {
    font-size: 12px;
  }

  .projeto__detalhes__nav .button__nav {
    font-size: 12px;
    padding: 8px 12px;
  }

  .projeto__detalhes__nav .button__nav span {
    display: none;
  }

  .projeto__detalhes .projeto__hero .subtitulo {
    gap: 18px;
  }

  .projeto__detalhes .projeto__hero .subtitulo img {
    width: 32px;
    height: 32px;
  }

  .projeto__detalhes .projeto__hero h1 {
    font-size: 60px;
    line-height: 50px;
  }

  .projeto__goals > .container h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .projeto__goals .goals__list > div > h3 {
    font-size: 44px;
    line-height: 44px;
  }

  .projeto__goals .goals__list > div > p {
    font-size: 18px;
    line-height: 24px;
  }

  body.tldr .projeto__next > aside {
    gap: 14px;
    padding: 20px;
  }

  .full-card-content {
    gap: 8px;
  }

  .full-card-content h6 {
    font-size: 20px;
    line-height: 22px;
  }

  .full-card-content p.projeto__text,
  .full-card-content p.projeto__text button {
    display: inline;
    padding-top: 0;
    padding-left: 0;
    flex-direction: column;
    font-size: 16px;
    line-height: 24px;
  }

  .projeto__footer__content::before {
    left: 0;
    right: 0;
    height: 2px;
  }
}

/* Animation on scroll */

[data-animate] {
  transition: transform 1s ease, opacity 1s ease, visibility 1s ease;
}

[data-animate="fade-up"] {
  transform: translate3d(0, 100px, 0);
  opacity: 0;
  visibility: hidden;
}

[data-animate="zoom-in-up"] {
  transform: translate3d(0, 100px, 0) scale(0.8);
}

[data-animate].animate {
  transform: translate3d(0, 0, 0);
}

[data-animate="fade-up"].animate {
  opacity: 1;
  visibility: visible;
}

[data-animate="zoom-in-up"].animate {
  transform: translate3d(0, 0, 0) scale(1);
}
