@font-face {
  font-family: 'Geist';
  src: url('../fonts/Geist-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Poiret One';
  src: url('../fonts/PoiretOne-Regular.ttf') format('truetype');
  font-display: swap;
}

:root {
  --pb-bg: #ececec;
  --pb-text: #161514;
  --pb-muted: #4d4b49;
  --pb-card: #ffffff;
  --pb-stroke: rgba(16, 16, 16, 0.1);
  --pb-accent: #394b4d;
  --pb-accent-2: #506e70;
  --pb-warm: #fec569;
  --pb-radius: 18px;
  --pb-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Geist', sans-serif;
  color: var(--pb-text);
  background-color: var(--pb-bg);
  background-image: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.78)),
    url('../media/Paraiso-Brumado.png');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}

a {
  color: inherit;
}

.pb-container {
  width: min(1180px, 88vw);
  margin: 0 auto;
}

.pb-main {
  padding-top: 112px;
  padding-bottom: 56px;
}

.pb-home .pb-header,
.pb-home .pb-footer {
  display: none;
}

.pb-home .pb-main {
  padding-top: 34px;
  padding-bottom: 28px;
}

.pb-header {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--pb-stroke);
}

.pb-header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pb-brand {
  display: inline-flex;
  align-items: center;
}

.pb-brand img {
  width: clamp(180px, 22vw, 230px);
  height: auto;
}

.pb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pb-nav-link {
  text-decoration: none;
  color: var(--pb-muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: all 0.22s ease;
}

.pb-nav-link:hover,
.pb-nav-link.is-active {
  color: #fff;
  background: linear-gradient(90deg, var(--pb-accent-2), var(--pb-accent));
}

.pb-page-title {
  font-family: 'Poiret One', serif;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  margin: 0 0 12px;
}

.pb-page-subtitle {
  color: var(--pb-muted);
  font-size: 1.08rem;
  margin: 0;
}

.pb-hero {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.pb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 34px);
}

.pb-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pb-hero-copy h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pb-hero-copy p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--pb-muted);
}

.pb-hero-copy img {
  width: min(320px, 100%);
  height: auto;
}

.pb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--pb-accent-2), var(--pb-accent));
  min-height: 46px;
  padding: 10px 24px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(57, 75, 77, 0.35);
}

.pb-hero-visual img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.pb-hero-visual {
  order: -1;
}

.pb-section {
  margin-top: clamp(34px, 5vw, 70px);
}

.pb-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.pb-section-head h2 {
  font-family: 'Poiret One', serif;
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 1.04;
  margin: 0;
}

.pb-section-head p {
  margin: 0;
  color: var(--pb-muted);
  line-height: 1.6;
}

.pb-section-head-split {
  align-items: start;
}

.pb-gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pb-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  min-height: 210px;
}

.pb-gallery-item.wide {
  grid-column: span 2;
}

.pb-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pb-slider {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--pb-stroke);
  border-radius: var(--pb-radius);
  padding: 14px;
  box-shadow: none;
  position: relative;
}

.pb-slider-frame {
  overflow: hidden;
  border-radius: 12px;
}

.pb-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  align-items: stretch;
}

.pb-slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
}

.pb-slide img {
  width: 100%;
  height: clamp(260px, 43vw, 520px);
  object-fit: cover;
  display: block;
}

.pb-slider-controls {
  margin-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.pb-slider-buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
}

.pb-slider-buttons button {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  color: #fff;
  background: var(--pb-warm);
  cursor: pointer;
  pointer-events: auto;
}

.pb-slider-dots {
  display: none;
  gap: 7px;
  flex-wrap: wrap;
}

.pb-slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #d0cfcc;
  cursor: pointer;
}

.pb-slider-dots button.is-active {
  background: var(--pb-accent);
}

.pb-contact-wrap {
  display: grid;
  gap: 18px;
}

.pb-contact-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--pb-stroke);
  border-radius: var(--pb-radius);
  padding: clamp(18px, 2.8vw, 30px);
  box-shadow: none;
}

.pb-map {
  border: 0;
  border-radius: 12px;
  width: 100%;
  min-height: 290px;
}

.pb-action-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pb-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;
}

.pb-details .pb-landmark {
  width: 100%;
  border-radius: 12px;
}

.pb-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pb-list li {
  font-size: 1rem;
}

.pb-list a {
  text-decoration: none;
  font-weight: 600;
}

.pb-feature-panels {
  display: grid;
  gap: 18px;
}

.pb-banner {
  border-radius: var(--pb-radius);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.pb-banner-primary {
  min-height: 260px;
  padding: 34px 42px;
  background-image: linear-gradient(rgba(24, 33, 35, 0.30), rgba(24, 33, 35, 0.45)),
    url('../media/footer.png');
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-areas:
    "logo text"
    "social social";
  align-items: center;
  gap: 32px;
}

.pb-banner-copy {
  width: 100%;
  display: contents;
}

.pb-banner-primary .logo-white {
  grid-area: logo;
  width: min(420px, 100%);
  display: block;
}

.pb-banner-primary p {
  grid-area: text;
  margin: 0;
  line-height: 1.55;
  font-size: 1.15rem;
  max-width: 620px;
  color: #fff;
}

.pb-social-icons {
  grid-area: social;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.pb-social-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.pb-social-icons i {
  font-size: 1.2rem;
}

.pb-banner-secondary {
  margin-top: 24px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.32)),
    url('../media/24-11-28-10-31-35-8172-scaled.jpg');
  background-size: cover;
  background-position: center;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  min-height: 180px;
}

.pb-banner-cell {
  text-align: center;
  padding: 0;
}

.pb-mini-label {
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.1;
  color: #fff;
}

.pb-mini-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.pb-mini-brand {
  margin-top: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.pb-mini-brand img:first-child {
  width: 160px;
}

.pb-mini-brand img:last-child {
  width: 48px;
}

.pb-banner-secondary .pb-mini-brand img {
  filter: brightness(0) invert(1);
}

.pb-banner-cell i {
  color: #fff;
  font-size: 3rem;
  line-height: 1;
}

.pb-linktree {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.pb-linktree-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--pb-shadow);
}

.pb-linktree-card img {
  width: 100%;
  display: block;
}

.pb-content-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--pb-stroke);
  border-radius: var(--pb-radius);
  padding: clamp(20px, 3vw, 40px);
  box-shadow: var(--pb-shadow);
}

.pb-content-card p,
.pb-content-card li {
  color: #2e2c2b;
  line-height: 1.7;
}

.pb-content-card h2,
.pb-content-card h3 {
  font-family: 'Poiret One', serif;
  margin-top: 22px;
  margin-bottom: 8px;
}

.pb-content-card ul {
  padding-left: 18px;
}

.pb-post-meta {
  color: var(--pb-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.pb-share {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pb-share a {
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid var(--pb-stroke);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--pb-muted);
}

.pb-archive-item {
  display: block;
  text-decoration: none;
  border: 1px solid var(--pb-stroke);
  border-radius: 14px;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.pb-archive-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--pb-shadow);
}

.pb-archive-item h3 {
  margin: 0 0 8px;
}

.pb-archive-item p {
  margin: 0;
  color: var(--pb-muted);
}

.pb-notfound {
  text-align: center;
}

.pb-notfound h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-family: 'Poiret One', serif;
  margin: 0;
}

.pb-notfound p {
  color: var(--pb-muted);
  margin: 8px 0 24px;
}

.pb-footer {
  margin-top: 30px;
  border-top: 1px solid var(--pb-stroke);
  background: rgba(255, 255, 255, 0.4);
}

.pb-footer-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0;
  color: #484644;
}

.pb-footer-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pb-footer-links a {
  color: inherit;
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .pb-hero-grid,
  .pb-details {
    grid-template-columns: 1fr;
  }

  .pb-banner-primary {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "text"
      "social";
    padding: 26px;
    min-height: 220px;
  }

  .pb-banner-primary .logo-white,
  .pb-banner-primary p {
    max-width: 100%;
  }

  .pb-banner-secondary {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px;
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .pb-main {
    padding-top: 96px;
  }

  .pb-home .pb-main {
    padding-top: 26px;
  }

  .pb-header-inner {
    height: auto;
    padding: 12px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .pb-brand img {
    width: 200px;
  }

  .pb-nav {
    width: 100%;
  }

  .pb-nav-link {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .pb-container {
    width: calc(100% - 32px);
  }

  .pb-hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pb-hero-copy p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .pb-hero-visual img {
    height: 300px;
    object-fit: cover;
  }

  .pb-btn {
    min-height: 42px;
    padding: 8px 18px;
    font-size: 0.92rem;
  }

  .pb-slider {
    padding: 10px;
  }

  .pb-slider-frame {
    border-radius: 10px;
  }

  .pb-slide img {
    height: 300px;
  }

  .pb-slider-buttons {
    padding: 0 2px;
  }

  .pb-slider-buttons button {
    width: 32px;
    height: 32px;
  }

  .pb-slider-controls {
    top: 50%;
    transform: translateY(-50%);
  }

  .pb-gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pb-gallery-item.wide {
    grid-column: span 1;
  }

  .pb-gallery-item {
    min-height: 300px;
  }

  .pb-gallery-item img {
    height: 100%;
  }

  .pb-banner-primary {
    gap: 14px;
  }

  .pb-banner-secondary {
    gap: 20px;
  }
}

@media (min-width: 560px) {
  .pb-section-head-split {
    grid-template-columns: 1fr 1fr;
    column-gap: 22px;
    align-items: center;
  }
}
