/* =========================================================
   POLÍTICA DE PRIVACIDADE
   FILIPE ASSIS | DEV
========================================================= */

:root {
  --privacy-red: #e10600;
}


/* =========================================================
   BASE
========================================================= */

.page-privacy {
  background: #080808;
  color: #ffffff;
  font-family: "Inter", sans-serif;
}


/* =========================================================
   HERO / ABERTURA
========================================================= */

.privacy-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;
  border-bottom: 1px solid #ececec;
}


/* =========================================================
   CONTAINER HERO
========================================================= */

.privacy-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
========================================================= */

.privacy-hero__content {
  position: relative;
  z-index: 3;
  width: min(620px, 48vw);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


/* =========================================================
   EYEBROW HERO
========================================================= */

.privacy-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;
}

.privacy-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--privacy-red);
}


/* =========================================================
   TÍTULO HERO
========================================================= */

.privacy-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;
}

.privacy-hero__title span {
  display: block;
  margin-top: 4px;
  color: var(--privacy-red);
}


/* =========================================================
   TEXTO HERO
========================================================= */

.privacy-hero__description {
  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;
}


/* =========================================================
   ÚLTIMA ATUALIZAÇÃO
========================================================= */

.privacy-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  line-height: 1;
}

.privacy-hero__meta span {
  color: #8a8a8a;
}

.privacy-hero__meta strong {
  color: #080808;
  font-weight: 600;
}


/* =========================================================
   LOGO / MARCA D'ÁGUA
========================================================= */

.privacy-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;
}

.privacy-hero__watermark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
}


/* =========================================================
   GLOW HERO
========================================================= */

.privacy-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;
}


/* =========================================================
   CONTEÚDO
========================================================= */

.privacy-content {
  background: #080808;
  padding: 100px 0 120px;
}

.privacy-content__container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(32px, 9vw, 155px);
  padding-right: clamp(32px, 9vw, 155px);
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
}


/* =========================================================
   NAVEGAÇÃO LATERAL
========================================================= */

.privacy-nav {
  position: sticky;
  top: 130px;
  align-self: start;
}

.privacy-nav__title {
  display: block;
  margin-bottom: 22px;
  font-family: "Inter", sans-serif;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.privacy-nav__links {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #262626;
}

.privacy-nav__links a {
  position: relative;
  padding: 8px 0 8px 20px;
  font-family: "Inter", sans-serif;
  color: #737373;
  font-size: 0.83rem;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.privacy-nav__links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.privacy-nav__links a::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 50%;
  width: 1px;
  height: 0;
  background: var(--privacy-red);
  transform: translateY(-50%);
  transition: height 0.2s ease;
}

.privacy-nav__links a:hover::before {
  height: 24px;
}


/* =========================================================
   ARTICLE
========================================================= */

.privacy-article {
  min-width: 0;
}


/* =========================================================
   INTRODUÇÃO
========================================================= */

.privacy-intro {
  padding: 0 0 58px;
  border-bottom: 1px solid #242424;
}

.privacy-intro__label {
  display: block;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  color: var(--privacy-red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.privacy-intro p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: #f0f0f0;
}


/* =========================================================
   SEÇÕES
========================================================= */

.privacy-section {
  position: relative;
  padding: 64px 0;
  border-bottom: 1px solid #242424;
  scroll-margin-top: 120px;
}

.privacy-section__number {
  display: block;
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  color: var(--privacy-red);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.privacy-section h2 {
  margin: 0 0 25px;
  max-width: 650px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.privacy-section p {
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  color: #9c9c9c;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section strong {
  color: #ffffff;
  font-weight: 500;
}


/* =========================================================
   LISTAS
========================================================= */

.privacy-section ul {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.privacy-section li {
  position: relative;
  padding-left: 25px;
  font-family: "Inter", sans-serif;
  color: #a9a9a9;
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.65;
}

.privacy-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--privacy-red);
}


/* =========================================================
   TIPOS DE COOKIES
========================================================= */

.privacy-types {
  display: grid;
  gap: 1px;
  margin: 32px 0;
  background: #242424;
  border: 1px solid #242424;
}

.privacy-type {
  padding: 24px;
  background: #0d0d0d;
}

.privacy-type strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: #ffffff;
}

.privacy-type p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #808080;
}


/* =========================================================
   CONTATO
========================================================= */

.privacy-section--contact {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-contact {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 24px 26px;
  border: 1px solid #292929;
  background: #0d0d0d;
  color: #ffffff;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.privacy-contact:hover {
  border-color: #454545;
  background: #111111;
  transform: translateY(-2px);
}

.privacy-contact > span:first-child {
  font-family: "Inter", sans-serif;
  color: #777777;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.privacy-contact strong {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.privacy-contact__arrow {
  color: var(--privacy-red);
  font-size: 1.1rem;
}


/* =========================================================
   DESKTOP MENOR
========================================================= */

@media (max-width: 1280px) {

  /* HERO */

  .privacy-hero__container {
    padding-left: clamp(32px, 7vw, 100px);
  }

  .privacy-hero__content {
    width: min(570px, 50vw);
  }

  .privacy-hero__title {
    font-size: clamp(2.45rem, 3.7vw, 3.65rem);
  }

  .privacy-hero__watermark {
    width: clamp(480px, 43vw, 650px);
    right: -40px;
    top: 28px;
  }


  /* CONTEÚDO */

  .privacy-content__container {
    padding-left: clamp(32px, 7vw, 100px);
    padding-right: clamp(32px, 7vw, 100px);
    grid-template-columns: 220px minmax(0, 720px);
    gap: 65px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  /* =======================================================
     HERO
  ======================================================= */

  .privacy-hero {
    height: auto;
    min-height: 430px;
    max-height: none;
  }

  .privacy-hero__container {
    width: 100%;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }

  .privacy-hero__content {
    width: min(540px, 58%);
    max-width: 100%;
    padding: 50px 0;
    box-sizing: border-box;
  }

  .privacy-hero__title {
    max-width: 100%;
    font-size: clamp(2.3rem, 4.6vw, 3.35rem);
  }

  .privacy-hero__description {
    max-width: 500px;
  }

  .privacy-hero__watermark {
    width: clamp(360px, 42vw, 500px);
    right: -30px;
    top: 26px;
    opacity: 0.06;
  }


  /* =======================================================
     CONTEÚDO
  ======================================================= */

  .privacy-content {
    padding: 80px 0 100px;
  }

  .privacy-content__container {
    width: 100%;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 50px;
    box-sizing: border-box;
  }

  .privacy-article {
    min-width: 0;
    max-width: 100%;
  }

  .privacy-nav {
    top: 110px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  /* =======================================================
     BASE MOBILE
  ======================================================= */

  .page-privacy {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }


  /* =======================================================
     HERO
  ======================================================= */

  .privacy-hero {
    width: 100%;
    height: auto;
    min-height: auto;
    align-items: flex-start;
    overflow: hidden;
  }

  .privacy-hero__container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .privacy-hero__content {
    width: 100%;
    max-width: 100%;
    padding: 64px 0 56px;
    box-sizing: border-box;
  }

  .privacy-hero__eyebrow {
    max-width: 100%;
  }

  .privacy-hero__title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.15rem, 9.5vw, 3.25rem);
    overflow-wrap: break-word;
  }

  .privacy-hero__description {
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .privacy-hero__meta {
    width: 100%;
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-top: 20px;
    line-height: 1.4;
  }

  .privacy-hero__watermark {
    width: 270px;
    right: -80px;
    top: 24px;
    opacity: 0.04;
  }


  /* =======================================================
     CONTEÚDO
  ======================================================= */

  .privacy-content {
    width: 100%;
    padding: 60px 0 80px;
    overflow: hidden;
  }

  .privacy-content__container {
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .privacy-nav {
    display: none;
  }

  .privacy-article {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }


  /* =======================================================
     INTRODUÇÃO
  ======================================================= */

  .privacy-intro {
    width: 100%;
    max-width: 100%;
    padding-bottom: 42px;
    box-sizing: border-box;
  }

  .privacy-intro__label {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 0.68rem;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .privacy-intro p {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.2rem, 5.3vw, 1.55rem);
    line-height: 1.45;
    overflow-wrap: break-word;
  }


  /* =======================================================
     SEÇÕES
  ======================================================= */

  .privacy-section {
    width: 100%;
    max-width: 100%;
    padding: 48px 0;
    scroll-margin-top: 90px;
    box-sizing: border-box;
  }

  .privacy-section h2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 22px;
    font-size: clamp(1.65rem, 7vw, 2.2rem);
    overflow-wrap: break-word;
  }

  .privacy-section p {
    width: 100%;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.75;
    overflow-wrap: break-word;
  }

  .privacy-section ul {
    width: 100%;
    max-width: 100%;
    margin: 24px 0;
    box-sizing: border-box;
  }

  .privacy-section li {
    max-width: 100%;
    overflow-wrap: break-word;
  }


  /* =======================================================
     TIPOS DE COOKIES
  ======================================================= */

  .privacy-types {
    width: 100%;
    max-width: 100%;
    margin: 28px 0;
    box-sizing: border-box;
  }

  .privacy-type {
    width: 100%;
    max-width: 100%;
    padding: 22px;
    box-sizing: border-box;
  }


  /* =======================================================
     CONTATO
  ======================================================= */

  .privacy-contact {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 16px;
    padding: 22px;
    box-sizing: border-box;
  }

  .privacy-contact > span:first-child {
    grid-column: 1 / 2;
  }

  .privacy-contact strong {
    grid-column: 1 / 2;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .privacy-contact__arrow {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

}


/* =========================================================
   MOBILE PEQUENO
========================================================= */

@media (max-width: 520px) {

  /* =======================================================
     HERO
  ======================================================= */

  .privacy-hero__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .privacy-hero__content {
    padding: 56px 0 50px;
  }

  .privacy-hero__eyebrow {
    gap: 8px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .privacy-hero__eyebrow-dot {
    width: 7px;
    height: 7px;
  }

  .privacy-hero__title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 0.98;
  }

  .privacy-hero__description {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .privacy-hero__meta {
    align-items: flex-start;
    gap: 6px 10px;
    font-size: 0.72rem;
  }


  /* =======================================================
     CONTEÚDO
  ======================================================= */

  .privacy-content {
    padding: 52px 0 70px;
  }

  .privacy-content__container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .privacy-intro {
    padding-bottom: 38px;
  }

  .privacy-intro p {
    font-size: 1.2rem;
  }

  .privacy-section {
    padding: 42px 0;
  }

  .privacy-section h2 {
    font-size: 1.7rem;
  }

  .privacy-section p,
  .privacy-section li {
    font-size: 0.93rem;
  }

  .privacy-type {
    padding: 19px;
  }

  .privacy-contact {
    padding: 19px;
  }

}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .privacy-nav__links a,
  .privacy-nav__links a::before,
  .privacy-contact {
    transition: none;
  }

}