.nav-link.active {
  border-bottom: 3px solid #13281F;
  /* Bootstrap "success" green */
}

.hero-section {
  background-image: url('../imgs/slide.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text {
  background-color: #13281FBF;
  /* Bootstrap "success" verde com 50% de opacidade */
  padding: 1.5rem 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
}

.btn-forte {
  background-color: #13281F;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn-forte:hover {
  background-color: #577666;
  color: #fff;
}

.info-section {
  padding: 3rem 1rem;
  text-align: center;
}

.info-section h2 {
  color: #13281F;
  /* Bootstrap "success" verde */
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-section p {
  font-size: 1.1rem;
  color: #212529;
  /* Texto preto padrão Bootstrap */
  max-width: 800px;
  margin: 0 auto 0.5rem auto;
}

.memorial-section {
  background-image: url('../imgs/tumulos.jpg');
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  padding: 0 1rem;
}

.memorial-section p {
  font-size: 1.8rem;
  font-style: italic;
  font-family: 'Georgia', cursive, serif;
  max-width: 900px;
  margin: 0;
  quotes: "“" "”";
}

.memorial-section p::before {
  content: open-quote;
}

.memorial-section p::after {
  content: close-quote;
}

.section-row img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.section-row h3 {
  color: #13281F;
  /* Verde Bootstrap */
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-row p {
  font-size: 1.1rem;
  color: #212529;
  text-align: center;
  max-width: 90%;
  margin: 0 auto 2rem auto;
}


.bg-hero{
  background-color: #13281F;
  color: white;
}

.footer {
  background-color: #13281F;
  color: white;
  padding: 2rem 0;
}

.footer .col-left,
.footer .col-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer .col-left {
  align-items: center;
  text-align: center;
}

.footer .col-left img {
  width: 300px;
}

.footer .col-right {
  color: white;
  font-size: 1rem;
  text-align: left;
  justify-content: center;
}

.footer .col-right p {
  margin: 0.5rem 0;
}

.footer .col-right a {
  color: white;
  text-decoration: none;
  margin-right: 10px;
}

.footer .col-right a:hover {
  text-decoration: underline;
}

.footer i {
  margin-right: 8px;
}

.img-wrapper {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.img-wrapper:hover .gallery-img {
  transform: scale(1.1);
}

.img-wrapper:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#modalImage {
  max-height: 90vh;
  width: auto;
  cursor: pointer;
}

#btnTopo {
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#btnTopo.show {
  opacity: 1;
  visibility: visible;
}

.btn-whatsapp {
      background-color: #25D366;
      animation: pulse 1.5s infinite;
    }

    .btn-whatsapp:hover {
      background-color: #1EBE5D;
    }

#btnWhatsapp {
      position: fixed;
      right: 30px;
      bottom: 20px;
      z-index: 9999;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }    