* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --white: #f5f5f5;
  --gray: #9a9a9a;
  --dark-gray: #111111;
  --line: rgba(255, 255, 255, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Oswald", sans-serif;
  background: var(--black);
  color: var(--white);
}

.hero-center h1 {
  font-family: 'Old Standard TT', sans-serif;
  font-weight: 400;
}

/* HERO PRINCIPAL */

.hero {
  width: 100%;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--black);
}

/* IMAGENS LATERAIS */

.side-image {
  width: 35%;
  height: 100vh;

  background-size: cover;
  background-position: center;

  opacity: 0.85;
}

.left {
  background-image:
  linear-gradient(to right, rgba(0,0,0,0.15), rgba(0,0,0,0.65)),
  url("../assets/images/left.png");
}

.right {
  background-image:
  linear-gradient(to left, rgba(0,0,0,0.15), rgba(0,0,0,0.65)),
  url("../assets/images/right.png");
}

.top-logo {
  width: 140px;
  height: auto;
  margin-bottom: 60px;
  object-fit: contain;

  transform: translateY(-100px);
}

/* CENTRO */

.hero-center {
  width: 45%;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-center h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: 10px;
  margin-bottom: 40px;
  text-align: center;
  transform: translateX(5px);
}

/* SEÇÕES */

.section {
  padding: 110px 8%;
}

.eyebrow {
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 40px;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

p {
  color: #cfcfcf;
  line-height: 1.6;
}

/* CARDS */

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--dark-gray);
  border: 1px solid var(--line);
  padding: 34px;
  min-height: 230px;
  transition: 0.3s;
}

.card2 {
  background: var(--light-gray);
  border: 1px solid var(--line);
  padding: 34px;
  min-height: 230px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--white);
}

/* SEÇÃO CLARA */

.light-section {
  background: var(--white);
  color: var(--black);
}

.light-section p {
  color: #333;
}

.light-section .eyebrow {
  color: #555;
}

/* FOOTER */

footer {
  padding: 30px 8%;
  border-top: 1px solid var(--line);
  color: var(--gray);
}

/* RESPONSIVO */

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .side-image {
    width: 100%;
    height: 28vh;
  }

  .hero-center {
    width: 100%;
    height: 44vh;
  }

  .hero-center h1 {
    letter-spacing: 5px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 6%;
  }
}

/* ANIMAÇÃO INICIAL */

.hero {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeHero 1.2s ease forwards;
}

@keyframes fadeHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SEÇÕES SURGINDO NO SCROLL */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.card-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* PÁGINA DOWNTOWN MAGAZINE */

.magazine-hero {
  min-height: 100vh;
  padding: 8%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.95)),
    url("../assets/images/bgdtmag.png");

  background-size: cover;
  background-position: center;
}

.magazine-hero-content {
  max-width: 900px;
}

.magazine-hero h1 {
  font-family: 'Old Standard TT', serif;
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 0.95;
  margin-bottom: 28px;
}

.magazine-hero p {
  max-width: 680px;
  margin: auto;
}



/* FILTRO POR ANO */

.year-filter {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.year-filter button {
  padding: 10px 20px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.year-filter button:hover {
  background: var(--white);
  color: var(--black);
}

/* GRID DE REVISTAS */

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.magazine-card {
  background: var(--dark-gray);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.3s;
}

.magazine-card:hover {
  transform: translateY(-8px);
  border-color: var(--white);
}

.magazine-cover {
  width: 100%;
  aspect-ratio: 1 / 1.414;

  background: #151515;
  overflow: hidden;
}

.magazine-cover img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}

.placeholder-cover {
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-cover span {
  font-family: 'Old Standard TT', serif;
  font-size: 5rem;
  letter-spacing: 8px;
  color: var(--white);
}

.magazine-info {
  padding: 28px;
}

.magazine-info span {
  display: inline-block;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.magazine-info p {
  margin-bottom: 24px;
}

@media (max-width: 860px) {
  .magazine-grid {
    grid-template-columns: 1fr;
  }

  .magazine-cover {
    height: 360px;
  }
}

.year-filter button.active {
  background: var(--white);
  color: var(--black);
}

.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 24px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  transition: 0.3s ease;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

.dark-btn {
  border-color: var(--black);
  color: var(--black);
}

.dark-btn:hover {
  background: var(--black);
  color: var(--white);
}

.navbar-spacing {
  height: 78px;
}

/* ANIMAÇÃO DE ENTRADA DAS PÁGINAS */

.page-enter {
  opacity: 0;
  transform: translateY(20px);
  animation: pageEnter 1.1s ease forwards;
}

@keyframes pageEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ADMIN DASHBOARD */

.admin-form {
  max-width: 760px;
  display: grid;
  gap: 20px;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 18px 20px;
  background: #111;
  border: 1px solid #2a2a2a;
  color: #fff;
  font-size: 16px;
}

.admin-form textarea {
  min-height: 140px;
  resize: vertical;
}

.admin-form input::placeholder,
.admin-form textarea::placeholder {
  color: #777;
}

.admin-form .btn,
#logoutBtn {
  width: fit-content;
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  padding: 14px 28px;
  cursor: pointer;
  font-weight: 600;
}

#logoutBtn {
  background: transparent;
  color: #fff;
  border-color: #333;
}

#logoutBtn:hover {
  background: #fff;
  color: #000;
}

.admin-magazine-list {
  max-width: 760px;
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.admin-magazine-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px;
  background: #111;
  border: 1px solid #2a2a2a;
}

.admin-magazine-card img {
  width: 80px;
  height: 105px;
  object-fit: cover;
  background: #222;
}

.admin-magazine-info h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #fff;
}

.admin-magazine-info p {
  margin: 0;
  color: #aaa;
  font-size: 14px;
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.admin-actions button {
  padding: 10px 14px;
  background: transparent;
  border: 1px solid #333;
  color: #fff;
  cursor: pointer;
}

.admin-actions button:hover {
  background: #fff;
  color: #000;
}

.delete-btn:hover {
  background: #ff3333 !important;
  color: #fff !important;
  border-color: #ff3333 !important;
}

.admin-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1100px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

.admin-magazine-list {
  max-width: 100%;
}

.admin-form {
  position: static;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 40px;
  align-items: start;
}

.admin-layout > div {
  min-width: 0;
}

.admin-magazine-list {
  position: relative;
  z-index: 1;
}

.admin-form {
  position: static;
  z-index: 2;
}

@media (max-width: 1100px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

/* READER MODAL */

.reader-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  grid-template-columns: minmax(460px, 34vw) minmax(0, 1fr);
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.reader-overlay.active {
  display: grid;
}

.reader-close {
  position: fixed;
  top: 28px;
  right: 34px;
  z-index: 100000;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}

.reader-close:hover {
  background: #fff;
  color: #000;
}

.reader-info {
  width: 100%;
  height: 100vh;
  padding: 90px 42px;
  border-right: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  z-index: 2;
}

.reader-info h2 {
  font-family: 'Old Standard TT', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
  margin-bottom: 18px;
}

.reader-info h3 {
  color: #aaa;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 28px;
}

.reader-info p {
  color: #cfcfcf;
}

.reader-book-area {
  height: 100vh;
  min-width: 0;
  padding: 70px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.flipbook {
  width: 840px;
  height: 595px;
  max-width: 100%;
}

.flipbook-page {
  background: #111;
  overflow: hidden;
}

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

.reader-loading,
.reader-error {
  color: #fff;
  text-align: center;
}

.reader-error h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.reader-error p {
  color: #aaa;
}

@media (max-width: 1000px) {
  .reader-overlay {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .reader-info {
    height: auto;
    padding: 90px 28px 30px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .reader-book-area {
    height: auto;
    padding: 30px 20px 80px;
  }

  .flipbook {
    width: 90vw;
    height: 70vh;
  }
}

.magazine-info .btn,
.magazine-info button.btn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.magazine-info .btn:hover,
.magazine-info button.btn:hover {
  background: var(--white);
  color: var(--black);
}

.flipbook {
  opacity: 1;
  visibility: visible;
}

.flipbook:not(.ready) .flipbook-page {
  opacity: 0;
}

.flipbook.ready .flipbook-page {
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* =========================
   DSA DASHBOARD FORM
========================= */

.dashboard-section {
  margin-top: 70px;
  padding: 40px;
  background: #0d0d0d;
  border: 1px solid #242424;
}

.dashboard-section h2 {
  font-family: "Old Standard TT", serif;
  font-size: clamp(38px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 36px;
  color: #fff;
}

.dashboard-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.dashboard-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #aaa;
}

.dashboard-form input,
.dashboard-form select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: #050505;
  border: 1px solid #333;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  outline: none;
}

.dashboard-form input:focus,
.dashboard-form select:focus {
  border-color: #fff;
}

.dashboard-form button {
  grid-column: 1 / -1;
  height: 52px;
  margin-top: 10px;
  background: #fff;
  color: #050505;
  border: none;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s ease;
}

.dashboard-form button:hover {
  background: #cfcfcf;
}

@media (max-width: 800px) {
  .dashboard-section {
    padding: 26px;
  }

  .dashboard-form {
    grid-template-columns: 1fr;
  }
}

/* =============== READER LOADING BOX ================= */

.reader-loading-box {
  width: 100%;
  height: 100%;
  min-height: 420px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reader-loading-box span {
  font-size: 0.9rem;
}

.reader-loading-box small {
  color: #aaa;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
}

/* =========================
   MAGAZINE OUTDOOR / DESTAQUES
========================= */

/* =========================
   MAGAZINE OUTDOOR / DESTAQUES
========================= */

.magazine-outdoor-section {
  padding: 90px 8%;
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.magazine-outdoor {
  position: relative;
  width: 100%;
  max-width: 1500px;
  height: 460px;
  margin: 0 auto;
  overflow: hidden;

  background: #111;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;

  box-shadow: 0 25px 80px rgba(0,0,0,0.45);
}

.magazine-outdoor-slide {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: flex-end;

  padding: 70px;

  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease;
}

.magazine-outdoor-slide.active {
  opacity: 1;
  visibility: visible;
}

.magazine-outdoor-slide::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top, rgba(0,0,0,0.92), rgba(0,0,0,0.22)),
    linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.08));

  z-index: 1;
}

.magazine-outdoor-slide img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  filter: none;
  z-index: 0;
}

.magazine-outdoor-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.magazine-outdoor-content h3 {
  font-family: "Old Standard TT", serif;
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.magazine-outdoor-content p {
  max-width: 560px;
  margin-bottom: 26px;
}

.magazine-outdoor-content a {
  display: inline-block;
  padding: 12px 24px;

  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;

  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;

  transition: 0.3s ease;
}

.magazine-outdoor-content a:hover {
  background: #fff;
  color: #050505;
}

.magazine-outdoor-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.magazine-outdoor-dot {
  width: 38px;
  height: 3px;

  border: none;
  background: rgba(255,255,255,0.25);

  cursor: pointer;
  transition: 0.3s ease;
}

.magazine-outdoor-dot.active {
  background: #fff;
}

.magazine-outdoor-loading {
  height: 460px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #aaa;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.magazine-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.magazine-card-actions .btn {
  margin-top: 0;
}

.prop-blender-btn {
  border-style: dashed;
}

@media (max-width: 860px) {
  .magazine-outdoor-section {
    padding: 70px 6%;
  }

  .magazine-outdoor {
    height: 430px;
  }

  .magazine-outdoor-slide {
    padding: 52px 28px;
  }

  .magazine-outdoor-content h3 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }
}


/* =========================================================
   HOME — NAVBAR PRINCIPAL
   ========================================================= */

.home-navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 82px;

  padding: 0 clamp(22px, 5vw, 76px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 10000;

  background: transparent;
  border-bottom: 1px solid transparent;

  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}


/* Navbar depois que a página é rolada */

.home-navbar.is-scrolled,
.home-navbar.is-open {
  background: rgba(5, 5, 5, 0.9);

  border-bottom-color: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


/* Logo */

.home-navbar__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  text-decoration: none;
}


.home-navbar__logo {
  display: block;

  width: 48px;
  height: 48px;

  object-fit: contain;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}


.home-navbar__brand:hover .home-navbar__logo {
  opacity: 0.72;
  transform: scale(0.96);
}


/* Links */

.home-navbar__links {
  display: flex;
  align-items: center;

  gap: clamp(20px, 2.5vw, 38px);
}


.home-navbar__links a,
.home-navbar__links a:link,
.home-navbar__links a:visited {
  position: relative;

  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;

  letter-spacing: 2px;
  font-size: 0.76rem;
  font-weight: 400;

  white-space: nowrap;
}

.home-navbar__links a:hover,
.home-navbar__links a:focus,
.home-navbar__links a:active {
  color: #ffffff;
  text-decoration: none;
}

.home-navbar__brand,
.home-navbar__brand:link,
.home-navbar__brand:visited,
.home-navbar__brand:hover,
.home-navbar__brand:focus,
.home-navbar__brand:active {
  color: #ffffff;
  text-decoration: none;
}

/* Linha animada embaixo dos links */

.home-navbar__links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);
  transform-origin: right;

  transition: transform 0.25s ease;
}


.home-navbar__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* Botão do menu mobile */

.home-navbar__toggle {
  display: none;

  width: 42px;
  height: 42px;

  padding: 0;

  background: transparent;
  border: none;

  cursor: pointer;
}


.home-navbar__toggle span {
  display: block;

  width: 26px;
  height: 1px;

  margin: 7px auto;

  background: var(--white);

  transition: transform 0.3s ease;
}


/* =========================================================
   NAVBAR RESPONSIVA
   ========================================================= */

@media (max-width: 860px) {

  .home-navbar {
    height: 72px;
    padding: 0 20px;
  }


  .home-navbar__logo {
    width: 42px;
    height: 42px;
  }


  .home-navbar__toggle {
    position: relative;

    z-index: 2;

    display: block;
  }


  .home-navbar__links {
    position: fixed;

    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    gap: 24px;

    padding: 100px 9vw 60px;

    background: rgba(5, 5, 5, 0.98);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-12px);

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }


  .home-navbar__links.is-open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }


  .home-navbar__links a {
    font-family: "Old Standard TT", serif;

    font-size: clamp(2rem, 9vw, 3.5rem);
    line-height: 1;

    letter-spacing: 0;

    text-transform: none;
  }


  /* Transforma o menu hambúrguer em X */

  .home-navbar__toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }


  .home-navbar__toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }


  /* Impede a página de rolar com o menu aberto */

  body.menu-open {
    overflow: hidden;
  }

}

/* =========================================================
   NAVBAR — PÁGINAS INTERNAS
   ========================================================= */

/*
  Nas páginas internas a navbar começa levemente escura,
  pois alguns banners podem possuir áreas claras.
*/

.internal-navbar {
  background: rgba(5, 5, 5, 0.28);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}


/*
  Quando a página é rolada, ela recebe o mesmo fundo
  mais sólido utilizado na Home.
*/

.internal-navbar.is-scrolled,
.internal-navbar.is-open {
  background: rgba(5, 5, 5, 0.92);

  border-bottom-color: rgba(255, 255, 255, 0.13);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


/* Página atual */

.home-navbar__links a.is-current {
  opacity: 0.62;
}


/*
  A página atual mantém uma linha visível.
*/

.home-navbar__links a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}


/*
  O link da página atual continua branco mesmo depois
  de ter sido visitado.
*/

.home-navbar__links a.is-current,
.home-navbar__links a.is-current:link,
.home-navbar__links a.is-current:visited,
.home-navbar__links a.is-current:hover,
.home-navbar__links a.is-current:focus,
.home-navbar__links a.is-current:active {
  color: #ffffff;
  text-decoration: none;
}


/* Ajuste mobile */

@media (max-width: 860px) {

  .internal-navbar {
    background: rgba(5, 5, 5, 0.52);
  }


  .home-navbar__links a.is-current {
    opacity: 0.45;
  }


  /*
    No menu mobile, não precisamos da linha inferior.
  */

  .home-navbar__links a.is-current::after {
    display: none;
  }

}

/* =========================================================
   HOME — HERO PRINCIPAL
   ========================================================= */

.home-hero {
  position: relative;

  width: 100%;
  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  background: #050505;
  color: #ffffff;
}


/* Imagem principal */

.home-hero__media {
  position: absolute;
  inset: 0;

  z-index: 0;

  overflow: hidden;
}


.home-hero__image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1.03);

  animation: homeHeroImage 1.8s ease forwards;
}


@keyframes homeHeroImage {

  from {
    opacity: 0;
    transform: scale(1.09);
  }

  to {
    opacity: 1;
    transform: scale(1.03);
  }

}


/* Camada escura */

.home-hero__overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.55) 42%,
      rgba(0, 0, 0, 0.12) 75%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.12) 48%,
      rgba(0, 0, 0, 0.28) 100%
    );
}


/* Textura leve */

.home-hero__grain {
  position: absolute;
  inset: 0;

  z-index: 2;

  pointer-events: none;

  opacity: 0.05;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.7'/%3E%3C/svg%3E");
}


/* Conteúdo principal */

.home-hero__content {
  position: relative;

  z-index: 3;

  width: min(760px, 100%);

  padding:
    150px
    clamp(22px, 6vw, 92px)
    clamp(110px, 14vh, 155px);

  animation: homeHeroContent 1.1s 0.25s ease both;
}


@keyframes homeHeroContent {

  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* Texto pequeno superior */

.home-hero__eyebrow {
  margin: 0 0 20px;

  font-family: "Oswald", sans-serif;

  font-size: 0.75rem;
  font-weight: 400;

  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.72);
}


/* Título */

.home-hero__title {
  max-width: 760px;

  margin: 0;

  font-family: "Old Standard TT", serif;

  font-size: clamp(3.4rem, 7.5vw, 7rem);
  font-weight: 400;

  line-height: 0.91;
  letter-spacing: -0.045em;

  text-wrap: balance;
}


/* Descrição */

.home-hero__description {
  max-width: 520px;

  margin: 28px 0 0;

  font-family: "Oswald", sans-serif;

  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  font-weight: 300;

  line-height: 1.7;
  letter-spacing: 0.03em;

  color: rgba(255, 255, 255, 0.76);
}


/* Botões */

.home-hero__actions {
  margin-top: 34px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 12px;
}


.home-hero__button,
.home-hero__button:link,
.home-hero__button:visited {
  min-height: 48px;

  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.75);

  font-family: "Oswald", sans-serif;

  font-size: 0.76rem;
  font-weight: 400;

  letter-spacing: 0.15em;
  text-transform: uppercase;

  text-decoration: none;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


.home-hero__button:hover {
  transform: translateY(-2px);
}


/* Botão principal */

.home-hero__button--primary,
.home-hero__button--primary:link,
.home-hero__button--primary:visited {
  color: #050505;
  background: #ffffff;
}


.home-hero__button--primary:hover {
  color: #ffffff;
  background: transparent;
}


/* Botão secundário */

.home-hero__button--secondary,
.home-hero__button--secondary:link,
.home-hero__button--secondary:visited {
  color: #ffffff;
  background: transparent;
}


.home-hero__button--secondary:hover {
  color: #050505;
  background: #ffffff;
}


/* Informações inferiores */

.home-hero__footer {
  position: absolute;

  left: clamp(22px, 6vw, 92px);
  right: clamp(22px, 6vw, 92px);
  bottom: 30px;

  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-top: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.25);

  font-family: "Oswald", sans-serif;

  font-size: 0.68rem;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.65);
}


.home-hero__footer a,
.home-hero__footer a:link,
.home-hero__footer a:visited {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}


.home-hero__footer a:hover {
  color: #ffffff;
  transform: translateY(2px);
}


/* Garante rolagem suave para os botões */

html {
  scroll-behavior: smooth;
}


/* =========================================================
   HERO — TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .home-hero__content {
    width: min(680px, 100%);

    padding-bottom: 130px;
  }


  .home-hero__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.46) 60%,
        rgba(0, 0, 0, 0.2) 100%
      ),
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.14) 52%,
        rgba(0, 0, 0, 0.3) 100%
      );
  }

}


/* =========================================================
   HERO — CELULAR
   ========================================================= */

@media (max-width: 700px) {

  .home-hero {
    min-height: 92svh;
  }


  .home-hero__image {
    object-position: center;
  }


  .home-hero__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.48) 55%,
        rgba(0, 0, 0, 0.27) 100%
      );
  }


  .home-hero__content {
    width: 100%;

    padding:
      120px
      20px
      115px;
  }


  .home-hero__eyebrow {
    margin-bottom: 15px;

    font-size: 0.66rem;
  }


  .home-hero__title {
    max-width: 560px;

    font-size: clamp(3rem, 16vw, 5.4rem);

    line-height: 0.92;
  }


  .home-hero__description {
    max-width: 430px;

    margin-top: 22px;

    font-size: 0.92rem;
    line-height: 1.6;
  }


  .home-hero__actions {
    width: 100%;

    margin-top: 28px;
  }


  .home-hero__button {
    min-height: 47px;

    padding: 0 18px;

    font-size: 0.68rem;
  }


  .home-hero__footer {
    left: 20px;
    right: 20px;
    bottom: 22px;

    font-size: 0.58rem;
  }


  .home-hero__footer > span {
    display: none;
  }


  .home-hero__footer a {
    margin-left: auto;
  }

}


/* Celulares pequenos */

@media (max-width: 430px) {

  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }


  .home-hero__button {
    width: 100%;
  }


  .home-hero__title {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

}


/* Redução de movimento */

@media (prefers-reduced-motion: reduce) {

  .home-hero__image,
  .home-hero__content {
    animation: none;
  }


  html {
    scroll-behavior: auto;
  }

}

/* =========================================================
   HOME — DOWNTOWN SPOTLIGHT
   ========================================================= */

.home-spotlight {
  position: relative;

  width: 100%;

  padding:
    clamp(90px, 11vw, 170px)
    clamp(22px, 6vw, 92px);

  background: #f3f1ec;
  color: #080808;
}


/* Cabeçalho da seção */

.home-spotlight__header {
  width: 100%;

  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(260px, 0.6fr);

  align-items: end;

  gap: 40px;

  margin-bottom: clamp(45px, 6vw, 80px);

  padding-bottom: 28px;

  border-bottom: 1px solid rgba(8, 8, 8, 0.22);
}


.home-spotlight__heading {
  min-width: 0;
}


/* Texto pequeno */

.home-spotlight__eyebrow {
  margin: 0 0 18px;

  font-family: "Oswald", sans-serif;

  font-size: 0.72rem;
  font-weight: 400;

  letter-spacing: 0.26em;
  text-transform: uppercase;

  color: rgba(8, 8, 8, 0.55);
}


/* Título principal */

.home-spotlight__title {
  margin: 0;

  font-family: "Old Standard TT", serif;

  font-size: clamp(3.3rem, 7vw, 7.4rem);
  font-weight: 400;

  line-height: 0.88;
  letter-spacing: -0.055em;
}


/* Texto introdutório */

.home-spotlight__intro {
  max-width: 410px;

  margin: 0 0 4px auto;

  font-family: "Oswald", sans-serif;

  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 300;

  line-height: 1.7;

  color: rgba(8, 8, 8, 0.64);
}


/* =========================================================
   CARD PRINCIPAL
   ========================================================= */

.spotlight-card {
  position: relative;

  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 560px;
  max-height: 820px;

  overflow: hidden;

  border-radius: 20px;

  background: #080808;
  color: #ffffff;

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.14);
}


/* Área da imagem */

.spotlight-card__media,
.spotlight-card__media:link,
.spotlight-card__media:visited {
  position: absolute;
  inset: 0;
  z-index: 1;

  display: block;

  width: 100%;
  height: 100%;

  overflow: hidden;

  color: inherit;
  text-decoration: none;
}


.spotlight-card__media::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.10) 28%,
      rgba(0, 0, 0, 0.30) 48%,
      rgba(0, 0, 0, 0.70) 66%,
      rgba(8, 8, 8, 0.94) 82%,
      #080808 100%
    );

  pointer-events: none;
}


.spotlight-card__image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transition:
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.6s ease;
}

.spotlight-card:hover .spotlight-card__image {
  transform: scale(1.025);
  filter: brightness(0.92);
}


.spotlight-card:hover .spotlight-card__image {
  transform: scale(1.035);

  filter: brightness(0.92);
}


/* Conteúdo lateral */

.spotlight-card__content {
  position: relative;
  z-index: 2;

  width: min(46%, 680px);
  min-width: 0;
  height: 100%;

  margin-left: auto;

  padding:
    clamp(44px, 5vw, 82px)
    clamp(34px, 5vw, 78px)
    clamp(44px, 5vw, 82px)
    clamp(24px, 3vw, 48px);

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: transparent;
}


/* Metadados */

.spotlight-card__meta {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


/* Título do destaque */

.spotlight-card__title {
  max-width: 10ch;

  margin: clamp(32px, 4vw, 56px) 0 0;

  font-family: "Old Standard TT", serif;

  font-size: clamp(3.2rem, 5vw, 6.3rem);
  font-weight: 400;

  line-height: 0.9;
  letter-spacing: -0.045em;

  text-wrap: balance;
}


/* Descrição */

.spotlight-card__description {
  max-width: 510px;

  margin: clamp(24px, 3vw, 38px) 0 0;

  font-family: "Oswald", sans-serif;

  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  font-weight: 300;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.72);
}

.spotlight-card__button {
  width: fit-content;

  margin-top: clamp(26px, 3.5vw, 44px);
}


/* Link final */

.spotlight-card__link,
.spotlight-card__link:link,
.spotlight-card__link:visited {
  width: fit-content;

  margin-top: 42px;

  display: inline-flex;
  align-items: center;

  gap: 16px;

  padding-bottom: 8px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.65);

  font-family: "Oswald", sans-serif;

  font-size: 0.72rem;
  font-weight: 400;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #ffffff;
  text-decoration: none;

  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}


.spotlight-card__link:hover {
  gap: 24px;
  opacity: 0.68;
}


/* =========================================================
   SPOTLIGHT — TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .spotlight-card {
    aspect-ratio: auto;
    min-height: 680px;
  }

  .spotlight-card__content {
    width: 58%;
  }

  .spotlight-card__media::after {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.28) 32%,
        rgba(0, 0, 0, 0.76) 60%,
        #080808 100%
      );
  }

}


/* =========================================================
   SPOTLIGHT — CELULAR
   ========================================================= */

@media (max-width: 700px) {

  .spotlight-card {
    min-height: 720px;
    aspect-ratio: auto;
  }

  .spotlight-card__image {
    object-position: center top;
  }

  .spotlight-card__media::after {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.04) 0%,
        rgba(0, 0, 0, 0.20) 38%,
        rgba(0, 0, 0, 0.84) 66%,
        #080808 88%
      );
  }

  .spotlight-card__content {
    width: 100%;
    height: 100%;

    justify-content: flex-end;

    padding:
      34px
      26px
      48px;
  }

  .spotlight-card__title {
    max-width: 11ch;

    font-size: clamp(3rem, 14vw, 4.8rem);
  }

}

/* =========================================================
   HOME SPOTLIGHT — CARROSSEL
   ========================================================= */

.home-spotlight-carousel {
  position: relative;
  width: 100%;
}

.home-spotlight-slides {
  position: relative;
  width: 100%;
  min-height: clamp(580px, 70vw, 820px);
}

.home-spotlight-slide {
  position: absolute;
  inset: 0;

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

  transform: translateY(18px);

  transition:
    opacity 0.7s ease,
    visibility 0.7s ease,
    transform 0.7s ease;
}

.home-spotlight-slide.active {
  position: relative;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}


/* =========================================================
   CONTROLES
   ========================================================= */

.home-spotlight-controls {
  width: 100%;

  margin-top: 30px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  gap: 28px;
}

.home-spotlight-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-spotlight-arrow {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(8, 8, 8, 0.28);
  border-radius: 50%;

  background: transparent;
  color: #080808;

  font-size: 1.15rem;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.home-spotlight-arrow:hover {
  background: #080808;
  color: #ffffff;
  border-color: #080808;

  transform: scale(1.04);
}

.home-spotlight-dots {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 9px;
}

.home-spotlight-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: none;
  border-radius: 50%;

  background: rgba(8, 8, 8, 0.28);

  cursor: pointer;

  transition:
    width 0.3s ease,
    border-radius 0.3s ease,
    background 0.3s ease;
}

.home-spotlight-dot.active {
  width: 34px;
  border-radius: 20px;
  background: #080808;
}

.home-spotlight-counter {
  display: flex;
  align-items: center;
  gap: 9px;

  font-family: "Oswald", sans-serif;

  font-size: 0.67rem;
  letter-spacing: 0.16em;

  color: rgba(8, 8, 8, 0.58);
}

.home-spotlight-counter__divider {
  width: 24px;
  height: 1px;

  background: rgba(8, 8, 8, 0.35);
}


/* =========================================================
   LOADING
   ========================================================= */

.home-spotlight-loading {
  min-height: 520px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 18px;

  background: #080808;
  border-radius: 20px;
}

.home-spotlight-loading p {
  margin: 0;

  font-family: "Oswald", sans-serif;

  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.58);
}

.home-spotlight-loading__line {
  position: relative;

  width: 120px;
  height: 1px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.18);
}

.home-spotlight-loading__line::after {
  content: "";

  position: absolute;
  top: 0;
  left: -50%;

  width: 50%;
  height: 100%;

  background: #ffffff;

  animation: homeSpotlightLoading 1.25s ease-in-out infinite;
}

@keyframes homeSpotlightLoading {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}


/* =========================================================
   ESTADO VAZIO OU ERRO
   ========================================================= */

.home-spotlight-empty {
  min-height: 500px;

  padding: 60px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  border-radius: 20px;

  background:
    linear-gradient(
      135deg,
      #080808,
      #171717
    );

  color: #ffffff;
}

.home-spotlight-empty__eyebrow {
  margin: 0 0 18px;

  font-family: "Oswald", sans-serif;

  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.48);
}

.home-spotlight-empty h3 {
  max-width: 680px;

  margin: 0;

  font-family: "Old Standard TT", serif;

  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400;

  line-height: 0.9;
  letter-spacing: -0.04em;
}

.home-spotlight-empty > p:last-child {
  max-width: 480px;

  margin: 28px 0 0;

  color: rgba(255, 255, 255, 0.58);
}


/* =========================================================
   AJUSTES NO TÍTULO DO CARD DINÂMICO
   ========================================================= */

.home-spotlight-slide .spotlight-card__title {
  overflow-wrap: anywhere;
}

.home-spotlight-slide .spotlight-card__media[
  aria-disabled="true"
] {
  cursor: default;
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 1050px) {

  .home-spotlight-slides {
    min-height: 1050px;
  }

}

@media (max-width: 700px) {

  .home-spotlight-slides {
    min-height: 850px;
  }

  .home-spotlight-controls {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .home-spotlight-dots {
    justify-content: flex-end;
  }

  .home-spotlight-counter {
    display: none;
  }

  .home-spotlight-arrow {
    width: 42px;
    height: 42px;
  }

  .home-spotlight-empty {
    min-height: 450px;
    padding: 35px 24px;
    border-radius: 14px;
  }

  .home-spotlight-loading {
    min-height: 450px;
    border-radius: 14px;
  }

}

@media (max-width: 430px) {

  .home-spotlight-slides {
    min-height: 790px;
  }

}

/* =========================================================
   HOME — LATEST FROM DOWNTOWN
   ========================================================= */

.home-latest {
  width: 100%;

  padding:
    clamp(95px, 11vw, 170px)
    clamp(22px, 6vw, 92px);

  background: #080808;
  color: #ffffff;
}

.home-latest__header {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(260px, 0.75fr);

  align-items: end;

  gap: 40px;

  margin-bottom: clamp(45px, 6vw, 80px);
  padding-bottom: 28px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-latest__eyebrow {
  margin: 0 0 18px;

  font-family: "Oswald", sans-serif;

  font-size: 0.72rem;
  font-weight: 400;

  letter-spacing: 0.26em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.48);
}

.home-latest__title {
  margin: 0;

  font-family: "Old Standard TT", serif;

  font-size: clamp(3.1rem, 7vw, 7rem);
  font-weight: 400;

  line-height: 0.9;
  letter-spacing: -0.05em;
}

.home-latest__intro {
  max-width: 420px;

  margin: 0 0 4px auto;

  font-family: "Oswald", sans-serif;

  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  font-weight: 300;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.58);
}


/* GRID */

.home-latest__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;
}


/* CARD */

.home-latest-card {
  min-width: 0;

  display: grid;
  grid-template-columns: 1fr;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;

  background: #0d0d0d;

  transition:
    transform 0.45s ease,
    border-color 0.45s ease;
}

.home-latest-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255, 255, 255, 0.38);
}

.home-latest-card--large {
  grid-row: span 2;
}

.home-latest-card--wide {
  grid-column: 1 / -1;

  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(300px, 0.8fr);
}


/* MEDIA */

.home-latest-card__media,
.home-latest-card__media:link,
.home-latest-card__media:visited {
  min-height: 300px;

  display: block;

  overflow: hidden;

  background: #141414;

  color: inherit;
  text-decoration: none;
}

.home-latest-card--large .home-latest-card__media {
  min-height: 520px;
}

.home-latest-card--wide .home-latest-card__media {
  min-height: 410px;
}

.home-latest-card__image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  filter:
    brightness(0.82)
    saturate(0.9);

  transform: scale(1.001);

  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.6s ease;
}

.home-latest-card:hover .home-latest-card__image {
  transform: scale(1.045);

  filter:
    brightness(0.95)
    saturate(1);
}

.home-latest-card__media {
  position: relative;
}

.home-latest-card__media::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.35),
      transparent 48%
    );

  pointer-events: none;

  transition: opacity 0.5s ease;
}

.home-latest-card:hover
.home-latest-card__media::after {
  opacity: 0.65;
}

.home-latest-card__placeholder {
  width: 100%;
  min-height: inherit;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  font-family: "Old Standard TT", serif;

  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;

  letter-spacing: 0.04em;

  color: rgba(255, 255, 255, 0.86);

  background:
    linear-gradient(
      135deg,
      #121212,
      #242424
    );
}


/* CONTENT */

.home-latest-card__content {
  padding:
    clamp(28px, 4vw, 48px);
}

.home-latest-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  padding-bottom: 18px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);

  font-family: "Oswald", sans-serif;

  font-size: 0.62rem;

  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.48);
}

.home-latest-card__title {
  margin: 34px 0 0;

  font-family: "Old Standard TT", serif;

  font-size: clamp(2rem, 3.7vw, 4.5rem);
  font-weight: 400;

  line-height: 0.95;
  letter-spacing: -0.035em;
}

.home-latest-card__description {
  max-width: 490px;

  margin: 22px 0 0;

  font-family: "Oswald", sans-serif;

  font-size: 0.9rem;
  font-weight: 300;

  line-height: 1.68;

  color: rgba(255, 255, 255, 0.58);
}

.home-latest-card__link,
.home-latest-card__link:link,
.home-latest-card__link:visited {
  width: fit-content;

  margin-top: 30px;

  display: inline-flex;
  align-items: center;

  gap: 14px;

  padding-bottom: 7px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.6);

  font-family: "Oswald", sans-serif;

  font-size: 0.68rem;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: #ffffff;
  text-decoration: none;

  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}

.home-latest-card__link:hover {
  gap: 22px;
  opacity: 0.65;
}


/* TABLET */

@media (max-width: 1050px) {

  .home-latest__header {
    grid-template-columns: 1fr;
    align-items: start;

    gap: 24px;
  }

  .home-latest__intro {
    margin-left: 0;
  }

  .home-latest-card--wide {
    grid-template-columns: 1fr;
  }

}


/* MOBILE */

@media (max-width: 760px) {

  .home-latest {
    padding:
      90px
      20px;
  }

  .home-latest__grid {
    grid-template-columns: 1fr;
  }

  .home-latest-card--large,
  .home-latest-card--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .home-latest-card__media,
  .home-latest-card--large .home-latest-card__media,
  .home-latest-card--wide .home-latest-card__media {
    min-height: 360px;
  }

  .home-latest-card {
    border-radius: 14px;
  }

  .home-latest-card__title {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

}

/* =========================================================
   HOME — MANIFESTO
   ========================================================= */

.home-manifesto {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  padding:
    clamp(110px, 14vw, 210px)
    clamp(22px, 6vw, 92px);

  background: #f1efe9;
  color: #080808;
}


/* Texto decorativo no fundo */

.home-manifesto__background {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  pointer-events: none;
}

.home-manifesto__background span {
  font-family: "Oswald", sans-serif;

  font-size: clamp(12rem, 31vw, 37rem);
  font-weight: 600;

  line-height: 0.75;
  letter-spacing: -0.08em;

  color: rgba(8, 8, 8, 0.035);

  white-space: nowrap;

  transform: translateX(-1.5%);
}


/* Conteúdo principal */

.home-manifesto__content {
  position: relative;
  z-index: 1;

  width: 100%;
}

.home-manifesto__top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: clamp(65px, 9vw, 125px);
  padding-bottom: 22px;

  border-bottom: 1px solid rgba(8, 8, 8, 0.24);
}

.home-manifesto__eyebrow,
.home-manifesto__index {
  margin: 0;

  font-family: "Oswald", sans-serif;

  font-size: 0.67rem;
  font-weight: 400;

  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(8, 8, 8, 0.55);
}


/* Título */

.home-manifesto__title {
  max-width: 1450px;

  margin: 0;

  font-family: "Old Standard TT", serif;

  font-size: clamp(3.5rem, 8.4vw, 9.5rem);
  font-weight: 400;

  line-height: 0.88;
  letter-spacing: -0.055em;
  text-transform: none;
}

.home-manifesto__title em {
  display: block;

  padding-left: clamp(0px, 12vw, 190px);

  font-weight: 400;
  color: rgba(8, 8, 8, 0.43);
}


/* Parte inferior */

.home-manifesto__bottom {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: end;

  gap: 50px;

  margin-top: clamp(70px, 10vw, 145px);
}

.home-manifesto__description {
  max-width: 610px;

  margin: 0;

  font-family: "Oswald", sans-serif;

  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 300;

  line-height: 1.75;

  color: rgba(8, 8, 8, 0.66);
}

.home-manifesto__link,
.home-manifesto__link:link,
.home-manifesto__link:visited {
  display: inline-flex;
  align-items: center;

  gap: 16px;

  padding-bottom: 8px;

  border-bottom: 1px solid rgba(8, 8, 8, 0.68);

  font-family: "Oswald", sans-serif;

  font-size: 0.7rem;
  font-weight: 400;

  letter-spacing: 0.17em;
  text-transform: uppercase;

  color: #080808;
  text-decoration: none;

  transition:
    gap 0.3s ease,
    opacity 0.3s ease;
}

.home-manifesto__link:hover {
  gap: 24px;
  opacity: 0.58;
}


/* Tablet */

@media (max-width: 900px) {

  .home-manifesto {
    min-height: auto;
  }

  .home-manifesto__title em {
    padding-left: 0;
  }

  .home-manifesto__bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

}


/* Celular */

@media (max-width: 600px) {

  .home-manifesto {
    padding:
      100px
      20px;
  }

  .home-manifesto__top {
    align-items: flex-start;

    margin-bottom: 70px;
  }

  .home-manifesto__eyebrow {
    max-width: 190px;
  }

  .home-manifesto__title {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .home-manifesto__bottom {
    margin-top: 70px;
    gap: 42px;
  }

  .home-manifesto__description {
    font-size: 0.92rem;
  }

}

/* =========================================================
   HOME — FOOTER
   ========================================================= */

.home-footer {
  width: 100%;

  padding:
    clamp(75px, 9vw, 125px)
    clamp(22px, 6vw, 92px)
    34px;

  border-top: none;

  background: #080808;
  color: #ffffff;
}


/* Parte superior */

.home-footer__top {
  display: grid;
  grid-template-columns:
    minmax(280px, 1.25fr)
    minmax(350px, 0.75fr);

  gap: clamp(60px, 10vw, 160px);

  padding-bottom: clamp(75px, 10vw, 140px);
}

.home-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-footer__logo,
.home-footer__logo:link,
.home-footer__logo:visited {
  font-family: "Old Standard TT", serif;

  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;

  line-height: 0.8;
  letter-spacing: -0.06em;

  color: #ffffff;
  text-decoration: none;
}

.home-footer__brand p {
  max-width: 410px;

  margin: 40px 0 0;

  font-family: "Oswald", sans-serif;

  font-size: 0.9rem;
  font-weight: 300;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.48);
}


/* Navegação */

.home-footer__navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));

  gap: 50px;
}

.home-footer__heading {
  margin: 0 0 28px;

  font-family: "Oswald", sans-serif;

  font-size: 0.65rem;
  font-weight: 400;

  letter-spacing: 0.2em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.4);
}

.home-footer__column nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 15px;
}

.home-footer__column a,
.home-footer__column a:link,
.home-footer__column a:visited {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  font-family: "Oswald", sans-serif;

  font-size: 0.91rem;
  font-weight: 300;

  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.home-footer__column a:hover {
  color: #ffffff;

  transform: translateX(5px);
}


/* Linha divisória */

.home-footer__line {
  width: 100%;
  height: 1px;

  background: rgba(255, 255, 255, 0.15);
}


/* Parte inferior */

.home-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  gap: 30px;

  padding-top: 27px;
}

.home-footer__bottom p {
  margin: 0;

  font-family: "Oswald", sans-serif;

  font-size: 0.61rem;
  font-weight: 300;

  letter-spacing: 0.13em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.4);
}

.home-footer__bottom > p:last-child {
  text-align: right;
}

.home-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 22px;
}

.home-footer__legal a,
.home-footer__legal a:link,
.home-footer__legal a:visited {
  font-family: "Oswald", sans-serif;

  font-size: 0.61rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;

  transition: color 0.3s ease;
}

.home-footer__legal a:hover {
  color: #ffffff;
}


/* Tablet */

@media (max-width: 900px) {

  .home-footer__top {
    grid-template-columns: 1fr;
  }

  .home-footer__navigation {
    max-width: 500px;
  }

  .home-footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .home-footer__bottom > p:last-child {
    display: none;
  }

}


/* Celular */

@media (max-width: 600px) {

  .home-footer {
    padding:
      80px
      20px
      28px;
  }

  .home-footer__top {
    gap: 70px;
  }

  .home-footer__logo {
    font-size: clamp(3.7rem, 19vw, 6rem);
  }

  .home-footer__brand p {
    margin-top: 30px;
  }

  .home-footer__navigation {
    grid-template-columns: 1fr 1fr;

    gap: 30px;
  }

  .home-footer__bottom {
    grid-template-columns: 1fr;

    gap: 18px;
  }

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

}

/* =========================
   GLOBAL FOOTER
========================= */

.site-footer {
  position: relative;

  width: 100%;

  padding:
    clamp(70px, 8vw, 120px)
    8%
    clamp(28px, 4vw, 48px);

  overflow: hidden;

  background: #050505;
  color: #ffffff;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}


/* =========================
   TOP
========================= */

.site-footer__top {
  width: 100%;

  display: grid;
  grid-template-columns:
    minmax(280px, 1.2fr)
    minmax(320px, 0.8fr);

  align-items: start;
  gap: clamp(60px, 10vw, 160px);
}


/* =========================
   BRAND
========================= */

.site-footer__brand {
  max-width: 620px;
}

.site-footer__logo {
  display: inline-block;

  margin-bottom: 28px;

  font-family: "Old Standard TT", serif;
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  font-weight: 400;

  line-height: 0.8;
  letter-spacing: -0.055em;
  text-transform: uppercase;

  color: #ffffff;
  text-decoration: none;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.site-footer__logo:hover {
  opacity: 0.72;
  transform: translateX(4px);
}

.site-footer__brand > p {
  max-width: 470px;

  margin: 0;

  font-family: "Oswald", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;

  line-height: 1.7;
  letter-spacing: 0.03em;

  color: rgba(255, 255, 255, 0.55);
}


/* =========================
   NAVIGATION
========================= */

.site-footer__navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: clamp(40px, 6vw, 90px);
}

.site-footer__column {
  min-width: 0;
}

.site-footer__heading {
  margin: 0 0 26px;

  font-family: "Oswald", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;

  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.38);
}

.site-footer__column nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 14px;
}

.site-footer__column nav a {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding-bottom: 3px;

  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;

  letter-spacing: 0.04em;

  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.site-footer__column nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 1px;

  background: #ffffff;

  transition: width 0.3s ease;
}

.site-footer__column nav a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.site-footer__column nav a:hover::after {
  width: 100%;
}

.site-footer__column nav a span {
  font-size: 0.8rem;

  transition: transform 0.3s ease;
}

.site-footer__column nav a:hover span {
  transform: translate(2px, -2px);
}


/* =========================
   DIVIDER
========================= */

.site-footer__line {
  width: 100%;
  height: 1px;

  margin:
    clamp(60px, 8vw, 110px)
    0
    28px;

  background: rgba(255, 255, 255, 0.14);
}


/* =========================
   BOTTOM
========================= */

.site-footer__bottom {
  width: 100%;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;
  gap: 30px;
}

.site-footer__bottom > p,
.site-footer__legal p {
  margin: 0;

  font-family: "Oswald", sans-serif;
  font-size: 0.68rem;
  font-weight: 300;

  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.42);
}

.site-footer__legal {
  text-align: center;
}

.site-footer__bottom > p:last-child {
  text-align: right;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .site-footer {
    padding:
      80px
      6%
      36px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .site-footer__brand {
    max-width: 700px;
  }

  .site-footer__navigation {
    max-width: 520px;
  }

  .site-footer__line {
    margin-top: 70px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

  .site-footer {
    padding:
      70px
      6%
      28px;
  }

  .site-footer__top {
    gap: 54px;
  }

  .site-footer__logo {
    margin-bottom: 24px;

    font-size: clamp(3.5rem, 20vw, 5.8rem);
  }

  .site-footer__brand > p {
    max-width: 330px;

    font-size: 0.9rem;
  }

  .site-footer__navigation {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .site-footer__column nav {
    gap: 12px;
  }

  .site-footer__line {
    margin:
      58px
      0
      24px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 10px;
  }

  .site-footer__legal {
    text-align: left;
  }

  .site-footer__bottom > p:last-child {
    text-align: left;
  }

}


/* =========================
   VERY SMALL MOBILE
========================= */

@media (max-width: 430px) {

  .site-footer__navigation {
    grid-template-columns: 1fr;
    gap: 42px;
  }

}