/* =========================
   PÁGINAS INTERNAS - BASE
========================= */

.internal-page {
  min-height: 100vh;
  padding-top: 92px;
  padding-bottom: 128px;
  background: #0b1016;
  color: #fff;
}

.split-section {
  padding: 92px 0 72px;
}

.split-container {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.page-heading {
  margin-bottom: 56px;
}

.page-heading span {
  display: block;
  margin-bottom: 10px;

  color: #ffc400;

  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.page-heading h1 {
  margin: 0;

  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* =========================
   GRID 2 COLUNAS
========================= */

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.split-image {
  width: 100%;
}

.split-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.split-content {
  width: 100%;
  max-width: 460px;
}

/* =========================
   MOLDURA AMARELA
========================= */

.framed-image {
  position: relative;
}

.framed-image::before,
.framed-image::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 86px;
  z-index: 2;
  pointer-events: none;
}

/* =========================
   CONTATO
========================= */

.availability {
  margin-bottom: 54px;
}

.availability p {
  margin: 0 0 28px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.contact-list {
  display: grid;
  gap: 42px;
}

.contact-item h2 {
  margin: 0 0 8px;

  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-item a {
  color: #ffc400;
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-item a:hover {
  color: #fff;
}

/* =========================
   MENU ATIVO
========================= */

.menu-link.active {
  color: #ffc400;
  border-bottom: 1px solid #ffc400;
  padding-bottom: 10px;
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {
  .internal-page {
    padding-top: 84px;
  }

  .split-section {
    padding: 64px 0 56px;
  }

  .split-container {
    width: min(100% - 48px, 640px);
  }

  .page-heading {
    margin-bottom: 42px;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .split-content {
    max-width: 100%;
  }

  .framed-image::before,
  .framed-image::after {
    width: 64px;
    height: 64px;
  }

  .framed-image::before {
    top: -16px;
    right: -16px;
    border-top-width: 5px;
    border-right-width: 5px;
  }

  .framed-image::after {
    left: -16px;
    bottom: -16px;
    border-left-width: 5px;
    border-bottom-width: 5px;
  }

  .availability {
    margin-bottom: 42px;
  }

  .availability p {
    font-size: 1rem;
  }

  .contact-item h2 {
    font-size: 1.4rem;
  }

  .contact-item a {
    font-size: 1rem;
  }

  .menu-link.active {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 540px) {
  .split-container {
    width: min(100% - 36px, 640px);
  }

  .split-section {
    padding-top: 48px;
  }

  .page-heading span {
    font-size: 0.75rem;
    letter-spacing: 0.26em;
  }

  .page-heading h1 {
    font-size: 3.2rem;
  }
}