:root {
  --vorra-green: #7f9254;        /* botões verdes */
  --vorra-green-dark: #657547;   /* header badge */
  --vorra-green-soft: #ecf3e4;   /* fundo dos ícones */
  --vorra-outline-green: #7f9254;
  --vorra-soft-bg: #f9fafb;      /* seção "Por que escolher" */
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-soft: #e5e7eb;
  --card-border: #edf1ea;
  --footer-border: #e5e7eb;
  --white: #ffffff;
}

/* RESET / BASE */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-main);
}

/* estado fixo após rolagem */
.navbar-vorra.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

/* pra não dar “pulo” no conteúdo quando fixa */
body.navbar-fixed-padding {
  padding-top: 64px; /* ajusta se seu header for mais alto/baixo */
}

#MapaLocalizacao iframe{
	width:100% !important;
	height:600px !important;
	margin:0 !important;
	padding:0 !important;
	border: 0 !important;
}

/* BARRA DE PROGRESSO */
#progress-bar {
  --scrollAmount: 0%;
  background-color: var(--vorra-green) !important;
  width: var(--scrollAmount) !important;
  height: 4px !important;
  position: fixed !important;
  top: 0 !important;
  z-index:99999999999999999999 !important
}

.accordion-button:not(.collapsed) {
  background-color: #e2e7dc;
}

.accordion-header button{
	font-weight:800 !important;
	color:#000 !important;
	font-size: 0.95rem;
}

.accordion-body{
	font-size: 0.95rem;
	color:#000;
}

.btn {
  --bs-btn-padding-y: 0.475rem;
}

.alert-form{
	font-size:0.85rem;
	font-weight:600
}

/* NAVBAR */

.navbar-vorra {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-soft);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.navbar-vorra .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar-vorra .navbar-nav .nav-link {
  font-size: 0.95rem;
  padding: 0.25rem 1.1rem;
  color: #000000;
}

.navbar-vorra .navbar-nav .nav-link:hover,
.navbar-vorra .navbar-nav .nav-link.active {
  color: var(--vorra-green) !important;
}

.link-menu-ativo,
.form-label{
	font-weight:800;
	color: var(--vorra-green) !important;
}

.link-menu-footer-ativo{
	font-weight:800;
	color: #000 !important;
}

.btn-budget {
  border-radius: 999px;
  padding: 0.4rem 1.4rem;
  font-size: 0.93rem;
  border: none;
  font-weight:700;
  background-color: var(--vorra-green);
  color: #ffffff;
}

.btn-budget i{
	margin-right:0.2rem
}

.btn-budget:hover {
  background-color: var(--vorra-green-dark);
  color: #ffffff;
}

/* SEÇÕES BASE */

.section {
  padding: 85px 0;
}

.section-white {
  background-color: #ffffff;
}

.section-green-light{
	background-color: #e2e7dc;
}

.section-soft {
  background-color: var(--vorra-soft-bg);
}

.section-title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color:  var(--vorra-green);
}

.section-subtitle {
  text-align: center;
  font-size: 0.98rem;
  color: #000;
  max-width: 720px;
  margin: 0 auto;
}

.text-muted-small {
  font-size: 0.93rem;
  color: #000;
}

/* HERO + CAROUSEL */

.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background-color: #000;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* hero como carousel */
#heroCarousel.hero {
  height: 640px;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
  height: 100%;
}

#heroCarousel .carousel-item img.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* setas */
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
  filter: invert(1); /* deixa brancas */
}

/* indicadores */
#heroCarousel .carousel-indicators [data-bs-target] {
  background-color: #ffffff;
  opacity: 0.6;
}

#heroCarousel .carousel-indicators .active {
  opacity: 1;
}

/* onda */

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 1; /* abaixo dos indicadores, acima da imagem */
}

.hero-wave-svg {
  display: block;
  width: 100%;
  height: 70px;
  color: #ffffff;          /* cor da onda */
  transform: scaleY(-1);   /* desvira a onda */
  transform-origin: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
}

.hero-title {
  color: #ffffff;
  max-width:620px;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  color: #e5e7eb;
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
}

/* indicators e setas sempre acima */
#heroCarousel .carousel-indicators {
  z-index: 3;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  z-index: 3;
}

.btn-hero-primary {
  border-radius: 999px;
  padding: 0.5rem 1.6rem;
  font-size: 0.93rem;
  font-weight:700;
  background-color: var(--vorra-green);
  border: none;
  color: #ffffff;
}

.btn-hero-primary:hover {
  background-color: var(--vorra-green-dark);
  color: #ffffff;
}

.btn-hero-outline {
  border-radius: 999px;
  padding: 0.5rem 1.6rem;
  font-size: 0.93rem;
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-hero-outline:hover {
  background-color: #ffffff;
  color: var(--text-main);
}

/* CARDS DE SERVIÇOS */

.service-card {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  padding: 24px 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-title {
  font-size: 1.0rem;
  color:#000;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-desc {
  font-size: 0.93rem;
  color: #000;
  margin-bottom: 10px;
}

.service-desc strong{
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 10px;
}

.service-link {
  font-size: 0.93rem;
  color: var(--vorra-green);
  text-decoration: none;
  font-weight: 600;
}

.service-link:hover {
  text-decoration: underline;
}

/* BOTÃO "VER TODOS OS SERVIÇOS" */

.btn-ver-servicos {
  font-size: 0.93rem;
  font-weight:600;
  margin-top:0.5rem;
  padding-inline: 1.8rem;
}

/* CONSULTORIA COM RESULTADOS */

.consultoria-img img {
  border-radius: 22px;
  display: block;
}

.text-center{
	text-align:center !important
}
.text-left{
	text-align:left !important
}

/* POR QUE ESCOLHER - sem boxes */

.value-item {
  text-align: center;
  padding: 8px 10px;
}

.icon-round {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-round i{
	font-size:3rem;
	color: var(--vorra-green);
}

.value-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ENTRE EM CONTATO */

.highlight-card {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  padding: 24px 24px 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.highlight-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.highlight-card .form-label {
  font-size: 0.86rem;
  margin-bottom: 4px;
}

.highlight-card .form-control {
  font-size: 0.9rem;
}

/* Canais de atendimento */

.contact-channel-card {
  background-color: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  padding: 20px 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.03);
}

.channel-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 5px;
  color:var(--vorra-green)
}

.channel-sub {
  font-size: 0.93rem;
  color: #000;
  margin-bottom: 4px;
}

.channel-phone {
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 3px;
}

.channel-extra {
  font-size: 0.93rem;
  color: #000;
  margin-bottom: 0;
}

.btn-primary-vorra {
  background-color: var(--vorra-green);
  border-color: var(--vorra-green);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight:700;
  padding-inline: 1.4rem;
}

.btn-primary-vorra:hover {
  background-color: var(--vorra-green-dark);
  border-color: var(--vorra-green-dark);
  color: #ffffff;
}

/* FOOTER */

.footer {
  background-color: #ffffff;
  border-top: 1px solid var(--footer-border);
  padding-top: 60px;
  padding-bottom: 20px;
  margin-top: 0px;
}

.footer p{
	font-size: 0.93rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 8px;
}

.footer-brand-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-brand-sub {
  font-size: 0.7rem;
  color: #9ca3af;
}

.footer-title {
  font-size: 1.0rem;
  font-weight: 800;
  color:var(--vorra-green);
  margin-bottom: 6px;
}

.footer-links li {
  margin-bottom: 3px;
}

.footer-links a i{
  font-size: 0.90rem;
  color: var(--vorra-green) !important;
  text-decoration: none;
  margin-right:0.1rem
}

.footer-links a {
  font-size: 0.93rem;
  color: #000;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--vorra-green);
}

.footer-bottom {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 20px;
  border-top: 1px solid #f3f4f6;
  padding-top: 25px;
}

.footer .description{
	font-size:0.93rem
}

.social-footer:link{
	font-size:1.3rem !important;
	color: var(--vorra-green) !important;
	text-decoration:none;
}

.social-footer:hover{
	color: #000 !important;
}

.footer-links a,
.footer-links a:link,
.footer-links a:active,
.footer-links a:visited{
	color: #000 !important
}

.footer-links a:hover{
	color: var(--vorra-green) !important
}

/* BOTÃO WHATSAPP FLUTUANTE */

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background-color:  var(--vorra-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 50;
  text-decoration:none
}

/* RESPONSIVO */

@media (max-width: 991.98px) {
  .hero,
  #heroCarousel.hero {
    height: 380px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 575.98px) {
  .hero,
  #heroCarousel.hero {
    height: 360px;
  }

  .hero-content {
    padding-inline: 1rem;
	height:90%;
	margin: auto 1.0rem
  }

  .hero-title {
    font-size: 1.9rem;
  }

   .hero-actions {
    flex-wrap: wrap;
  }

  .service-card {
    padding: 20px 18px;
  }
}

.form-control:focus,
.form-control-busca:focus{
	background:#f9f9f9;
}
::placeholder{
  color: #666 !important;
  opacity: 1;
}

:-ms-input-placeholder{
  color: #666 !important;
}

::-ms-input-placeholder{
  color: #666 !important;
}
.has-error .checkbox, 
.has-error .checkbox-inline, 
.has-error .control-label, 
.has-error .help-block, 
.has-error .radio, 
.has-error .radio-inline, 
.has-error .checkbox label, 
.has-error .checkbox-inline label, 
.has-error .radio label, 
.has-error .radio-inline label{
    color: #be1622;
}
.help-block {
    display: block;
    margin-top: 3px;
    margin-left: 16px;
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 800;
    color: #be1622;
}

.row-xs{height: 100% !important}
.middle-xs {-webkit-box-align: center;-ms-flex-align: center;align-items: center;}
.center-xs {-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;text-align: center;}
.row-centered {text-align:center;}
.col-centered {display:inline-block !important;float:none; margin-right:-4px;vertical-align:top !important;}
.page-item > .page-link > span > i{
	color:#555;
}
.page-item > .page-link:hover > span > i{
	color:#fff
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff !important;
    background-color: var(--vorra-green);
    border-color: var(--vorra-green);
	font-weight:800;
}
.page-link{
	background-color: transparent;
    border-color: #cacaca;
	color:var(--red) !important;
	font-weight:800;
	padding:10px 16px !important;
}
.page-link:hover {
    background-color: var(--vorra-green);
    border-color: var(--vorra-green);
	color:#fff !important
}

.pagination-vorra .page-link {
    padding: 4px 10px !important;   /* menor altura e largura */
    font-size: 0.82rem !important;  /* diminui fonte */
    border-radius: 6px !important;  /* mais arredondado */
}

.pagination-vorra .page-item {
    margin: 0 2px; /* reduz espaçamento entre botões */
}

.pagination-sm-vorra .page-link {
    padding: 3px 8px !important;
    font-size: 0.78rem !important;
}