/* CORES EXTRAÍDAS VISUALMENTE DO PRINT */
:root {
  --verde-escuro: #0F2919;
  --verde-principal: #528f75;
  --verde-claro: #6cce9b;
  --dourado: #c58a2e;
  --cinza-claro: #f3f3f3;
  --cinza-texto: #1a1919;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 28px rgba(31, 79, 58, 0.18);
  --shadow-focus: 0 0 0 0.2rem rgba(31, 79, 58, 0.25);
}

.action {
  text-decoration: none;  
  transition: all .3s ease;
  background: #2ae161;

}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1055;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 16px 18px;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__content {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__text strong {
  display: block;
  color: var(--verde-escuro);
  margin-bottom: 4px;
}

.cookie-banner__text p {
  margin: 0 0 6px 0;
  color: #555;
  font-size: 0.95rem;
}

.cookie-banner__link {
  color: var(--verde-escuro);
  font-weight: 600;
  text-decoration: none;
}

.cookie-banner__link:hover {
  text-decoration: underline;
}

.cookie-modal {
  max-width: 720px;
}

.cookie-modal .modal-content {
  max-height: 80vh;
}

.cookie-modal__body {
  max-height: 60vh;
  overflow-y: auto;
}

.rpps-modal .modal-dialog {
  height: calc(100vh - 144px);
  margin-top: 120px;
  margin-bottom: 24px;
  max-height: calc(100vh - 144px);
}

.rpps-modal .modal-content {
  max-height: calc(100vh - 144px);
}

#blogHeroCarousel .carousel-item {
  position: relative;
}

#blogHeroCarousel img {
  height: 320px;
  object-fit: cover;
}

#blogHeroCarousel .blog-hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 2;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--cinza-texto);
  scroll-behavior: smooth;
  line-height: 1.6;
  letter-spacing: 0.3px;
  background: #ffffff;
}

p {
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.5px;
  font-weight: 700;
}



.navbar-brand {
  font-size: 0.95rem;
}

section {
  padding: 100px 0;
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 60px;
  scroll-margin-top: 80px;

}

section h2 {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  letter-spacing: 1.2px;
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--dourado);
  display: inline-block;
  position: relative;
  line-height: 1.2;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--dourado), transparent);
  border-radius: 2px;
}

section h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: var(--dourado);
  font-weight: 700;
  letter-spacing: 0.8px;
  position: relative;
  padding-bottom: 1rem;
}

section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--dourado);
  border-radius: 2px;
}

/* HERO */


.hero {
  padding-top: 0;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(223, 215, 205, 0.55), rgba(175, 167, 156, 0.55));
              
  z-index: -1;
}

.hero > .container-fluid {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.8;
}

.hero .carousel-indicators {
  bottom: -40px;
}

/* CARDS */
.card {
  border: none;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover {
  transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(31, 79, 58, 0.15);
}

.card p {
  text-align: left;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.card-body {
  padding: 1.5rem;
}

/* NAVIGATION STYLES */
.nav-link {
  position: relative;
  transition: all .3s ease;
  color: #333 !important;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.nav-link:hover {
  background: rgba(31, 79, 58, 0.08);
  color: var(--verde-principal) !important;
}

.nav-link.active {
  background: var(--verde-principal);
  color: #f2ffe9 !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(31, 79, 58, 0.25);
}

.nav-link.active,
#site-header .nav-link.active,
#site-header .navbar.is-dark .nav-link.active,
.scrolled #site-header .nav-link.active,
.navbar.is-light .nav-link.active {
  color: #f2ffe9 !important;
}

.nav-link:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.dropdown-item.active,
.dropdown-item:active {
  background: var(--verde-principal);
  color: #f2ffe9 !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(31, 79, 58, 0.25);
}

/* SERVICE BOX STYLES */
.service-box {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border-left: 4px solid var(--dourado);
  transition: all .3s ease;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
}

.service-box:hover {
  background: linear-gradient(135deg, #f0f0f0 0%, #f8f8f8 100%);
  box-shadow: 0 8px 20px rgba(31, 79, 58, 0.12);
  transform: translateX(8px);
}

.service-box h6 {
  color: var(--verde-principal);
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bg-cinza {
  background: linear-gradient(180deg, #f7f7f7 0%, var(--cinza-claro) 100%);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

/* SETAS FORA DAS IMAGENS (TIME / SERVIÇOS / ETC) */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  
  filter: invert(1);
  border-radius: 50%;
  background-size: 50% 50%;
}

.carousel-control-prev {
  left: -60px;
}

.carousel-control-next {
  right: -60px;
}

/* FORM STYLES */
.form-control {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all .3s ease;
}

.form-control:focus {
  border-color: var(--verde-principal);
  box-shadow: 0 4px 12px rgba(31, 79, 58, 0.15);
  outline: none;
}

.btn-primary:hover {
  background: #1b3e2f !important;
  box-shadow: 0 8px 20px rgba(31, 79, 58, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  section h2 {
    font-size: 2rem;
  }

  p {
    text-align: left;
  }

  .carousel-control-prev {
    left: -15px;
  }

  .carousel-control-next {
    right: -15px;
  }
}



.features-item {
  background: transparent;
  color: inherit;
  appearance: none;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  padding: 1rem;
  width: 100%;           /* ocupa toda a coluna */
  text-decoration: none;
  transition: all 0.3s ease;
}

.features-item:hover {
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}



footer {
  background: var(--verde-escuro);
  color: #d0d0d0;
}


#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.4s ease;
}

/* NAVBAR TRANSPARENTE NO INÍCIO */
#site-header > #mainNavbar {
  background: transparent !important;
  border: none;
  box-shadow: none;
  padding: 1.8rem 0;
  transition: all 0.4s ease;
}

/* LINKS BRANCOS */
#site-header .nav-link {
  color: #fff !important;
}

/* LOGO BRANCA */
.logo-dark {
  display: none;
}
.logo-light {
  display: block;
}

/* ESTADO APÓS SCROLL */
.scrolled #site-header > #mainNavbar {
  background: #ffffff !important;
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.scrolled #site-header .nav-link {
  color: #333 !important;
}

.scrolled .logo-light {
  display: none;
}

.scrolled .logo-dark {
  display: block;
}

#site-header,
#site-header .navbar {
  border: none !important;
}

#site-header {
  margin-bottom: 0 !important;
}

@media (max-width: 991px) {
  .navbar-toggler {
    position: fixed;
    top: 60px; /* abaixo da top-bar */
    right: 15px;
    z-index: 11000;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 120px; /* abaixo top-bar + navbar */
    right: 15px;
    background: #212529;
    width: 220px;
    padding: 15px;
    border-radius: 8px;
    z-index: 10900;
  }
}

@media (max-width: 991px) {
  .hero {
    padding-top: 200px; /* ajuste fino aqui */
  }
}

@media (max-width: 991px) {
  body.scrolled #mainNavbar {
    background-color: #212529 !important;
  }

  body.scrolled #mainNavbar .nav-link {
    color: #ffffff !important;
  }

  body.scrolled #mainNavbar .navbar-toggler {
    background: #1b3e2f;
    border-color: rgba(255, 255, 255, 0.2);
  }
}


.top-bar {
  position: sticky;
  top: 0px;
  z-index: 1060;
}

.bottom-bar {
  position: sticky;
  bottom: 0px;
  z-index: 950;
  display: none;
  transition: all 0.4s ease;
  background: #89e4b6;
  min-height: 38px;
  height: auto;
  padding: 0.25rem 0;
}

.bottom-bar .navbar-brand,
.bottom-bar .nav-link,
.bottom-bar .dropdown-item {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
  line-height: 1.1;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.25px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.bottom-bar .navbar-toggler {
  padding: 0.25rem 0.5rem;
  border-color: rgba(255,255,255,.25);
}

.bottom-bar .navbar-nav {
  align-items: center;
}

.bottom-bar .navbar-collapse {
  background: transparent;
}

.bottom-bar .navbar-collapse.show {
  background: #89e4b6;
}

.bottom-bar .navbar-collapse.show .nav-link,
.bottom-bar .navbar-collapse.show .dropdown-item {
  color: #1f4f3a !important;
}

.bottom-bar .navbar-collapse.show .dropdown-menu {
  background: #ffffff;
}

.scrolled #bottom-bar {
  display: block;
}


#heroCarousel .carousel-item {
  min-height: 500px;
}

#heroCarousel .carousel-item > .container {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}




/* estado inicial (sobre o hero) */
.navbar.is-dark {
  background-color: #212529;
}

.navbar.is-dark .nav-link {
  color: rgba(255,255,255,.75);
}

.navbar.is-dark .nav-link:hover {
  color: #fff;
}

/* estado após scroll */
.navbar.is-light {
  background-color: #fff;
}

.navbar.is-light .nav-link {
  color: #212529;
}

.navbar.is-light .nav-link:hover {
  color: #000;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

#depoimentos {
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 60px;
  scroll-margin-top: 80px;
}



.topo-contato {
  color: #fff;
  font-size: 14px;
}

.topo-contato a {
  color: inherit;        /* mesma cor do texto */
  text-decoration: none; /* sem sublinhado */
}

.topo-contato a:hover {
  text-decoration: underline;
}

.topo-contato i {
  font-size: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

.topo-contato .nibbo i {
  font-size: 16px; /* 🔒 cadeado maior */
}


 

.team-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(24px + var(--scroll-offset, 0px)) 24px 24px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1050;
}

.team-modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.team-modal__content {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  max-width: min(90vw, 720px);
  max-height: 80vh;
  overflow: auto;
  padding: 24px;
  text-align: center;
  position: relative;
}

.team-modal__image {
  width: min(240px, 60vw);
  height: auto;
  border-radius: 12px;
  background: #f3f3f3;
  margin: 0 auto 16px;
  display: block;
}

.team-modal__name {
  margin-bottom: 6px;
}

.team-modal__role {
  margin-bottom: 0.75rem;
  color: var(--dourado);
  font-weight: 700;
}

.team-modal__desc,
.team-modal__long {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  text-align: left;
}

.team-modal__long p {
  margin-bottom: 1rem;
  text-align: justify;
}

.team-modal__long p:last-child {
  margin-bottom: 0;
}

.team-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: #f2f2f2;
  color: #333;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.team-modal__close:hover {
  background: #e6e6e6;
  transform: scale(1.03);
}

.team-modal__close:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

/* BLOG */
.blog-page {
  padding-top: 140px;
  background: #f7f7f7;
}

.page-blog main {
  padding-top: 0;
}

.page-blog section {
  min-height: auto;
}

.page-blog #site-header .navbar {
  background: #ffffff !important;
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.page-blog #site-header .nav-link {
  color: #333 !important;
}

.page-blog .logo-light {
  display: none;
}

.page-blog .logo-dark {
  display: block;
}

.blog-hero {
  padding-bottom: 40px;
}

.blog-hero__media img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.blog-hero__content {
  margin-top: 2rem;
}

.blog-hero__content h1 {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
  color: #0f2a1e;
}

.blog-hero__content p {
  max-width: 720px;
  margin: 0 auto;
  color: #4d5b54;
}

.blog-listing {
  padding: 30px 0 80px;
}

.blog-search {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.blog-search__field {
  flex: 1 1 420px;
  max-width: 560px;
}

.blog-search input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid #d8e2dc;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.blog-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}

.blog-category {
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d8e2dc;
  color: #1f4f3a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.blog-category.is-active {
  background: var(--verde-principal);
  color: #f2ffe9;
  border-color: var(--verde-principal);
  box-shadow: 0 6px 16px rgba(31, 79, 58, 0.2);
}

.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.blog-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__body {
  padding: 16px 18px 20px;
}

.blog-card__date {
  font-size: 0.8rem;
  color: #8aa196;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  color: #0f2a1e;
}

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 14px;
  color: #55655f;
}

.blog-card__link {
  color: var(--verde-principal);
  font-weight: 700;
  text-decoration: none;
}

.blog-card__link:hover {
  text-decoration: underline;
}

.blog-card__summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-page .card-img-top {
  height: 200px;
  object-fit: cover;
}

.blog-page .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-page .card-body .card-text {
  margin-bottom: 1rem;
}

.blog-page .card-body a.fw-semibold {
  margin-top: auto;
}

.blog-pagination .page-link {
  color: var(--verde-principal);
}

.blog-pagination .page-item.active .page-link {
  background: var(--verde-principal);
  border-color: var(--verde-principal);
  color: #f2ffe9;
}

.blog-detail {
  padding: 140px 0 80px;
  background: #f7f7f7;
}

.blog-back {
  color: var(--verde-principal);
  font-weight: 600;
  text-decoration: none;
}

.blog-detail__hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  margin: 20px 0;
}

.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: #6b7c74;
  margin-bottom: 16px;
}

.blog-detail__category {
  background: #ffffff;
  border: 1px solid #d8e2dc;
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 600;
}

.blog-detail__title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0f2a1e;
}

.blog-detail__content p {
  margin-bottom: 1.2rem;
  color: #51625b;
}

.blog-detail__recent {
  margin-top: 40px;
}

.blog-recent-card {
  display: block;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  color: #1f4f3a;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.blog-recent-card small {
  display: block;
  color: #7b8d85;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .blog-hero__content h1 {
    font-size: 2rem;
  }

  .blog-detail {
    padding-top: 120px;
  }
}


/* ALERTAS PROGRAMADOS */
.scheduled-alert {
  position: fixed;
  inset: 0;
  z-index: 1065;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.scheduled-alert__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.scheduled-alert__card {
  position: relative;
  z-index: 1;
  width: min(92vw, 640px);
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.scheduled-alert__title {
  margin-bottom: 12px;
  color: var(--verde-escuro);
  font-weight: 800;
}

.scheduled-alert__message {
  text-align: left;
  margin: 0 0 20px;
  color: var(--cinza-texto);
}

.scheduled-alert__btn {
  border-radius: 999px;
  padding: 10px 28px;
  font-weight: 700;
}

.scheduled-alert.is-hidden {
  display: none;
}

.scheduled-alert .carousel-control-prev,
.scheduled-alert .carousel-control-next {
  width: 12%;
  opacity: 0.9;
}

.scheduled-alert .carousel-control-prev-icon,
.scheduled-alert .carousel-control-next-icon {
  filter: none;
  background-color: var(--dourado);
  border-radius: 50%;
  background-size: 55% 55%;
}

.scheduled-alert .carousel-indicators {
  position: static;
  margin-top: 12px;
}

.scheduled-alert .carousel-indicators button {
  background-color: var(--verde-principal);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
