@charset "UTF-8";

:root {
  --baiacu-navy: #073f4b;
  --baiacu-blue: #0b7285;
  --baiacu-blue-light: #dff5f6;
  --baiacu-green: #0b7a59;
  --baiacu-green-dark: #07523f;
  --baiacu-mangrove: #365f3c;
  --baiacu-sand: #f5ead1;
  --baiacu-sand-light: #fffaf0;
  --baiacu-gold: #eab84c;
  --baiacu-coral: #d96946;
  --baiacu-white: #ffffff;
  --baiacu-ink: #213431;
  --baiacu-muted: #62716d;
  --baiacu-line: #dbe7e2;
  --baiacu-shadow: 0 20px 55px rgba(4, 61, 68, 0.12);
  --baiacu-radius: 28px;
  --header-height: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
    text-align: justify;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 122px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--baiacu-ink);
  background: #fffdf8;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #edf4f1;
  color: var(--baiacu-green-dark);
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Cabeçalho */

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(7, 63, 75, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 22px rgba(7, 63, 75, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  width: min(1380px, calc(100% - 28px));
  min-height: var(--header-height);
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--baiacu-navy);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--baiacu-blue), var(--baiacu-green));
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--baiacu-muted);
  font-size: 0.63rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #42514e;
  font-size: 0.82rem;
  text-decoration: none;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: var(--baiacu-green-dark);
  background: #e9f5f0;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 47px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  color: #fff;
  background: var(--baiacu-green);
  box-shadow: 0 12px 25px rgba(11, 122, 89, 0.18);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: #edf5f2;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 99px;
  background: var(--baiacu-navy);
}

/* Banner */

.baiacu-hero {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100vh - var(--header-height)));
  overflow: hidden;
  isolation: isolate;
  align-items: end;
  color: #fff;
  background: var(--baiacu-navy);
}

.baiacu-hero__image,
.baiacu-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.baiacu-hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: center 46%;
}

.baiacu-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(1, 44, 53, 0.9) 0%, rgba(1, 44, 53, 0.58) 43%, rgba(1, 44, 53, 0.08) 74%),
    linear-gradient(0deg, rgba(1, 35, 39, 0.65) 0%, transparent 55%);
}

.baiacu-hero__content {
  padding-top: 86px;
  padding-bottom: 92px;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--baiacu-green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker {
  color: #f6d680;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

.baiacu-hero h1 {
  max-width: 800px;
  margin: 13px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 15vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.baiacu-hero p {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 12px;
}

.button--sun {
  color: #233a35;
  background: var(--baiacu-gold);
  box-shadow: 0 14px 30px rgba(234, 184, 76, 0.22);
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
}

.hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 27px;
  display: grid;
  z-index: 2;
  gap: 5px;
  place-items: center;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll b {
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  place-items: center;
  background: rgba(0, 58, 62, 0.28);
  backdrop-filter: blur(8px);
}

/* Navegação interna */

.story-nav {
  position: sticky;
  z-index: 900;
  top: var(--header-height);
  border-bottom: 1px solid var(--baiacu-line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(15px);
}

.story-nav__inner {
  display: flex;
  min-height: 56px;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: thin;
}

.story-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--baiacu-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.story-nav a:hover {
  background: #e8f4ef;
}

/* Tipografia e seções */

h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--baiacu-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-lead {
  color: var(--baiacu-muted);
  font-size: clamp(1.03rem, 1.8vw, 1.16rem);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading--wide {
  max-width: 940px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Introdução */

.intro-section {
  padding: 90px 0 100px;
  background:
    radial-gradient(circle at 10% 12%, rgba(11, 114, 133, 0.08), transparent 26%),
    #fffdf8;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: start;
}

.intro-heading {
  position: sticky;
  top: 160px;
}

.intro-copy p {
  margin-bottom: 18px;
}

.identity-grid {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.identity-grid article {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--baiacu-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(4, 61, 68, 0.07);
}

.identity-grid span {
  position: absolute;
  top: 4px;
  right: 14px;
  color: rgba(11, 122, 89, 0.09);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
}

.identity-grid strong {
  position: relative;
  display: block;
  margin-top: 64px;
  color: var(--baiacu-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.identity-grid p {
  position: relative;
  margin: 9px 0 0;
  color: var(--baiacu-muted);
  font-size: 0.92rem;
}

/* História */

.history-section {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(234, 184, 76, 0.14), transparent 22%),
    linear-gradient(135deg, #073f4b, #07523f);
}

.history-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.history-section h2 {
  color: #fff;
}

.section-kicker--light {
  color: #8bd4ca;
}

.section-lead--light {
  color: rgba(255, 255, 255, 0.78);
}

.history-text {
  color: rgba(255, 255, 255, 0.76);
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 13px;
}

.history-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 103px;
  width: 1px;
  background: linear-gradient(#f2cb73, rgba(139, 212, 202, 0.35));
}

.history-timeline article {
  position: relative;
  display: grid;
  min-height: 116px;
  padding: 18px 20px 18px 0;
  grid-template-columns: 102px 1fr;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(8px);
}

.history-timeline article::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 98px;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--baiacu-gold);
  box-shadow: 0 0 0 4px rgba(234, 184, 76, 0.18);
}

.timeline-year {
  padding: 5px 12px 0 16px;
  color: #f2cb73;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.history-timeline strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.history-timeline p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

/* Igreja */

.church-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(54, 95, 60, 0.11), transparent 30%),
    var(--baiacu-sand-light);
}

.church-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

.church-main-photo {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--baiacu-radius);
  box-shadow: var(--baiacu-shadow);
}

.church-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.church-main-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 43, 38, 0.62), transparent 48%);
}

.church-main-photo figcaption,
.fishing-visual__caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: #fff;
}

.church-main-photo small,
.fishing-visual__caption small {
  display: block;
  margin-bottom: 6px;
  color: #f5d887;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.church-main-photo strong,
.fishing-visual__caption strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1.08;
}

.church-feature__copy {
  position: relative;
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--baiacu-line);
  border-radius: var(--baiacu-radius);
  background: #fff;
  box-shadow: var(--baiacu-shadow);
}

.feature-number {
  position: absolute;
  top: -16px;
  right: 10px;
  color: rgba(11, 114, 133, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 1;
}

.church-feature__copy h3 {
  position: relative;
  max-width: 600px;
  margin: 80px 0 18px;
  color: var(--baiacu-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.church-feature__copy > p {
  color: var(--baiacu-muted);
}

.heritage-note {
  margin-top: 27px;
  padding: 21px;
  border-left: 4px solid var(--baiacu-gold);
  border-radius: 0 18px 18px 0;
  background: #fff8e7;
}

.heritage-note strong {
  color: #72531a;
}

.heritage-note p {
  margin: 6px 0 0;
  color: #786946;
  font-size: 0.91rem;
}

.church-gallery {
  display: grid;
  margin-top: 28px;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
}

.church-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--baiacu-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 13px 34px rgba(4, 61, 68, 0.08);
}

.church-gallery img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.church-gallery figure:last-child img {
  object-fit: contain;
  background: #fff;
}

.church-gallery figcaption {
  padding: 18px 20px;
}

.church-gallery strong {
  display: block;
  color: var(--baiacu-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.church-gallery span {
  display: block;
  margin-top: 5px;
  color: var(--baiacu-muted);
  font-size: 0.85rem;
}

/* Pesca */

.fishing-section {
  padding: 105px 0;
  background: #fff;
}

.fishing-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.fishing-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--baiacu-shadow);
}

.fishing-visual img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.fishing-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 53, 59, 0.68), transparent 52%);
}

.fishing-copy h2 {
  max-width: 650px;
}

.fishing-facts {
  display: grid;
  gap: 12px;
  margin-top: 27px;
}

.fishing-facts article {
  padding: 20px;
  border: 1px solid var(--baiacu-line);
  border-radius: 18px;
  background: #f8fbfa;
}

.fishing-facts strong {
  display: block;
  color: var(--baiacu-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.fishing-facts p {
  margin: 6px 0 0;
  color: var(--baiacu-muted);
  font-size: 0.9rem;
}

/* Mulheres */

.women-section {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 92% 16%, rgba(234, 184, 76, 0.15), transparent 25%),
    linear-gradient(135deg, #7b3d2c, #9b5939 55%, #5f4732);
}

.women-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.women-section h2 {
  color: #fff;
}

.section-kicker--gold {
  color: #f7d983;
}

.women-copy > p:not(.section-lead) {
  color: rgba(255, 255, 255, 0.73);
}

.then-now {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--baiacu-radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.then-now__heading small {
  color: #f7d983;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.then-now__heading h3 {
  margin: 6px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.then-now__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.then-now__cards article {
  padding: 22px;
  border-radius: 18px;
  color: var(--baiacu-ink);
  background: #fffaf1;
}

.then-now__cards span {
  color: var(--baiacu-coral);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.then-now__cards strong {
  display: block;
  margin-top: 7px;
  color: #5f382b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.then-now__cards p {
  margin: 7px 0 0;
  color: #756158;
  font-size: 0.87rem;
}

.research-context {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.78rem;
}

/* Natureza */

.nature-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at 4% 80%, rgba(11, 114, 133, 0.12), transparent 25%),
    #eef7f1;
}

.nature-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.nature-heading {
  position: sticky;
  top: 165px;
  align-self: start;
}

.nature-panel {
  display: grid;
  gap: 14px;
}

.nature-panel article {
  display: grid;
  padding: 25px;
  border: 1px solid #cfe2d7;
  border-radius: 22px;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(54, 95, 60, 0.07);
}

.nature-panel article > span {
  display: grid;
  width: 54px;
  height: 54px;
  grid-row: 1 / span 2;
  border-radius: 17px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--baiacu-green), var(--baiacu-blue));
  font-size: 1.45rem;
}

.nature-panel strong {
  color: var(--baiacu-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.nature-panel p {
  margin: 7px 0 0;
  color: var(--baiacu-muted);
  font-size: 0.91rem;
}

/* Memórias */

.memory-story-section {
  padding: 95px 0 55px;
  background: #fffdf8;
}

.memory-story-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
}

.memory-quote {
  position: relative;
  margin: 0;
  padding: 38px 32px 28px;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, var(--baiacu-blue), var(--baiacu-green-dark));
  box-shadow: var(--baiacu-shadow);
}

.memory-quote > span {
  position: absolute;
  top: -24px;
  left: 17px;
  color: rgba(255, 255, 255, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10rem;
  line-height: 1;
}

.memory-quote p {
  position: relative;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  line-height: 1.3;
}

/* Mural */

.baiacu-mural-section {
  padding: 30px 0 105px;
  background: #fffdf8;
}

.vc-mural {
  --vc-primary: #0b6f63;
  --vc-primary-dark: #075047;
  --vc-primary-light: #e8f4ef;
  --vc-accent: #eab84c;
  --vc-background: #f3ede0;
  --vc-card: #ffffff;
  --vc-text: #263633;
  --vc-muted: #697672;
  --vc-border: #dce5e1;
  --vc-danger: #a33939;
  --vc-danger-background: #fcecec;

  width: 100%;
  padding: 34px;
  border-radius: 26px;
  color: var(--vc-text);
  background: var(--vc-background);
}

.vc-mural-header {
  display: flex;
  max-width: 880px;
  margin: 0 auto 28px;
  gap: 18px;
  align-items: flex-start;
}

.vc-mural-icon {
  display: flex;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--vc-primary);
  font-size: 25px;
}

.vc-mural-label,
.vc-feed-label {
  display: block;
  margin-bottom: 6px;
  color: var(--vc-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-mural-header h2 {
  margin: 0 0 10px;
  color: var(--vc-primary-dark);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
}

.vc-mural-header p {
  max-width: 730px;
  margin: 0;
  color: var(--vc-muted);
}

.vc-mural-content {
  display: grid;
  grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.vc-mural-form-card,
.vc-mural-feed-card {
  border: 1px solid var(--vc-border);
  border-radius: 20px;
  background: var(--vc-card);
}

.vc-mural-form-card,
.vc-mural-feed-card {
  padding: 22px;
}

.vc-mural-form-card h3,
.vc-feed-header h3 {
  margin: 0;
  color: var(--vc-primary-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.vc-form-description {
  margin: 8px 0 20px;
  color: var(--vc-muted);
  font-size: 0.85rem;
}

.vc-field {
  margin-bottom: 17px;
}

.vc-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--vc-text);
  font-size: 0.83rem;
  font-weight: 700;
}

.vc-field label span {
  color: var(--vc-muted);
  font-size: 0.72rem;
  font-weight: 400;
}

.vc-mural input,
.vc-mural textarea {
  width: 100%;
  border: 1px solid #bdcbc5;
  border-radius: 12px;
  color: var(--vc-text);
  background: #fff;
}

.vc-mural input {
  height: 47px;
  padding: 0 13px;
}

.vc-mural textarea {
  min-height: 135px;
  padding: 12px 13px;
  line-height: 1.55;
  resize: vertical;
}

.vc-mural input:focus,
.vc-mural textarea:focus {
  border-color: var(--vc-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 111, 99, 0.12);
}

.vc-textarea-footer {
  display: flex;
  min-height: 20px;
  margin-top: 6px;
  gap: 8px;
  justify-content: space-between;
}

.vc-character-count,
.vc-form-warning {
  color: var(--vc-muted);
  font-size: 0.68rem;
}

.vc-form-warning {
  color: var(--vc-danger);
}

.vc-submit-button {
  display: flex;
  width: 100%;
  min-height: 49px;
  border: none;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--vc-primary);
  font-weight: 750;
}

.vc-submit-button:hover:not(:disabled) {
  background: var(--vc-primary-dark);
}

.vc-submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.vc-privacy-note {
  margin: 13px 0 0;
  color: var(--vc-muted);
  font-size: 0.66rem;
  text-align: center;
}

.vc-feed-header {
  display: flex;
  margin-bottom: 18px;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}

.vc-publication-count {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--vc-primary);
  background: var(--vc-primary-light);
  font-size: 0.72rem;
  font-weight: 700;
}

.vc-mural-list {
  display: flex;
  max-height: 520px;
  padding-right: 4px;
  flex-direction: column;
  gap: 13px;
  overflow-y: auto;
}

.vc-mural-item {
  padding: 17px;
  border: 1px solid var(--vc-border);
  border-radius: 16px;
  background: #fff;
}

.vc-item-header {
  display: flex;
  margin-bottom: 12px;
  gap: 11px;
  align-items: center;
}

.vc-avatar {
  display: flex;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border-radius: 50%;
  color: #fff;
  align-items: center;
  justify-content: center;
  background: var(--vc-primary);
  font-size: 0.78rem;
  font-weight: 750;
}

.vc-item-name {
  margin: 0 0 3px;
  color: var(--vc-text);
  font-size: 0.85rem;
  font-weight: 750;
}

.vc-item-date {
  margin: 0;
  color: var(--vc-muted);
  font-size: 0.68rem;
}

.vc-item-text {
  margin: 0;
  color: #34413d;
  font-size: 0.85rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.vc-item-footer {
  display: flex;
  margin-top: 13px;
  align-items: center;
  justify-content: space-between;
}

.vc-like-button {
  display: inline-flex;
  min-height: 35px;
  padding: 6px 11px;
  border: 1px solid var(--vc-border);
  border-radius: 999px;
  color: var(--vc-muted);
  background: #fff;
  cursor: pointer;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 650;
}

.vc-like-button.is-liked {
  border-color: var(--vc-primary);
  color: var(--vc-primary);
  background: var(--vc-primary-light);
}

.vc-location-tag {
  color: var(--vc-muted);
  font-size: 0.68rem;
}

.vc-empty-state {
  padding: 45px 20px;
  border: 1px dashed #bdcbc5;
  border-radius: 15px;
  color: var(--vc-muted);
  text-align: center;
}

.vc-empty-state strong {
  display: block;
  margin-bottom: 5px;
  color: var(--vc-primary-dark);
}

.vc-send-status {
  display: none;
  margin-top: 14px;
  padding: 11px 13px;
  border-radius: 11px;
  font-size: 0.75rem;
}

.vc-send-status.is-visible {
  display: block;
}

.vc-send-status.info {
  color: #49645d;
  background: #eef4f2;
}

.vc-send-status.sucesso {
  color: #23643e;
  background: #e7f5eb;
}

.vc-send-status.erro {
  color: var(--vc-danger);
  background: var(--vc-danger-background);
}

/* Fontes e rodapé */

.sources-section {
  padding: 90px 0;
  border-top: 1px solid var(--baiacu-line);
  background: #f5f8f6;
}

.sources-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}

.sources-list {
  display: grid;
  gap: 10px;
}

.sources-list article {
  padding: 18px 20px;
  border: 1px solid var(--baiacu-line);
  border-radius: 16px;
  background: #fff;
}

.sources-list strong {
  color: var(--baiacu-green-dark);
}

.sources-list p {
  margin: 5px 0 0;
  color: var(--baiacu-muted);
  font-size: 0.86rem;
}

.site-footer {
  padding: 52px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--baiacu-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr;
  gap: 45px;
}

.site-footer strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 0.85rem;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer a {
  font-size: 0.85rem;
  text-decoration: none;
}

/* Responsividade */

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    padding: 18px;
    border-top: 1px solid var(--baiacu-line);
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    box-shadow: 0 22px 35px rgba(4, 61, 68, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .intro-grid,
  .history-layout,
  .fishing-layout,
  .women-grid,
  .nature-layout,
  .memory-story-layout,
  .sources-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-heading,
  .nature-heading {
    position: static;
  }

  .identity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .church-main-photo {
    min-height: 570px;
  }

  .fishing-visual,
  .fishing-visual img {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    width: calc(100% - 18px);
    min-height: var(--header-height);
    gap: 9px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .baiacu-hero {
    min-height: 700px;
  }

  .baiacu-hero__shade {
    background:
      linear-gradient(0deg, rgba(1, 44, 53, 0.88) 0%, rgba(1, 44, 53, 0.38) 70%),
      linear-gradient(90deg, rgba(1, 44, 53, 0.48), transparent);
  }

  .baiacu-hero__content {
    padding-top: 55px;
    padding-bottom: 74px;
  }

  .baiacu-hero h1 {
    font-size: clamp(4.8rem, 28vw, 7.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .intro-section,
  .history-section,
  .church-section,
  .fishing-section,
  .women-section,
  .nature-section,
  .sources-section {
    padding: 72px 0;
  }

  .intro-grid,
  .history-layout,
  .fishing-layout,
  .women-grid,
  .nature-layout,
  .memory-story-layout,
  .sources-layout {
    gap: 28px;
  }

  .identity-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .identity-grid article {
    min-height: 190px;
  }

  .history-timeline::before {
    left: 76px;
  }

  .history-timeline article {
    grid-template-columns: 76px 1fr;
    gap: 18px;
  }

  .history-timeline article::before {
    left: 71px;
  }

  .timeline-year {
    padding-left: 9px;
    font-size: 0.66rem;
  }

  .church-main-photo {
    min-height: 460px;
  }

  .church-feature__copy {
    padding: 26px;
  }

  .church-feature__copy h3 {
    margin-top: 68px;
  }

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

  .church-gallery img {
    height: 300px;
  }

  .fishing-visual,
  .fishing-visual img {
    min-height: 430px;
  }

  .then-now {
    padding: 22px;
  }

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

  .nature-panel article {
    grid-template-columns: 45px 1fr;
    padding: 20px;
  }

  .nature-panel article > span {
    width: 45px;
    height: 45px;
    border-radius: 14px;
  }

  .vc-mural {
    padding: 22px 13px;
    border-radius: 18px;
  }

  .vc-mural-header {
    gap: 12px;
  }

  .vc-mural-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .vc-mural-content {
    grid-template-columns: 1fr;
  }

  .vc-feed-header {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    max-width: 130px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .baiacu-hero {
    min-height: 650px;
  }

  .breadcrumbs {
    margin-bottom: 24px;
  }

  .hero-kicker {
    font-size: 0.65rem;
  }

  .history-timeline::before {
    display: none;
  }

  .history-timeline article {
    display: block;
    padding: 20px;
  }

  .history-timeline article::before {
    display: none;
  }

  .timeline-year {
    display: block;
    padding: 0;
    margin-bottom: 7px;
    text-align: left;
  }

  .church-main-photo {
    min-height: 400px;
  }

  .church-main-photo strong {
    font-size: 1.3rem;
  }

  .church-gallery img {
    height: 255px;
  }

  .fishing-visual,
  .fishing-visual img {
    min-height: 360px;
  }

  .vc-item-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ================================================================
   Identidade padrão do projeto no cabeçalho e rodapé
   ================================================================ */

.brand-logo {
  display: inline-flex;
  width: 220px;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.header-inner {
  grid-template-columns: minmax(190px, 230px) 1fr auto;
}

.site-footer {
  padding: 58px 0 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 12% 0%, rgba(21, 180, 179, 0.16), transparent 28%),
    #062f55;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-identity img {
  width: min(330px, 100%);
  height: auto;
}

.footer-identity p,
.footer-community p {
  max-width: 430px;
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links strong,
.footer-community strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.footer-links a,
.footer-community a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-community a:hover {
  color: #62dfd8;
}

.footer-community a {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.footer-bottom {
  display: flex;
  margin-top: 42px;
  padding: 18px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 20px;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

/* ================================================================
   Antiga Vila do Nosso Senhor da Vera Cruz
   ================================================================ */

.village-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(234, 184, 76, 0.16), transparent 28%),
    #f7eedb;
}

.village-reconstruction {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(83, 57, 27, 0.18);
}

.village-reconstruction img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.village-reconstruction::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(43, 31, 17, 0.72), transparent 46%);
}

.village-reconstruction figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: #fff;
}

.village-reconstruction figcaption span {
  display: block;
  margin-bottom: 6px;
  color: #f3d181;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.village-reconstruction figcaption strong {
  display: block;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.village-grid {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.village-grid article {
  position: relative;
  min-height: 245px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(106, 75, 33, 0.15);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.82);
}

.village-grid article > span {
  position: absolute;
  top: 4px;
  right: 15px;
  color: rgba(118, 80, 31, 0.09);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.village-grid strong {
  position: relative;
  display: block;
  margin-top: 68px;
  color: #65431d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.village-grid p {
  position: relative;
  margin: 8px 0 0;
  color: #76684f;
  font-size: 0.88rem;
}

.interpretation-note {
  display: grid;
  margin-top: 20px;
  padding: 22px 24px;
  border-left: 5px solid var(--baiacu-gold);
  border-radius: 0 18px 18px 0;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: #fffaf1;
}

.interpretation-note strong {
  color: #704d1d;
}

.interpretation-note p {
  margin: 0;
  color: #76684f;
  font-size: 0.88rem;
}

/* ================================================================
   Mais conteúdo sobre pesca e mariscagem
   ================================================================ */

.fishing-techniques {
  margin-top: 58px;
  padding: 32px;
  border: 1px solid var(--baiacu-line);
  border-radius: 26px;
  background: #f3f8f6;
}

.fishing-techniques__heading {
  max-width: 760px;
}

.fishing-techniques__heading h3 {
  margin: 8px 0 8px;
  color: var(--baiacu-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.fishing-techniques__heading p {
  color: var(--baiacu-muted);
}

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

.technique-grid article {
  position: relative;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--baiacu-line);
  border-radius: 18px;
  background: #fff;
}

.technique-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 13px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--baiacu-blue), var(--baiacu-green));
  font-size: 0.76rem;
  font-weight: 900;
}

.technique-grid strong {
  display: block;
  color: var(--baiacu-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
}

.technique-grid p {
  margin: 7px 0 0;
  color: var(--baiacu-muted);
  font-size: 0.87rem;
}

.women-photo {
  max-width: 360px;
  margin: 25px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.08);
}

.women-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.women-photo figcaption {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.women-field-note {
  max-width: 540px;
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid #f7d983;
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.09);
}

.women-field-note strong {
  color: #fff0b9;
}

.women-field-note p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.nature-species-card {
  background: #fffdf5 !important;
}

.nature-alert {
  padding: 22px 24px;
  border: 1px solid rgba(217, 105, 70, 0.24);
  border-radius: 20px;
  background: #fff1eb;
}

.nature-alert strong {
  color: #95452e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.nature-alert p {
  margin: 7px 0 0;
  color: #785f57;
  font-size: 0.88rem;
}

/* ================================================================
   Baiacu hoje e Instagram
   ================================================================ */

.today-section {
  padding: 105px 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 0%, rgba(234, 184, 76, 0.18), transparent 25%),
    linear-gradient(145deg, #074b58, #096b68 56%, #0b5d45);
}

.today-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.64fr) 1.36fr;
  gap: 62px;
  align-items: center;
}

.today-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 55px rgba(0, 33, 38, 0.22);
}

.today-photo img {
  width: 100%;
  height: 590px;
  object-fit: cover;
}

.today-photo figcaption {
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.today-copy h2 {
  color: #fff;
}

.today-copy > p:not(.section-lead) {
  color: rgba(255, 255, 255, 0.74);
}

.instagram-button {
  display: inline-flex;
  min-height: 52px;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 14px;
  color: #163d38;
  align-items: center;
  gap: 10px;
  background: #f4cb68;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(244, 203, 104, 0.18);
  transition: transform 0.2s ease;
}

.instagram-button:hover {
  transform: translateY(-2px);
}

.instagram-button span {
  font-size: 1.35rem;
}

.today-panorama {
  position: relative;
  min-height: 390px;
  margin-top: 52px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(0, 33, 38, 0.26);
}

.today-panorama img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.today-panorama::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1, 38, 43, 0.76), transparent 54%);
}

.today-panorama > div {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
}

.today-panorama small {
  display: block;
  margin-bottom: 5px;
  color: #f4cb68;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.today-panorama strong {
  display: block;
  max-width: 780px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.12;
}

@media (max-width: 1080px) {
  .brand-logo {
    width: 190px;
  }

  .village-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .today-layout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 38px;
  }

  .footer-main {
    grid-template-columns: 1fr 0.7fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 155px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    grid-column: 2;
  }

  .village-section,
  .today-section {
    padding: 72px 0;
  }

  .village-reconstruction img {
    min-height: 350px;
  }

  .village-grid,
  .technique-grid,
  .today-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .fishing-techniques {
    padding: 22px;
  }

  .today-photo {
    max-width: 440px;
    margin-inline: auto;
  }

  .today-photo img {
    height: 520px;
  }

  .today-panorama,
  .today-panorama img {
    min-height: 300px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: 138px;
  }

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

  .village-reconstruction img {
    min-height: 300px;
  }

  .village-reconstruction figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .today-photo img {
    height: 430px;
  }
}


/* Fotografia histórica da Igreja de Nosso Senhor da Vera Cruz */
.church-historical-photo {
  display: grid;
  margin: 38px 0 24px;
  overflow: hidden;
  border: 1px solid var(--baiacu-line);
  border-radius: 26px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  background: #fff;
  box-shadow: 0 22px 48px rgba(10, 53, 61, 0.12);
}

.church-historical-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: grayscale(1);
}

.church-historical-photo figcaption {
  display: flex;
  padding: 34px;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at 100% 0%, rgba(234, 184, 76, 0.16), transparent 34%),
    #f7f1e5;
}

.church-historical-photo small {
  color: var(--baiacu-green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.church-historical-photo strong {
  display: block;
  margin-top: 9px;
  color: var(--baiacu-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.church-historical-photo span {
  display: block;
  margin-top: 13px;
  color: var(--baiacu-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .church-historical-photo {
    grid-template-columns: 1fr;
  }

  .church-historical-photo img {
    min-height: 260px;
  }

  .church-historical-photo figcaption {
    padding: 24px;
  }
}


/* ================================================================
   Origem dos nomes Vera Cruz e Baiacu
   ================================================================ */

.name-history-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(11, 114, 133, 0.1), transparent 28%),
    radial-gradient(circle at 92% 90%, rgba(234, 184, 76, 0.13), transparent 25%),
    #fffdf8;
}

.name-history-heading {
  max-width: 880px;
  margin-bottom: 42px;
}

.name-history-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.name-card {
  position: relative;
  min-height: 480px;
  padding: 38px 34px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 52px rgba(7, 63, 75, 0.12);
}

.name-card--vera-cruz {
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(234, 184, 76, 0.18), transparent 30%),
    linear-gradient(145deg, #073f4b, #0b6370);
}

.name-card--baiacu {
  border: 1px solid #cfe3da;
  color: var(--baiacu-ink);
  background:
    radial-gradient(circle at 100% 100%, rgba(11, 122, 89, 0.11), transparent 30%),
    #f2f9f5;
}

.name-card__number {
  position: absolute;
  top: -15px;
  right: 12px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
}

.name-card--baiacu .name-card__number {
  color: rgba(11, 122, 89, 0.08);
}

.name-card small {
  position: relative;
  display: block;
  margin-top: 42px;
  color: #f2cf79;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.name-card--baiacu small {
  color: var(--baiacu-green);
}

.name-card h3 {
  position: relative;
  margin: 10px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.98;
}

.name-card--vera-cruz h3 {
  color: #fff;
}

.name-card--baiacu h3 {
  color: var(--baiacu-green-dark);
}

.name-card p {
  position: relative;
  margin-bottom: 16px;
}

.name-card--vera-cruz p {
  color: rgba(255, 255, 255, 0.76);
}

.name-card--baiacu p {
  color: var(--baiacu-muted);
}

.name-transition {
  display: flex;
  min-height: 250px;
  padding: 18px 8px;
  border: 1px dashed #b9d3c9;
  border-radius: 999px;
  align-self: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--baiacu-green-dark);
  background: #edf7f2;
  text-align: center;
}

.name-transition span {
  max-width: 105px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
}

.name-transition b {
  display: grid;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: var(--baiacu-green);
  font-size: 1.2rem;
  transform: rotate(90deg);
}

.name-history-note {
  display: grid;
  margin-top: 24px;
  padding: 23px 26px;
  border-left: 5px solid var(--baiacu-gold);
  border-radius: 0 18px 18px 0;
  grid-template-columns: auto 1fr;
  gap: 18px;
  background: #fff8e7;
}

.name-history-note strong {
  color: #6d4c15;
}

.name-history-note p {
  margin: 0;
  color: #776743;
  font-size: 0.9rem;
}

/* ================================================================
   Encontro de tradições religiosas
   ================================================================ */

.faith-encounter {
  margin-top: 42px;
  padding: 36px;
  border: 1px solid var(--baiacu-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 0%, rgba(234, 184, 76, 0.14), transparent 27%),
    #fff;
  box-shadow: 0 18px 42px rgba(7, 63, 75, 0.08);
}

.faith-encounter__heading {
  max-width: 810px;
}

.faith-encounter__heading h3 {
  margin: 8px 0 12px;
  color: var(--baiacu-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
}

.faith-encounter__heading p {
  color: var(--baiacu-muted);
}

.faith-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.faith-grid article {
  padding: 23px;
  border: 1px solid var(--baiacu-line);
  border-radius: 20px;
  background: #f8fbfa;
}

.faith-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 17px;
  border-radius: 15px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--baiacu-blue), var(--baiacu-green));
  font-size: 1.25rem;
}

.faith-grid strong {
  display: block;
  color: var(--baiacu-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
}

.faith-grid p {
  margin: 7px 0 0;
  color: var(--baiacu-muted);
  font-size: 0.88rem;
}

.tree-question {
  position: relative;
  margin: 24px 0 0;
  padding: 28px 30px 26px 64px;
  overflow: hidden;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, #365f3c, #0b725b);
}

.tree-question > span {
  position: absolute;
  top: -18px;
  left: 15px;
  color: rgba(255, 255, 255, 0.17);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 1;
}

.tree-question p {
  position: relative;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  line-height: 1.35;
}

/* ================================================================
   Lagoa e lendas
   ================================================================ */

.lagoon-section {
  padding: 100px 0;
  color: #fff;
  background:
    radial-gradient(circle at 10% 100%, rgba(234, 184, 76, 0.16), transparent 28%),
    linear-gradient(145deg, #062f55, #075d68 60%, #0b684e);
}

.lagoon-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.lagoon-section h2 {
  color: #fff;
}

.lagoon-copy > p:not(.section-lead) {
  color: rgba(255, 255, 255, 0.73);
}

.legend-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  color: var(--baiacu-ink);
  background: #fff9ec;
  box-shadow: 0 22px 55px rgba(0, 27, 35, 0.22);
}

.legend-card__label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #6c4c13;
  background: #f5dda3;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legend-card h3 {
  margin: 18px 0 12px;
  color: var(--baiacu-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.07;
}

.legend-card p {
  margin: 0;
  color: #6e6758;
}

/* Imagem da antiga vila */
.village-reconstruction img {
  object-position: center;
}

@media (max-width: 980px) {
  .name-history-grid {
    grid-template-columns: 1fr;
  }

  .name-transition {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
    flex-direction: row;
  }

  .name-transition span {
    max-width: none;
  }

  .name-transition b {
    transform: none;
  }

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

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

@media (max-width: 760px) {
  .name-history-section,
  .lagoon-section {
    padding: 72px 0;
  }

  .name-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .name-history-note {
    grid-template-columns: 1fr;
  }

  .faith-encounter {
    padding: 24px;
  }

  .tree-question {
    padding: 26px 22px 24px 48px;
  }

  .legend-card {
    padding: 25px;
  }
}
