/* =========================================================
   SOBRE - FILIPE ASSIS | DEV
========================================================= */

:root {
  --sobre-red: #e10600;
}


/* =========================================================
   BASE
========================================================= */

.page-sobre {
  background: #080808;
  color: #ffffff;
  overflow-x: hidden;
}

.page-sobre main {
  width: 100%;
}

.page-sobre section {
  position: relative;
  width: 100%;
}


/* =========================================================
   HERO / ABERTURA
   MESMO PADRÃO DA PÁGINA SERVIÇOS
========================================================= */

.sobre-hero {
  position: relative;

  width: 100%;

  height: 50svh;

  min-height: 390px;
  max-height: 480px;

  display: flex;
  align-items: center;

  background: #ffffff;
  color: #080808;

  overflow: hidden;

  isolation: isolate;
}


/* =========================================================
   CONTAINER HERO
========================================================= */

.sobre-hero__container {
  position: relative;

  z-index: 2;

  width: 100%;
  max-width: none;

  margin: 0;

  padding-left: clamp(32px, 9vw, 155px);
  padding-right: 40px;
}


/* =========================================================
   CONTEÚDO HERO
========================================================= */

.sobre-hero__content {
  position: relative;

  z-index: 3;

  width: min(620px, 48vw);

  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* =========================================================
   EYEBROW HERO
========================================================= */

.sobre-hero__eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  margin: 0 0 14px;

  font-family: "Inter", sans-serif;

  font-size: 0.7rem;
  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.18em;

  text-transform: uppercase;

  color: #666666;
}

.sobre-hero__eyebrow-dot {
  width: 8px;
  height: 8px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--sobre-red);
}


/* =========================================================
   TÍTULO HERO
========================================================= */

.sobre-hero__title {
  width: 100%;

  max-width: 620px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(2.65rem, 3.75vw, 4rem);
  font-weight: 600;

  line-height: 0.96;

  letter-spacing: -0.055em;

  color: #080808;
}

.sobre-hero__title span {
  display: block;

  margin-top: 4px;

  color: var(--sobre-red);
}


/* =========================================================
   TEXTO HERO
========================================================= */

.sobre-hero__text {
  width: 100%;

  max-width: 570px;

  margin: 18px 0 0;

  font-family: "Inter", sans-serif;

  font-size: 0.94rem;
  font-weight: 400;

  line-height: 1.6;

  color: #555555;
}


/* =========================================================
   AÇÕES HERO
========================================================= */

.sobre-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 22px;
}


/* =========================================================
   BOTÕES HERO
========================================================= */

.sobre-hero__button {
  min-height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  padding: 0 21px;

  border-radius: 999px;

  font-family: "Inter", sans-serif;

  font-size: 0.86rem;
  font-weight: 500;

  line-height: 1;

  text-decoration: none;

  white-space: nowrap;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sobre-hero__button-icon {
  font-size: 0.95rem;

  transition: transform 0.25s ease;
}


/* =========================================================
   BOTÃO PRINCIPAL HERO
========================================================= */

.sobre-hero__button--primary {
  background: #080808;
  color: #ffffff;

  border: 1px solid #080808;
}

.sobre-hero__button--primary:hover {
  transform: translateY(-2px);

  background: #1b1b1b;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.14);
}

.sobre-hero__button--primary:hover
.sobre-hero__button-icon {
  transform: translateY(3px);
}


/* =========================================================
   BOTÃO SECUNDÁRIO HERO
========================================================= */

.sobre-hero__button--secondary {
  background: transparent;
  color: #080808;

  border: 1px solid #d4d4d4;
}

.sobre-hero__button--secondary:hover {
  transform: translateY(-2px);

  border-color: #080808;

  background: #f5f5f5;
}

.sobre-hero__button--secondary:hover
.sobre-hero__button-icon {
  transform: translate(3px, -3px);
}


/* =========================================================
   LOGO / MARCA D'ÁGUA
========================================================= */

.sobre-hero__watermark {
  position: absolute;

  top: 28px;
  right: -50px;

  width: clamp(600px, 45vw, 850px);

  z-index: 1;

  pointer-events: none;
  user-select: none;

  opacity: 0.075;
}

.sobre-hero__watermark img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;

  filter: brightness(0);
}


/* =========================================================
   GLOW HERO
========================================================= */

.sobre-hero::after {
  content: "";

  position: absolute;

  right: -170px;
  top: 70px;

  width: 440px;
  height: 440px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0, 0, 0, 0.025) 0%,
      rgba(0, 0, 0, 0) 72%
    );

  z-index: 0;

  pointer-events: none;
}


/* =========================================================
   EYEBROW PADRÃO DAS SEÇÕES
========================================================= */

.page-sobre .section-eyebrow {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin: 0 0 17px;
}

.page-sobre .section-eyebrow__dot {
  width: 7px;
  height: 7px;

  flex-shrink: 0;

  border-radius: 50%;

  background: var(--sobre-red);
}

.page-sobre .section-eyebrow__text {
  font-family: "Inter", sans-serif;

  font-size: 0.67rem;
  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}


/* =========================================================
   CONTAINERS DAS SEÇÕES
   MESMO EIXO DA PÁGINA SERVIÇOS
========================================================= */

.sobre-intro > .container,
.sobre-processo > .container,
.sobre-experiencia > .container,
.sobre-stack > .container,
.sobre-manifesto > .container,
.sobre-cta > .container {
  width: 100%;
  max-width: none;

  margin: 0;

  padding-left: clamp(32px, 9vw, 155px);
  padding-right: clamp(32px, 9vw, 155px);
}


/* =========================================================
   QUEM SOU
========================================================= */

.sobre-intro {
  position: relative;

  width: 100%;

  padding: 58px 0;

  background: #080808;
  color: #ffffff;

  overflow: hidden;
}


/* =========================================================
   GRID QUEM SOU
========================================================= */

.sobre-intro__container {
  display: grid;

  grid-template-columns:
    minmax(330px, 0.82fr)
    minmax(0, 1.18fr);

  align-items: center;

  gap: clamp(60px, 7vw, 110px);
}


/* =========================================================
   VISUAL / FOTO
========================================================= */

.sobre-intro__visual {
  width: 100%;

  max-width: 520px;
}

.sobre-intro__photo {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 4.35;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    );

  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.25);
}

.sobre-intro__photo::before {
  content: "";

  position: absolute;

  top: 0;
  left: 28px;

  width: 48px;
  height: 2px;

  background: var(--sobre-red);
}

.sobre-intro__photo::after {
  content: "";

  position: absolute;

  right: -120px;
  bottom: -140px;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(225, 6, 0, 0.08) 0%,
      rgba(225, 6, 0, 0) 70%
    );

  pointer-events: none;
}

.sobre-intro__photo img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}

.sobre-intro__visual-info {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 14px;

  font-family: "Inter", sans-serif;

  font-size: 0.65rem;
  font-weight: 500;

  line-height: 1.4;

  letter-spacing: 0.13em;

  text-transform: uppercase;

  color: #777777;
}


/* =========================================================
   QUEM SOU - CONTEÚDO
========================================================= */

.sobre-intro__content {
  width: 100%;

  max-width: 690px;
}

.sobre-intro__content
.section-eyebrow__text {
  color: #b5b5b5;
}

.sobre-intro__title {
  width: 100%;

  max-width: 680px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 600;

  line-height: 1.06;

  letter-spacing: -0.045em;

  color: #ffffff;
}

.sobre-intro__text {
  width: 100%;

  max-width: 680px;

  margin-top: 22px;
}

.sobre-intro__text p {
  margin: 0 0 15px;

  font-family: "Inter", sans-serif;

  font-size: 0.9rem;
  font-weight: 400;

  line-height: 1.65;

  color: #9d9d9d;
}

.sobre-intro__text p:first-child {
  color: #c8c8c8;
}


/* =========================================================
   COMO EU TRABALHO
========================================================= */

.sobre-processo {
  position: relative;

  width: 100%;

  padding: 58px 0;

  background: #ffffff;
  color: #080808;
}


/* =========================================================
   CABEÇALHO PROCESSO
========================================================= */

.sobre-processo__header {
  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.48fr);

  align-items: end;

  column-gap: clamp(55px, 7vw, 110px);

  margin-bottom: 40px;
}

.sobre-processo__header
.section-eyebrow {
  grid-column: 1 / -1;
}

.sobre-processo__header
.section-eyebrow__text {
  color: #505050;
}

.sobre-processo__title {
  width: 100%;

  max-width: 700px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 600;

  line-height: 1.06;

  letter-spacing: -0.045em;

  color: #080808;
}

.sobre-processo__description {
  max-width: 400px;

  margin: 0 0 3px;

  font-family: "Inter", sans-serif;

  font-size: 0.88rem;
  font-weight: 400;

  line-height: 1.6;

  color: #5f5f5f;
}


/* =========================================================
   GRID PROCESSO
========================================================= */

.sobre-processo__grid {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}


/* =========================================================
   ITEM PROCESSO
========================================================= */

.sobre-processo__item {
  position: relative;

  min-height: 270px;

  padding: 27px 27px 25px;

  border-right: 1px solid #dedede;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.sobre-processo__item:first-child {
  border-left: 1px solid #dedede;
}

.sobre-processo__number {
  display: block;

  margin-bottom: 72px;

  font-family: "Inter", sans-serif;

  font-size: 0.68rem;
  font-weight: 600;

  line-height: 1;

  letter-spacing: 0.14em;

  color: var(--sobre-red);
}

.sobre-processo__item h3 {
  margin: 0 0 11px;

  font-family: "Inter", sans-serif;

  font-size: 1.25rem;
  font-weight: 600;

  line-height: 1.2;

  letter-spacing: -0.025em;
}

.sobre-processo__item p {
  max-width: 245px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: 0.82rem;
  font-weight: 400;

  line-height: 1.55;

  color: #666666;

  transition: color 0.25s ease;
}

.sobre-processo__item:hover {
  background: #080808;

  color: #ffffff;
}

.sobre-processo__item:hover p {
  color: #a5a5a5;
}


/* =========================================================
   EXPERIÊNCIA
========================================================= */

.sobre-experiencia {
  position: relative;

  width: 100%;

  padding: 58px 0;

  background: #080808;
  color: #ffffff;
}


/* =========================================================
   GRID EXPERIÊNCIA
========================================================= */

.sobre-experiencia__container {
  display: grid;

  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(400px, 1.08fr);

  align-items: start;

  gap: clamp(60px, 8vw, 125px);
}


/* =========================================================
   EXPERIÊNCIA - TÍTULO
========================================================= */

.sobre-experiencia__heading {
  width: 100%;
}

.sobre-experiencia__heading
.section-eyebrow__text {
  color: #b5b5b5;
}

.sobre-experiencia__title {
  width: 100%;

  max-width: 610px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 600;

  line-height: 1.06;

  letter-spacing: -0.045em;

  color: #ffffff;
}


/* =========================================================
   EXPERIÊNCIA - TEXTO
========================================================= */

.sobre-experiencia__content {
  width: 100%;

  padding-top: 34px;
}

.sobre-experiencia__content > p {
  width: 100%;

  max-width: 620px;

  margin: 0 0 16px;

  font-family: "Inter", sans-serif;

  font-size: 0.9rem;
  font-weight: 400;

  line-height: 1.65;

  color: #9d9d9d;
}

.sobre-experiencia__content
.sobre-experiencia__lead {
  margin-bottom: 25px;

  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  font-weight: 400;

  line-height: 1.35;

  letter-spacing: -0.03em;

  color: #ffffff;
}


/* =========================================================
   NÚMEROS
========================================================= */

.sobre-experiencia__stats {
  width: 100%;

  margin-top: 38px;

  border-top: 1px solid #292929;
}

.sobre-experiencia__stat {
  min-height: 90px;

  display: grid;

  grid-template-columns: 125px 1fr;

  align-items: center;

  gap: 25px;

  border-bottom: 1px solid #292929;
}

.sobre-experiencia__stat strong {
  font-family: "Inter", sans-serif;

  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 600;

  line-height: 1;

  letter-spacing: -0.05em;

  color: #ffffff;
}

.sobre-experiencia__stat span {
  max-width: 280px;

  font-family: "Inter", sans-serif;

  font-size: 0.67rem;
  font-weight: 500;

  line-height: 1.5;

  letter-spacing: 0.11em;

  text-transform: uppercase;

  color: #777777;
}


/* =========================================================
   TECNOLOGIAS
========================================================= */

.sobre-stack {
  position: relative;

  width: 100%;

  padding: 58px 0;

  background: #ffffff;
  color: #080808;
}


/* =========================================================
   CABEÇALHO STACK
========================================================= */

.sobre-stack__header {
  width: 100%;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.48fr);

  align-items: end;

  column-gap: clamp(55px, 7vw, 110px);

  margin-bottom: 40px;
}

.sobre-stack__header
.section-eyebrow {
  grid-column: 1 / -1;
}

.sobre-stack__header
.section-eyebrow__text {
  color: #505050;
}

.sobre-stack__title {
  width: 100%;

  max-width: 700px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 600;

  line-height: 1.06;

  letter-spacing: -0.045em;
}

.sobre-stack__description {
  max-width: 400px;

  margin: 0 0 3px;

  font-family: "Inter", sans-serif;

  font-size: 0.88rem;
  font-weight: 400;

  line-height: 1.6;

  color: #5f5f5f;
}


/* =========================================================
   LISTA TECNOLOGIAS
========================================================= */

.sobre-stack__list {
  width: 100%;

  display: flex;
  flex-wrap: wrap;

  gap: 9px;

  padding-top: 25px;

  border-top: 1px solid #dedede;
}

.sobre-stack__list span {
  min-height: 43px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 19px;

  border: 1px solid #dedede;
  border-radius: 999px;

  background: #ffffff;

  font-family: "Inter", sans-serif;

  font-size: 0.76rem;
  font-weight: 500;

  line-height: 1;

  color: #303030;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.sobre-stack__list span:hover {
  transform: translateY(-2px);

  background: #080808;
  color: #ffffff;

  border-color: #080808;
}


/* =========================================================
   MANIFESTO
========================================================= */

.sobre-manifesto {
  position: relative;

  width: 100%;

  padding: 82px 0;

  background: #080808;
  color: #ffffff;

  overflow: hidden;
}

.sobre-manifesto::after {
  content: "DEV";

  position: absolute;

  right: -30px;
  bottom: -90px;

  font-family: "Inter", sans-serif;

  font-size: clamp(190px, 28vw, 480px);
  font-weight: 700;

  line-height: 0.8;

  letter-spacing: -0.1em;

  color: rgba(255, 255, 255, 0.018);

  pointer-events: none;
}

.sobre-manifesto__container {
  position: relative;

  z-index: 2;

  display: grid;

  grid-template-columns: 65px minmax(0, 900px);

  align-items: start;

  gap: 25px;
}

.sobre-manifesto__mark {
  margin-top: -7px;

  font-family: "Inter", sans-serif;

  font-size: 3.2rem;
  font-weight: 300;

  line-height: 1;

  color: var(--sobre-red);
}

.sobre-manifesto__title {
  width: 100%;

  max-width: 900px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(2.5rem, 4vw, 4.2rem);
  font-weight: 400;

  line-height: 1.04;

  letter-spacing: -0.055em;

  color: #ffffff;
}


/* =========================================================
   CTA
========================================================= */

.sobre-cta {
  position: relative;

  width: 100%;

  padding: 58px 0;

  background: #ffffff;
  color: #080808;
}

.sobre-cta__container {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.48fr);

  align-items: end;

  gap: clamp(60px, 8vw, 125px);
}

.sobre-cta__title {
  width: 100%;

  max-width: 700px;

  margin: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 600;

  line-height: 1.06;

  letter-spacing: -0.045em;
}

.sobre-cta__action {
  width: 100%;

  max-width: 430px;
}

.sobre-cta__action p {
  margin: 0 0 22px;

  font-family: "Inter", sans-serif;

  font-size: 0.88rem;
  font-weight: 400;

  line-height: 1.6;

  color: #5f5f5f;
}


/* =========================================================
   BOTÃO CTA
========================================================= */

.sobre-cta__button {
  min-height: 46px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 0 21px;

  border: 1px solid #080808;
  border-radius: 999px;

  background: #080808;
  color: #ffffff;

  font-family: "Inter", sans-serif;

  font-size: 0.86rem;
  font-weight: 500;

  line-height: 1;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sobre-cta__arrow {
  font-size: 0.95rem;

  transition: transform 0.25s ease;
}

.sobre-cta__button:hover {
  transform: translateY(-2px);

  background: #1b1b1b;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.14);
}

.sobre-cta__button:hover
.sobre-cta__arrow {
  transform: translate(3px, -3px);
}


/* =========================================================
   DESKTOP MENOR
   MESMO BREAKPOINT DE SERVIÇOS
========================================================= */

@media (max-width: 1280px) {

  /* HERO */

  .sobre-hero__container {
    padding-left: clamp(32px, 7vw, 100px);
  }

  .sobre-hero__content {
    width: min(570px, 50vw);
  }

  .sobre-hero__title {
    font-size: clamp(2.45rem, 3.7vw, 3.65rem);
  }

  .sobre-hero__watermark {
    width: clamp(480px, 43vw, 650px);

    right: -40px;
    top: 28px;
  }


  /* SEÇÕES */

  .sobre-intro,
  .sobre-processo,
  .sobre-experiencia,
  .sobre-stack,
  .sobre-cta {
    padding: 54px 0;
  }

  .sobre-intro > .container,
  .sobre-processo > .container,
  .sobre-experiencia > .container,
  .sobre-stack > .container,
  .sobre-manifesto > .container,
  .sobre-cta > .container {
    padding-left: clamp(32px, 7vw, 100px);
    padding-right: clamp(32px, 7vw, 100px);
  }

  .sobre-intro__container {
    gap: clamp(45px, 5vw, 75px);
  }

  .sobre-experiencia__container {
    gap: clamp(45px, 5vw, 75px);
  }
}


/* =========================================================
   TABLET
   MESMO BREAKPOINT DE SERVIÇOS
========================================================= */

@media (max-width: 1024px) {

  /* =======================================================
     HERO
  ======================================================= */

  .sobre-hero {
    height: auto;

    min-height: 430px;
    max-height: none;
  }

  .sobre-hero__container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sobre-hero__content {
    width: min(540px, 58%);

    padding: 50px 0;
  }

  .sobre-hero__title {
    font-size: clamp(2.3rem, 4.6vw, 3.35rem);
  }

  .sobre-hero__text {
    max-width: 500px;
  }

  .sobre-hero__watermark {
    width: clamp(360px, 42vw, 500px);

    right: -30px;
    top: 26px;

    opacity: 0.06;
  }


  /* =======================================================
     CONTAINERS
  ======================================================= */

  .sobre-intro > .container,
  .sobre-processo > .container,
  .sobre-experiencia > .container,
  .sobre-stack > .container,
  .sobre-manifesto > .container,
  .sobre-cta > .container {
    padding-left: 40px;
    padding-right: 40px;
  }


  /* =======================================================
     QUEM SOU
  ======================================================= */

  .sobre-intro {
    padding: 52px 0;
  }

  .sobre-intro__container {
    grid-template-columns: 1fr;

    gap: 38px;
  }

  .sobre-intro__visual {
    max-width: 650px;
  }

  .sobre-intro__photo {
    aspect-ratio: 16 / 10;
  }

  .sobre-intro__content {
    max-width: 760px;
  }


  /* =======================================================
     PROCESSO
  ======================================================= */

  .sobre-processo {
    padding: 52px 0;
  }

  .sobre-processo__header {
    grid-template-columns: 1fr;

    gap: 18px;

    margin-bottom: 34px;
  }

  .sobre-processo__header
  .section-eyebrow {
    grid-column: auto;
  }

  .sobre-processo__description {
    max-width: 600px;
  }

  .sobre-processo__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre-processo__item:nth-child(3),
  .sobre-processo__item:nth-child(4) {
    border-top: 1px solid #dedede;
  }

  .sobre-processo__item:nth-child(3) {
    border-left: 1px solid #dedede;
  }


  /* =======================================================
     EXPERIÊNCIA
  ======================================================= */

  .sobre-experiencia {
    padding: 52px 0;
  }

  .sobre-experiencia__container {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .sobre-experiencia__content {
    padding-top: 0;
  }


  /* =======================================================
     STACK
  ======================================================= */

  .sobre-stack {
    padding: 52px 0;
  }

  .sobre-stack__header {
    grid-template-columns: 1fr;

    gap: 18px;

    margin-bottom: 34px;
  }

  .sobre-stack__header
  .section-eyebrow {
    grid-column: auto;
  }

  .sobre-stack__description {
    max-width: 600px;
  }


  /* =======================================================
     CTA
  ======================================================= */

  .sobre-cta {
    padding: 52px 0;
  }

  .sobre-cta__container {
    grid-template-columns: 1fr;

    gap: 32px;
  }

  .sobre-cta__action {
    max-width: 560px;
  }
}


/* =========================================================
   MOBILE
   MESMO BREAKPOINT DE SERVIÇOS
========================================================= */

@media (max-width: 768px) {

  /* =======================================================
     HERO
  ======================================================= */

  .sobre-hero {
    height: auto;

    min-height: auto;

    align-items: flex-start;
  }

  .sobre-hero__container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sobre-hero__content {
    width: 100%;

    padding: 72px 0 60px;
  }

  .sobre-hero__title {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
  }

  .sobre-hero__watermark {
    width: 270px;

    right: -80px;
    top: 24px;

    opacity: 0.04;
  }


  /* =======================================================
     CONTAINERS
  ======================================================= */

  .sobre-intro > .container,
  .sobre-processo > .container,
  .sobre-experiencia > .container,
  .sobre-stack > .container,
  .sobre-manifesto > .container,
  .sobre-cta > .container {
    padding-left: 24px;
    padding-right: 24px;
  }


  /* =======================================================
     SEÇÕES
  ======================================================= */

  .sobre-intro,
  .sobre-processo,
  .sobre-experiencia,
  .sobre-stack,
  .sobre-cta {
    padding: 46px 0;
  }


  /* =======================================================
     TÍTULOS
  ======================================================= */

  .sobre-intro__title,
  .sobre-processo__title,
  .sobre-experiencia__title,
  .sobre-stack__title,
  .sobre-cta__title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }


  /* =======================================================
     FOTO
  ======================================================= */

  .sobre-intro__photo {
    aspect-ratio: 4 / 3.3;
  }


  /* =======================================================
     PROCESSO
  ======================================================= */

  .sobre-processo__grid {
    grid-template-columns: 1fr;
  }

  .sobre-processo__item,
  .sobre-processo__item:first-child,
  .sobre-processo__item:nth-child(3) {
    min-height: auto;

    padding: 25px 0 28px;

    border-left: 0;
    border-right: 0;
    border-top: 0;

    border-bottom: 1px solid #dedede;
  }

  .sobre-processo__number {
    margin-bottom: 34px;
  }

  .sobre-processo__item p {
    max-width: 100%;
  }

  .sobre-processo__item:hover {
    background: transparent;
    color: #080808;
  }

  .sobre-processo__item:hover p {
    color: #666666;
  }


  /* =======================================================
     EXPERIÊNCIA
  ======================================================= */

  .sobre-experiencia__stat {
    grid-template-columns: 105px 1fr;
  }


  /* =======================================================
     MANIFESTO
  ======================================================= */

  .sobre-manifesto {
    padding: 65px 0;
  }

  .sobre-manifesto__container {
    display: block;
  }

  .sobre-manifesto__mark {
    margin: 0 0 20px;
  }

  .sobre-manifesto__title {
    font-size: clamp(2.15rem, 8vw, 3.2rem);
  }
}


/* =========================================================
   MOBILE PEQUENO
   MESMO BREAKPOINT DE SERVIÇOS
========================================================= */

@media (max-width: 520px) {

  /* =======================================================
     HERO
  ======================================================= */

  .sobre-hero__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sobre-hero__content {
    padding: 64px 0 54px;
  }

  .sobre-hero__actions {
    width: 100%;

    flex-direction: column;
    align-items: stretch;
  }

  .sobre-hero__button {
    width: 100%;
  }


  /* =======================================================
     CONTAINERS
  ======================================================= */

  .sobre-intro > .container,
  .sobre-processo > .container,
  .sobre-experiencia > .container,
  .sobre-stack > .container,
  .sobre-manifesto > .container,
  .sobre-cta > .container {
    padding-left: 20px;
    padding-right: 20px;
  }


  /* =======================================================
     SEÇÕES
  ======================================================= */

  .sobre-intro,
  .sobre-processo,
  .sobre-experiencia,
  .sobre-stack,
  .sobre-cta {
    padding: 42px 0;
  }


  /* =======================================================
     TÍTULOS
  ======================================================= */

  .sobre-intro__title,
  .sobre-processo__title,
  .sobre-experiencia__title,
  .sobre-stack__title,
  .sobre-cta__title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }


  /* =======================================================
     FOTO
  ======================================================= */

  .sobre-intro__photo {
    aspect-ratio: 4 / 4.2;
  }

  .sobre-intro__visual-info {
    flex-direction: column;
    align-items: flex-start;

    gap: 5px;
  }


  /* =======================================================
     EXPERIÊNCIA
  ======================================================= */

  .sobre-experiencia__stat {
    grid-template-columns: 90px 1fr;

    gap: 18px;
  }


  /* =======================================================
     STACK
  ======================================================= */

  .sobre-stack__list span {
    min-height: 40px;

    padding: 0 15px;
  }


  /* =======================================================
     CTA
  ======================================================= */

  .sobre-cta__button {
    width: 100%;
  }
}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .sobre-hero__button,
  .sobre-hero__button-icon,
  .sobre-processo__item,
  .sobre-processo__item p,
  .sobre-stack__list span,
  .sobre-cta__button,
  .sobre-cta__arrow {
    transition: none;
  }
}