:root {
  /* --brand-primary-full: #2d3752; */
  --brand-primary-dark: #29324b;
  --brand-primary-lighter: #bec1c9;

  --neutral-white: #fafafa;
  --neutral-light: #c3c3c3;
  --neutral-soft: #6c6c6c;
  --secondary-base: #caa264;
  --secondary-full: #55442a;
  --secondary-dark: #b8935b;
  --secondary-lighter: #efe2cf;
  --page-margin: 108px;
  --radius-4: 4px;
}



body {
  font-family: Roboto, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background: #fff;
  color: #222;
  position: relative;
   height: 100%;
  width: 100%;
  margin: 0 auto;
}

.container-page {
  width: min(1224px, calc(100% - (var(--page-margin) * 2)));
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  :root {
    --page-margin: 24px;
  }
}

/* Header */
.site-header {
  background: var(--brand-primary-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1030;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

/* Header fixo quando o usuário faz scroll */
body.header-fixed .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animação suave para o header fixo */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0.8;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Transição suave para o navrow */
.navrow {
  transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.header-fixed .navrow {
  padding: 16px 0;
}

.topbar {
  padding: 16px 0;
  color: var(--neutral-light);
  font-size: 14px;
}

.topbar-item {
  gap: 4px;
}

.topbar-icon {
  opacity: 0.8;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.header-sep {
  height: 1px;
  background: rgba(158, 163, 175, 1);
  opacity: .35;
}

.navrow {
  padding: 24px 0;
}

.brand {
  gap: 16px;
  align-items: center;
}

.brand-logo {
  height: 70px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-name {
  font-weight: 600;
  font-size: 18px;
  color: var(--neutral-white);
  line-height: 1.2;
  white-space: nowrap;
  margin: 0;
}

.brand-slogan {
  font-weight: 400;
  font-size: 11px;
  color: var(--neutral-white);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.85;
  white-space: nowrap;
  margin: 0;
}

@media (max-width: 991px) {
  .brand-text {
    display: none;
  }

  .brand-logo {
    height: 50px;
  }
}

nav.navbar-nav,
nav[class*="d-none"] {
  gap: 0;
}

.navlink {
  color: var(--neutral-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 12px;
  border-radius: var(--radius-4);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  margin: 0 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navlink i {
  font-size: 18px;
}

.navlink:hover {
  color: var(--secondary-base);
  background: rgba(255, 255, 255, 0.05);
}

.navlink.active {
  color: var(--secondary-dark);
  position: relative;
}

.navlink.active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--secondary-dark);
  border-radius: 1px;
}

/* Submenu - Dropdown Styles */
.main-navigation .menu-item.has-dropdown {
  position: relative;
}

.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--brand-primary-full);
  border-radius: var(--radius-4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  list-style: none;
  margin-left: 0;
}

.main-navigation .menu-item.has-dropdown:hover > .sub-menu,
.main-navigation .menu-item.has-dropdown:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .sub-menu .navlink {
  display: block;
  padding: 10px 16px;
  color: var(--neutral-white);
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 0;
  margin: 0;
  width: 100%;
}

.main-navigation .sub-menu .navlink:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--secondary-base);
}

.main-navigation .sub-menu .navlink.active {
  color: var(--secondary-base);
  background: rgba(255, 255, 255, 0.05);
}

.main-navigation .navlink-has-dropdown .fa-chevron-down {
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.main-navigation .menu-item.has-dropdown:hover .fa-chevron-down {
  transform: rotate(180deg);
}

/* Submenu de segundo nível (nested) */
.main-navigation .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 8px;
}

@media (max-width: 1199px) {
  .navlink {
    padding: 12px 8px;
    font-size: 15px;
  }
  
  /* Mobile: submenu sempre visível quando pai está ativo */
  .main-navigation .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    padding-left: 20px;
  }
}

.btn-secondary-figma {
  background: var(--secondary-base);
  border: none;
  border-radius: var(--radius-4);
  color: var(--secondary-full);
  font-weight: 500;
  font-size: 16px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  margin-left: 8px;
}

.btn-secondary-figma:hover {
  background: var(--secondary-base);
  color: var(--neutral-white);
}


.btn-primary-figma:hover {
  background: var(--brand-primary-full);
  color: var(--neutral-white);
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.15);
}

.btn-ghosticon {
  border: none;
  background: transparent;
  padding: 8px;
  border-radius: 16px;
  color: var(--neutral-white);
  transition: background 0.2s ease;
  margin: 0 8px 0 16px;
}

.btn-ghosticon:hover {
  background: rgba(255, 255, 255, .08);
}

.hamburger {
  display: block;
  width: 24px;
  height: 16px;
  position: relative;
}

.hamburger:before,
.hamburger:after,
.hamburger i {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px;
  background: var(--neutral-white);
}

.hamburger:before {
  top: 0;
}

.hamburger i {
  top: 6.5px;
  width: 18px;
  margin-left: auto;
}

.hamburger:after {
  bottom: 0;
  width: 20px;
  margin-left: auto;
}

.btn-ghosticon .hamburger i {
  display: block;
}

.btn-ghosticon .fa-bars {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  color: var(--neutral-white);
}

.btn-ghosticon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 980px;
  display: flex;
  align-items: flex-end;
  padding: 104px 0;
}



.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.hero-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  color: var(--neutral-white);
  margin: 0 0 16px;
}

.hero-sub {
  color: var(--neutral-white);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 28px;
  max-width: 620px;
}

.btn-hero {
  padding: 16px 18px;
  font-size: 18px;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-light {
  background: #fff;
}

.section-dark {
  background: var(--brand-primary-full);
}

.badge-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge-title-center {
  align-items: center;
  text-align: center;
}

.badge-mini {
  display: flex;
  align-items: start;
  flex-direction: column;

  gap: 8px;
  color: var(--secondary-base);
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
}

.img-about img {
  width: 100%;
}

.iconbox img {
  width: 50%;
  object-fit: contain;
}

.card-figma-title {
  color: var(--secondary-base) !important;
}

.section-diferenciais .card-figma-title {
  color: var(--secondary-base) !important;
}

.badge-mini-bar {
  width: 24px;
  height: 3px;
  background: var(--secondary-base);
  border-radius: 16px;
  display: inline-block;
}

.section-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
  color: #242424;
}

.section-text {
  color: var(--neutral-soft);
  font-size: 16px;
  line-height: 1.6;
}

.text-light-soft {
  color: var(--neutral-light) !important;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 600/592;
  border-radius: 2px;
  background: linear-gradient(135deg, #f1f1f1, #d9d9d9);
}

/* Cards (diferenciais) */
.card-figma {
  background: rgba(250, 250, 250, 0.02);
  border: 2px solid rgba(238, 238, 238, 0.05);
  border-radius: var(--radius-4);
  padding: 24px;
  height: 100%;
  box-shadow: 0px 1px 4px 0px rgba(27, 27, 27, 0.08);
}

.section-diferenciais .iconbox {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-4);
  background: var(--brand-primary-dark);
  border: 1px solid rgba(239, 226, 207, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-base);
  font-size: 20px;
  margin-bottom: 24px;
  box-shadow: 0px 1px 4px 0px rgba(27, 27, 27, 0.08), 0px 1px 4px 0px rgba(27, 27, 27, 0.08);
}

.iconbox {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: rgba(250, 250, 250, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-base);
  font-size: 20px;
  margin-bottom: 18px;
}

.card-figma-title {
  color: var(--neutral-white);
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.section-diferenciais .card-figma-title {
  color: var(--secondary-base) !important;
  font-size: 22px;
}

.card-figma-text {
  color: var(--neutral-white);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* ========================================
   SEÇÃO: FEEDBACKS / DEPOIMENTOS
   ========================================
   Seção de depoimentos de clientes
   Exibe resumo de aprovação à esquerda e cards de depoimentos à direita
   ======================================== */

/* Container principal da seção de feedbacks */
.section-feedbacks {
  padding: 104px 0;
  background-color: #E9E9E9;
}

/* Resumo de aprovação (lado esquerdo) */
.section-feedbacks .row.align-items-start>.col-lg-4 {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.feedback-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  width: 100%;
  min-height: 250px;
}

/* Estrelas de avaliação */
.stars {
  color: rgb(212, 212, 13);;
  letter-spacing: 2px;
  font-size: 30px;
  line-height: 1;
}

/* Métrica grande de aprovação */
.big-metric {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #242424;
  margin: 0;
}

/* Card de depoimento */
.testimonial-card {
  border: 1px solid rgba(19, 23, 34, .12);
  border-radius: 8px;
  padding: 24px;
  background: #FAFAFA;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Texto do depoimento */
.testimonial-text {
  color: var(--neutral-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}

/* Meta informações do depoimento (nome e estrelas) */
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.testimonial-name {
  font-weight: 600;
  font-size: 16px;
  color: #242424;
  margin: 0;
}

.testimonial-stars {
  margin-top: 4px;
}

.testimonial-stars .stars {
  font-size: 25px;
  letter-spacing: 1px;
  color: rgb(212, 212, 13);
}

/* Responsividade da seção de feedbacks */
@media (max-width: 991px) {
  .section-feedbacks {
    padding: 80px 0;
  }

  .feedback-summary {
    margin-bottom: 24px;
    text-align: center;
  }

  .big-metric {
    font-size: 28px;
  }
}

/* ========================================
   SEÇÃO: SERVIÇOS
   ========================================
   Seção de serviços com carousel horizontal usando Owl Carousel
   Exibe cards de serviços com imagem, título, descrição e botão
   ======================================== */

/* Container principal da seção de serviços */
.section-services {
  padding: 104px 0;
  overflow: hidden;
  width: 100%;
}

/* Cabeçalho da seção (título + navegação do carousel) */
.services-header {
  margin-bottom: 40px;
}

/* Botões de navegação do carousel (setas esquerda/direita) */
.services-nav {
  flex-shrink: 0;
}

.btn-carousel-nav {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--brand-primary-full);
  border-radius: 4px;
  background: var(--neutral-white);
  color: var(--brand-primary-full);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-carousel-nav:hover {
  background: var(--brand-primary-full);
  color: var(--neutral-white);
}

.btn-carousel-nav:active {
  transform: scale(0.95);
}

/* Container do Owl Carousel */
#servicesCarousel.owl-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#servicesCarousel .owl-stage-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

#servicesCarousel .owl-stage {
  display: flex;
  width: 100%;
}

#servicesCarousel .owl-item {
  opacity: 1;
  transition: opacity 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

/* Card individual de serviço */
.service-item-card {
  width: 100%;
  height: 100%;
  background: var(--neutral-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.service-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Imagem do card de serviço */
.service-item-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f0f0f0;
}

.service-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-item-card:hover .service-item-img img {
  transform: scale(1.05);
}

/* Corpo do card (título, texto, botão) */
.service-item-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Título do serviço */
.service-item-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #242424;
  margin: 0;
}

/* Texto descritivo do serviço */
.service-item-text {
  color: var(--neutral-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

/* Botão "Saiba mais" do card de serviço */
.btn-service-more {
  width: 100%;
  background: var(--brand-primary-full);
  border: none;
  border-radius: 4px;
  color: var(--neutral-white);
  font-weight: 500;
  font-size: 12px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-top: 4px;
  text-align: center;
}

.btn-service-more:hover {
  background: var(--brand-primary-full);
  color: var(--neutral-white);
}

.btn-service-more .btn-icon {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.btn-service-more:hover .btn-icon {
  transform: translateX(2px);
}

a.btn-service-more:visited{
  color: var(--neutral-white) !important;
}

/* Responsividade da seção de serviços */
@media (max-width: 991px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .section-services {
    padding: 80px 0;
  }

  .feedback-summary {
    min-height: 100%;
  }
}


/* Estilos customizados para o Owl Carousel na seção de serviços */
#servicesCarousel .owl-nav {
  display: none;
  /* Escondemos os botões padrão do Owl, usamos os customizados */
}

#servicesCarousel .owl-dots {
  display: none;
  /* Não usamos dots */
}

/* Garantir que o container não quebre o layout */
.section-services .container-page {
  overflow: hidden;
  position: relative;
}

/* CTA */
.cta {
  padding: 120px 0;
  background: linear-gradient(90deg, var(--brand-primary-full) 0%, rgba(3, 7, 17, 1) 100%);
}

.cta-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.cta-sub {
  color: var(--neutral-light);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
  max-width: 520px;
}

.cta-img {
  border-radius: 2px;
  overflow: hidden;
  height: 378px;
}

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

/* ========================================
   SEÇÃO: PORTFÓLIO
   ========================================
   Seção de portfólio com layout de 3 colunas
   Coluna esquerda: 2 imagens pequenas empilhadas
   Coluna meio: 2 imagens médias empilhadas
   Coluna direita: 1 imagem grande vertical
   ======================================== */

/* Container principal da seção de portfólio */
.section-light#portfolio {
  padding: 104px 0;
}

/* Layout principal do portfólio (3 colunas) */
.portfolio-layout {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}

/* Coluna do portfólio */
.portfolio-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Coluna pequena (esquerda) - 2 imagens pequenas */
.portfolio-column-small {
  flex: 0 0 auto;
  width: calc(25% - 12px);
}

/* Coluna média (meio) - 2 imagens médias */
.portfolio-column-medium {
  flex: 0 0 auto;
  width: calc(35% - 12px);
}

/* Coluna grande (direita) - 1 imagem grande */
.portfolio-column-large {
  flex: 0 0 auto;
  width: calc(40% - 12px);
  height: 700px;
}

/* Item individual do portfólio */
.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Itens pequenos (coluna esquerda) */
.portfolio-column-small .portfolio-item {
  aspect-ratio: 4/3;
  min-height: 180px;
}

/* Itens médios (coluna meio) */
.portfolio-column-medium .portfolio-item {
  aspect-ratio: 4/3;
  min-height: 240px;
}

/* Item alto à direita */
.portfolio-item-tall {
  height: 100%;
  min-height: 567px;
  aspect-ratio: auto;
}

/* Responsividade da seção de portfólio */
@media (max-width: 991px) {
  .section-light#portfolio {
    padding: 80px 0;
  }

  .portfolio-layout {
    flex-direction: column;
    gap: 16px;
  }

  .portfolio-column-small,
  .portfolio-column-medium,
  .portfolio-column-large {
    width: 100%;
  }

  /* Ajuste para mobile: remove altura fixa da coluna grande */
  .portfolio-column-large {
    height: auto;
    min-height: 300px; /* garante altura mínima razoável em telas pequenas */
  }

  .portfolio-column-small .portfolio-item,
  .portfolio-column-medium .portfolio-item {
    aspect-ratio: 16/9;
    min-height: 250px;
  }

  .portfolio-item-tall {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .portfolio-layout {
    gap: 12px;
  }

  .portfolio-column {
    gap: 12px;
  }

  .portfolio-item-tall {
    min-height: 300px;
  }
}

/* ========================================
   SEÇÃO: ARTIGOS / BLOG
   ========================================
   Seção de artigos com carousel horizontal usando Owl Carousel
   Exibe cards de artigos com imagem, badge, título, resumo e botão
   ======================================== */

/* Container principal da seção de blog */
.section-blog {
  padding: 104px 0;
  overflow: hidden;
  width: 100%;
}

.blog-card a:visited{
  color: inherit ;
}

/* Container do Owl Carousel para blog */
#blogCarousel.owl-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#blogCarousel .owl-stage-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

#blogCarousel .owl-stage {
  display: flex;
  width: 100%;
}

#blogCarousel .owl-item {
  opacity: 1;
  transition: opacity 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

/* Card de artigo */
.blog-page-list .blog-card {
  width: 45%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

.blog-img {
  height: 230px;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
}

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

.blog-body {
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.blog-badge {
  width: fit-content;
  background: var(--neutral-white);
  border: 1px solid var(--secondary-lighter);
  border-radius: 2px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary-base);
}

.blog-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #242424;
  margin: 0;
}

.blog-excerpt {
  color: var(--neutral-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Estilos customizados para o Owl Carousel na seção de blog */
#blogCarousel .owl-nav {
  display: none;
  /* Escondemos os botões padrão do Owl */
}

#blogCarousel .owl-dots {
  display: none;
  /* Não usamos dots */
}

/* Garantir que o container não quebre o layout */
.section-blog .container-page {
  overflow: hidden;
  position: relative;
}

/* Responsividade da seção de blog */
@media (max-width: 991px) {
  .section-blog {
    padding: 80px 0;
  }
}

/* ========================================
   SEÇÃO: CLIENTES / PARCEIROS
   ========================================
   Seção de parceiros com carousel infinito usando Owl Carousel
   Exibe logos de parceiros em carousel horizontal com autoplay
   ======================================== */

/* Container principal da seção de clientes */
.section-clients {
  padding: 104px 0;
  overflow: hidden;
  width: 100%;
}

/* Container do Owl Carousel para clientes */
#clientsCarousel.owl-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 16px;
}

#clientsCarousel .owl-stage-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

#clientsCarousel .owl-stage {
  display: flex;
  width: 100%;
  align-items: center;
}

#clientsCarousel .owl-item {
  opacity: 0.6;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

#clientsCarousel .owl-item.active {
  opacity: 1;
}

/* Pills de clientes (logos) */
.client-pill {
  background: #f3f4f6;
  color: #9aa0aa;
  border-radius: 999px;
  padding: 14px 24px;
  min-width: 160px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.client-pill:hover {
  background: #e5e7eb;
  color: #6b7280;
  transform: translateY(-2px);
}

/* Estilos customizados para o Owl Carousel na seção de clientes */
#clientsCarousel .owl-nav {
  display: none;
  /* Escondemos os botões padrão do Owl */
}

#clientsCarousel .owl-dots {
  display: none;
  /* Não usamos dots */
}

/* Garantir que o container não quebre o layout */
.section-clients .container-page {
  overflow: hidden;
  position: relative;
}

/* Responsividade da seção de clientes */
@media (max-width: 991px) {
  .section-clients {
    padding: 80px 0;
  }

  .client-pill {
    min-width: 140px;
    padding: 12px 20px;
  }
}

@media (max-width: 767px) {
  .client-pill {
    min-width: 120px;
    padding: 10px 16px;
    font-size: 12px;
  }
  .blog-page-list .blog-card {
    width: 100% !important;
  }
}

/* ========================================
   SEÇÃO: DESTAQUES / SERVIÇOS EM DESTAQUE
   ========================================
   Seção de serviços em destaque
   Exibe 4 cards com texto e ícone/imagem
   ======================================== */

/* Container principal da seção de destaques */
.section-destaques {
  padding: 104px 0;
}

/* Card de serviço em destaque */
.service-card {
  height: 180px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Link do card */
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.service-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Card com imagem e título sobreposto */
.service-card-image {
  height: 180px;
  padding: 0;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
}

.service-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
  z-index: 1;
}

.service-card-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  text-align: center;
  padding: 0 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 1;
}

/* Efeitos de hover */
.service-card-image:hover .service-card-image-wrapper img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.service-card-image:hover .service-card-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.service-card-image:hover .service-card-title {
  transform: scale(1.05);
}

/* Texto do card */
.service-card-text {
  font-size: 14px;
  color: #242424;
  font-weight: 500;
  margin-bottom: 16px;
}

/* Container do ícone */
.service-icon-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

/* Ícone do serviço */
.service-icon {
  width: 80px;
  height: 80px;
  background: #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 40px;
  height: 40px;
}

/* Responsividade da seção de destaques */
@media (max-width: 991px) {
  .section-destaques {
    padding: 80px 0;
  }

  .service-card {
    height: 160px;
    padding: 20px;
  }

  .service-card-image {
    height: 160px;
  }

  .service-card-title {
    font-size: 16px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 767px) {
  .service-card {
    height: 150px;
    padding: 18px;
  }

  .service-card-image {
    height: 150px;
  }

  .service-card-title {
    font-size: 14px;
    padding: 0 12px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 35px;
    height: 35px;
  }
}

/* Contact form */
.contact-form {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(158, 163, 175, .18);
  border-radius: 10px;
  padding: 24px;
}

.form-label {
  color: var(--brand-primary-lighter);
  font-weight: 500;
}

.form-control-figma {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(190, 193, 201, .22);
  color: var(--neutral-white);
}

.form-control-figma::placeholder {
  color: rgba(195, 195, 195, .7);
}

.form-control-figma:focus {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(202, 162, 100, .7);
  box-shadow: 0 0 0 .2rem rgba(202, 162, 100, .15);
  color: var(--neutral-white);
}

.contact-line {
  color: var(--neutral-light);
}

/* Footer */
.site-footer {
  background: var(--brand-primary-full);
  color: var(--neutral-white);
  padding-top: 120px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.footer-logo {
  height: 97px;
  width: auto;
}

.footer-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  color: var(--secondary-base);
  max-width: 520px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.footer-text {
  color: var(--brand-primary-lighter);
  font-weight: 500;
  font-size: 16px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: var(--brand-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary-lighter);
  text-decoration: none;
  font-weight: 600;
}

.social-btn:hover {
  color: var(--neutral-white);
  background: #323c57;
}

.footer-links {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 34px;
}

.footer-col-title {
  color: var(--brand-primary-light, #9ea3af);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-nav a {
  color: var(--neutral-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.footer-nav a:hover {
  color: var(--secondary-base);
}

.footer-nav .muted {
  color: var(--neutral-light);
}

.footer-nav span.muted {
  color: var(--neutral-light);
}

.footer-bottom {
  margin-top: 64px;
  padding: 16px 0 40px;
}

.copy {
  color: #9ea3af;
  font-size: 14px;
}

.w3c {
  color: #9ea3af;
  font-size: 14px;
  font-weight: 600;
}

.to-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.to-top-text {
  color: var(--neutral-light);
  font-size: 14px;
  font-weight: 600;
}

.btn-primary-square {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: none;
  background: var(--brand-primary-full);
  color: var(--neutral-white);
}

.btn-primary-square:hover {
  background: #3a4668;
}

/* ============================================
   Logo Marquee (continuous right-to-left)
   ============================================ */
.logo-marquee-section {
  background-color: #FAFAFA;
  padding: 24px 0;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Fade branco nas laterais para destacar o centro */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(250, 250, 250, 1), rgba(250, 250, 250, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(250, 250, 250, 1), rgba(250, 250, 250, 0));
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 120px;
  width: max-content;
  animation: logo-marquee-scroll 30s linear infinite;
  padding: 0 100px;
}

.logo-marquee__img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.badge-mini-text {
  color: var(--brand-primary-full);
}

.section-dark .badge-mini-text {
  color: var(--neutral-white);
}

.section-feedbacks .big-metric {
  color: var(--brand-primary-full) !important;
}

.testimonial-card .testimonial-name {
  color: var(--brand-primary-full) !important;
}

.section-clients .badge-mini-bar {
  display: inline-block;
  margin: 0 auto;
}

.section-destaques .badge-mini-bar {
  display: inline-block;
  margin: 0 auto;
}

@keyframes logo-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    /* move exatamente metade, porque duplicamos a sequência */
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track {
    animation: none;
  }
}


/* Spacing for fixed header */

@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }

  /* no mobile: só empurra o conteúdo quando o header estiver fixo */
  main {
    padding-top: 0;
  }

  body.header-fixed main {
    padding-top: 92px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-title {
    font-size: 38px;
  }

  .cta-title {
    font-size: 34px;
  }

  /* Offcanvas Menu Mobile - Submenus */
  .offcanvas-links .sub-menu {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    padding: 0;
    margin-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }

  /* Mostra submenu quando o item pai está aberto */
  .offcanvas-links .menu-item-has-children.is-open > .sub-menu {
    display: block !important;
  }

  .offcanvas-links .sub-menu .list-group-item {
    padding-left: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
  }

  .offcanvas-links .sub-menu .list-group-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-base);
  }

  .offcanvas-links .menu-item-has-children > .list-group-item,
  .offcanvas-links .menu-item.has-dropdown > .list-group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .offcanvas-links .menu-item-has-children .fa-chevron-right,
  .offcanvas-links .menu-item.has-dropdown .fa-chevron-right {
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  /* Rotaciona o ícone quando o dropdown está aberto */
  .offcanvas-links .menu-item-has-children.is-open .fa-chevron-right,
  .offcanvas-links .menu-item.has-dropdown.is-open .fa-chevron-right {
    transform: rotate(90deg);
  }

  /* Offcanvas Menu Mobile */
  .offcanvas.offcanvas-start {
    /* igual ao anexo: ocupa a tela inteira no mobile */
    width: 100vw;
    max-width: 100vw;
    z-index: 1055 !important;
  }

  .offcanvas.text-bg-dark {
    /* evita transparência (o anexo é sólido) */
    background: #1b1f2a !important;
  }

  .offcanvas-backdrop {
    z-index: 1054;
  }

  /* backdrop um pouco mais forte pra esconder o conteúdo atrás */
  .offcanvas-backdrop.show {
    opacity: .65;
  }

  .offcanvas .offcanvas-header {
    padding: 20px 20px 8px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.1);
  }

  .offcanvas .offcanvas-body {
    padding: 20px;
  }

  .offcanvas-links .list-group-item {
    background: transparent;
    color: var(--neutral-white);
    border-radius: 6px;
    margin-bottom: 10px;
    padding: 12px 16px;
    font-weight: 500;
    border: none;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .offcanvas-links .list-group-item:hover,
  .offcanvas-links .list-group-item:focus {
    background: rgba(255, 255, 255, 0.06);
 
    color: var(--neutral-white);
  }

  .offcanvas-links .list-group-item:last-child {
    margin-bottom: 0;
  }
}

/* ========================================
   PÁGINA SOBRE - HEADER BREADCRUMB
   ======================================== */
.page-header-breadcrumb {
  position: relative;
  padding: 64px 0;
  overflow: hidden;
}



.page-header-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(5, 5, 5, 0.6); */
  mix-blend-mode: hard-light;
  pointer-events: none !important;
}

.page-header-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(45, 55, 82, 0.2); */
  pointer-events: none !important;
}

.page-header-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neutral-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
  position: relative;
  z-index: 100;
  cursor: pointer;
  pointer-events: auto !important;
}

.breadcrumb-item:hover {
  opacity: 0.8;
  cursor: pointer;
}

.breadcrumb-item.active {
  color: var(--neutral-white);
  cursor: default;
  pointer-events: none;
}

.breadcrumb-nav a:visited {
  color: var(--neutral-white);
}

.breadcrumb-separator {
  color: var(--neutral-white);
  font-size: 12px;
  opacity: 0.8;
  pointer-events: none;
}

.page-header-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: var(--neutral-white);
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* ========================================
   PÁGINA SOBRE - SEÇÃO DIFERENCIAIS
   ======================================== */
.section-diferenciais {
  background: linear-gradient(to right, var(--brand-primary-full), #030711);
  position: relative;
}

.section-diferenciais .badge-mini-text {
  color: var(--brand-primary-lighter);
}

.section-text-content p {
  color: var(--neutral-soft);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.section-text-content p:last-child {
  margin-bottom: 0;
}

/* ========================================
   PÁGINA SOBRE - CARDS MVV
   ======================================== */
.section-mvv {
  padding: 120px 0;
}

.card-mvv {
  background: var(--brand-primary-full);
  padding: 40px 24px;
  border-radius: var(--radius-4);
  box-shadow: 0px 1px 4px 0px rgba(27, 27, 27, 0.08), 0px 1px 4px 0px rgba(27, 27, 27, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-mvv-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.card-mvv-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-base);
  font-size: 24px;
}

.card-mvv-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--neutral-white);
  margin: 0;
  flex: 1;
}

.card-mvv-text {
  color: var(--neutral-white);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991.98px) {
  .page-header-title {
    font-size: 32px;
  }

  .section-mvv {
    padding: 80px 0;
  }

  .card-mvv {
    padding: 32px 20px;
  }
}

/* ========================================
   PÁGINA SERVIÇOS - GRID DE CARDS
   ======================================== */
.section-servicos-page {
  padding: 104px 0;
}

.service-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: var(--radius-4);
  overflow: hidden;
  height: 100%;
  box-shadow: 0px 1px 4px 0px rgba(27, 27, 27, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card__media {
  height: 330px;
  overflow: hidden;
  border-radius: 2px;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card__body {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.service-card__title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  color: #4a4848;
  text-align: center;
}

.service-card__text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-soft);
  margin: 0;
  text-align: center;
}

@media (max-width: 991.98px) {
  .service-card__media {
    height: 280px;
  }
}

/* ========================================
   PÁGINA CONTEÚDO SERVIÇO
   ======================================== */
.section-servico-content {
  padding: 104px 0;
}

.servico-hero-image {
  width: 100%;
  height: 510px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.servico-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.servico-content-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #4a4848;
  margin: 0 0 32px;
}

.servico-content-text {
  color: var(--neutral-soft);
  font-size: 18px;
  line-height: 1.4;
}

.servico-content-text p {
  margin-bottom: 24px;
}

.servico-content-text p:last-child {
  margin-bottom: 0;
}

/* CTA Serviço */
.section-cta-servico {
  background: linear-gradient(to right, var(--brand-primary-full), #030711);
  padding: 120px 0;
  position: relative;
}

.section-cta-servico .cta-title {
  color: var(--neutral-white);
  font-size: 48px;
  margin-bottom: 16px;
}

.section-cta-servico .cta-subtitle {
  color: var(--neutral-light);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

.section-cta-servico .cta-image {
  width: 100%;
  height: 378px;
  border-radius: 2px;
  overflow: hidden;
}

.section-cta-servico .cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Serviços Relacionados */
.section-servicos-relacionados {
  padding: 120px 0;
}

.servicos-relacionados-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
}

.servicos-relacionados-carousel .row {
  flex-wrap: nowrap;
  min-width: max-content;
}

.servicos-relacionados-carousel .col-xl-3 {
  min-width: 342px;
  flex: 0 0 342px;
}

@media (max-width: 991.98px) {
  .servico-hero-image {
    height: 400px;
  }

  .servico-content-title {
    font-size: 28px;
  }

  .servico-content-text {
    font-size: 16px;
  }

  .section-cta-servico {
    padding: 80px 0;
  }

  .section-cta-servico .cta-title {
    font-size: 34px;
  }

  .section-cta-servico .cta-image {
    height: 300px;
    margin-top: 32px;
  }

  .section-servicos-relacionados {
    padding: 80px 0;
  }
}

/* ========================================
   PÁGINA PORTFÓLIO
   ======================================== */
.section-portfolio-page {
  padding: 120px 0;
}

.portfolio-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.btn-portfolio-filter {
  background: var(--brand-primary-dark);
  border: none;
  border-radius: var(--radius-4);
  color: var(--neutral-white);
  font-weight: 500;
  font-size: 16px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-portfolio-filter:hover {
  background: #313b56;
  color: var(--neutral-white);
}

.portfolio-search {
  position: relative;
  width: 342px;
  max-width: 100%;
}

.portfolio-search__input {
  width: 100%;
  background: #fff;
  border: 2px solid #e9e9e9;
  border-radius: var(--radius-4);
  padding: 8px 44px 8px 16px !important;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-soft);
  outline: none;
}

.portfolio-search__input::placeholder {
  color: var(--neutral-soft);
}

.portfolio-search__icon {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: var(--neutral-soft);
  font-size: 18px;
  pointer-events: none;
}

.portfolio-sep {
  height: 1px;
  background: rgba(195, 195, 195, 1);
  margin: 16px 0 24px;
  opacity: 1;
}

.portfolio-tile {
  display: block;
  height: 282px;
  border-radius: 2px;
  overflow: hidden;
  background: #f0f0f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991.98px) {
  .section-portfolio-page {
    padding: 80px 0;
  }

  .portfolio-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .portfolio-search {
    width: 100%;
  }
}

/* ========================================
   PÁGINA CONTEÚDO BLOG
   ======================================== */
/* Background do breadcrumb do blog */
.page-header-breadcrumb--blog .page-header-bg {
  background: url("/tema04/imagens/banner.webp") center/cover no-repeat;
}

/* ========================================
   PÁGINA CONTATO
   ======================================== */
.section-contato {
  padding: 104px 0;
}

.contact-info .badge-mini {
  display: flex;
  align-items: start;
  gap: 8px;
}

.contact-info .badge-mini-bar {
  width: 40px;
  height: 4px;
  border-radius: var(--radius-4);
  background: var(--secondary-base);
  display: inline-block;
}

.contact-info-text {
  color: var(--neutral-soft);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 18px 0 32px;
  max-width: 520px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary-full);
  font-size: 20px;
}

.contact-info-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: var(--brand-primary-full);
  margin-bottom: 8px;
}

.contact-info-value {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-soft);
}

.contact-card {
  background: var(--neutral-white);
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(27, 27, 27, 0.08);
  padding: 32px;
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-card-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary-full);
  font-size: 20px;
}

.contact-card-headtext {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-soft);
}

.contact-label {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #4a4848;
  margin-bottom: 8px;
}

.contact-label-sub {
  font-size: 12px;
  font-weight: 350;
  color: var(--neutral-soft);
}

.contact-control {
  background: var(--neutral-white);
  border: 1px solid #e9e9e9;
  border-radius: var(--radius-4);
  padding: 12px !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #4a4848;
}

.contact-control::placeholder {
  color: rgba(195, 195, 195, 1);
  font-weight: 500;
}

.contact-control:focus {
  border-color: rgba(202, 162, 100, 0.7);
  box-shadow: 0 0 0 .2rem rgba(202, 162, 100, .15);
}

.contact-select {
  background-color: var(--neutral-white);
}

.contact-textarea {
  resize: vertical;
  min-height: 92px;
}

.contact-check {
  font-size: 14px;
  color: var(--neutral-soft);
}

.contact-check .form-check-input {
  border-color: #e9e9e9;
}

.contact-link {
  color: var(--neutral-soft);
  text-decoration: underline;
}

.contact-link:hover {
  color: var(--brand-primary-full);
}

.contact-submit {
  border-radius: 8px;
  padding: 16px;
  min-width: 250px;
  justify-content: center;
  color: var(--neutral-white);
}

.contact-map {
  height: 261px;
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 991.98px) {
  .section-contato {
    padding: 80px 0;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
  }
}

/* Hero Image */
.section-blog-hero {
  padding: 80px 0 0;
}

.blog-hero-image {
  width: 100%;
  height: 510px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Conteúdo do Artigo */
.section-blog-content {
  padding: 80px 0 104px;
}

.blog-meta {
  margin-bottom: 16px;
}

.blog-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.blog-date-author {
  color: var(--neutral-light);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.blog-content-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #4a4848;
  margin: 0 0 32px;
}

.blog-content-text {
  color: var(--neutral-soft);
  font-size: 18px;
  line-height: 1.4;
}

.blog-content-text p {
  margin-bottom: 0;
}

/* Artigos Relacionados */
.section-blog-related {
  background: #f6f6f6;
  padding: 120px 0;
  overflow: hidden;
}

/* Owl carousel (Artigos relacionados) */
#relatedBlogCarousel.owl-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

#relatedBlogCarousel .owl-stage-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

#relatedBlogCarousel .owl-item {
  box-sizing: border-box;
}

.blog-card-related {
  width: 100%;
}

@media (max-width: 991.98px) {
  .blog-hero-image {
    height: 400px;
  }

  .blog-content-title {
    font-size: 28px;
  }

  .blog-content-text {
    font-size: 16px;
  }

  .section-blog-related {
    padding: 80px 0;
  }

  .blog-card-related {
    min-width: 280px;
  }
}

/* ========================================
   PÁGINA BLOG
   ======================================== */
.blog-page {
  padding: 104px 0;
}

.blog-page-list {
  display: flex;
flex-wrap: wrap;
  gap: 40px;
}

.blog-card-page .blog-body {
  padding-bottom: 24px;
  border-bottom: 1px solid #e9e9e9;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-sidebar-title {
  font-family: Roboto, system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--neutral-soft);
  margin: 0;
}

.blog-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-side-card {
  padding: 12px;
  border-radius: 12px;
  background: transparent;
}

.blog-side-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #242424;
  margin: 0 0 8px;
}

.blog-side-excerpt {
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-soft);
  margin: 0 0 8px;
}

.blog-side-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-primary-full);
  text-decoration: none;
}

.blog-side-link:hover {
  text-decoration: underline;
}

.blog-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
}

.blog-page-link {
  min-width: 34px;
  padding: 4px 12px;
  border-radius: 2px;
  border: 1px solid #e9e9e9;
  background: #fafafa;
  font-size: 14px;
  color: var(--neutral-soft);
}

.blog-page-link.is-active {
  background: var(--brand-primary-full);
  border-color: var(--brand-primary-dark);
  color: var(--neutral-white);
}

.blog-page-dots {
  font-size: 16px;
  color: var(--neutral-soft);
}

@media (max-width: 991.98px) {
  .blog-page {
    padding: 80px 0;
  }

  .blog-page-list {
    gap: 32px;
  }

  .blog-sidebar {
    margin-top: 24px;
  }
}



/* ==========================================================================
   Seção de Regiões
   ========================================================================== */

.section-regioes {
  padding: 60px 0;
  background: #f5f5f5;
}

.section-regioes h2 {
  font-size: 28px;
  color: var(--brand-primary-dark);
  margin-bottom: 32px;
  font-weight: 600;
  text-align: center;
}

.regioes-mpi {
  max-width: 1400px;
  margin: 0 auto;
}

/* Grid de Estados */
.regioes__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  margin-bottom: 40px;

  background: transparent;
  overflow: hidden;
  border-radius: 4px;
}

.regioes__menu-item {
  background: #f8f8f8;
  border: none;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.regioes__menu-item:hover {
  background: #e8e8e8;
  color: var(--brand-primary-dark);
}

.regioes__menu-item.active {
  background: var(--brand-primary-dark);
  color: #ffffff;
  font-weight: 600;
}

/* Remove borda direita do último item de cada linha */
.regioes__menu-item:nth-child(12),
.regioes__menu-item:nth-child(24),
.regioes__menu-item:nth-child(26) {
  border-right: none;
}

/* Remove borda inferior da última linha */
.regioes__menu-item:nth-child(n+25) {
  border-bottom: none;
}

/* Conteúdo das Cidades */
.regioes__content {
  background: #ffffff;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.regioes__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px 12px;
}

.regioes__content ul li {
  font-size: 14px;
  color: #555;
  padding: 8px 12px;
  background: #f9f9f9;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-align: center;
}

.regioes__content ul li:hover {
  background: var(--secondary-lighter);
  color: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.regioes__content ul li strong {
  font-weight: 500;
}

/* Responsivo para Tablets */
@media (max-width: 1200px) {
  .regioes__grid {
    grid-template-columns: repeat(8, 1fr);
  }
  
  .regioes__content ul {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .regioes__menu-item:nth-child(8),
  .regioes__menu-item:nth-child(16),
  .regioes__menu-item:nth-child(24) {
    border-right: none;
  }
  
  .regioes__menu-item:nth-child(12),
  .regioes__menu-item:nth-child(26) {
    border-right: 1px solid #e0e0e0;
  }
}

@media (max-width: 991px) {
  .section-regioes h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  
  .regioes__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .regioes__content {
    padding: 24px;
  }
  
  .regioes__content ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 8px;
  }
  
  .regioes__menu-item {
    padding: 14px 10px;
    font-size: 13px;
  }
  
  .regioes__menu-item:nth-child(6),
  .regioes__menu-item:nth-child(12),
  .regioes__menu-item:nth-child(18),
  .regioes__menu-item:nth-child(24) {
    border-right: none;
  }
  
  .regioes__menu-item:nth-child(8),
  .regioes__menu-item:nth-child(16),
  .regioes__menu-item:nth-child(26) {
    border-right: 1px solid #e0e0e0;
  }
}

/* Responsivo para Mobile */
@media (max-width: 768px) {
  .section-regioes {
    padding: 40px 0;
  }
  
  .section-regioes h2 {
    font-size: 20px;
    padding: 0 16px;
  }
  
  .regioes__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .regioes__content {
    padding: 20px 16px;
  }
  
  .regioes__content ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 8px;
  }
  
  .regioes__content ul li {
    font-size: 13px;
    padding: 6px 8px;
  }
  
  .regioes__menu-item {
    padding: 12px 8px;
    font-size: 12px;
  }
  
  .regioes__menu-item:nth-child(4n) {
    border-right: none;
  }
  
  .regioes__menu-item:nth-child(6),
  .regioes__menu-item:nth-child(8),
  .regioes__menu-item:nth-child(12),
  .regioes__menu-item:nth-child(16),
  .regioes__menu-item:nth-child(18),
  .regioes__menu-item:nth-child(24),
  .regioes__menu-item:nth-child(26) {
    border-right: 1px solid #e0e0e0;
  }
}

@media (max-width: 480px) {
  .regioes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .regioes__content ul {
    grid-template-columns: 1fr;
  }
  
  .regioes__menu-item:nth-child(3n) {
    border-right: none;
  }
  
  .regioes__menu-item:nth-child(4n),
  .regioes__menu-item:nth-child(6),
  .regioes__menu-item:nth-child(8),
  .regioes__menu-item:nth-child(12),
  .regioes__menu-item:nth-child(16),
  .regioes__menu-item:nth-child(18),
  .regioes__menu-item:nth-child(24),
  .regioes__menu-item:nth-child(26) {
    border-right: 1px solid #e0e0e0;
  }
}


/* ==========================================================================
   Seção de Regiões
   ========================================================================== */

   .section-regioes {
    padding: 60px 0;
    background: #f5f5f5;
  }
  
  .section-regioes h2 {
    font-size: 28px;
    color: var(--brand-primary-dark);
    margin-bottom: 32px;
    font-weight: 600;
    text-align: center;
  }
  
  .regioes-mpi {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* Grid de Estados */
 
  
  .regioes__menu-item {
    background: #f8f8f8;
    border: none;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .regioes__menu-item:hover {
    background: #e8e8e8;
    color: var(--brand-primary-dark);
  }
  
  .regioes__menu-item.active {
    background: var(--brand-primary-dark);
    color: #ffffff;
    font-weight: 600;
  }
  
  /* Remove borda direita do último item de cada linha */
  .regioes__menu-item:nth-child(12),
  .regioes__menu-item:nth-child(24),
  .regioes__menu-item:nth-child(26) {
    border-right: none;
  }
  
  /* Remove borda inferior da última linha */
  .regioes__menu-item:nth-child(n+25) {
    border-bottom: none;
  }
  
  /* Conteúdo das Cidades - Layout em Lista */
  .regioes__content {
    background: transparent;
    padding: 0;
  }
  
  .regioes__content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #d0d0d0;
  }
  
  .regioes__content ul li {
    font-size: 15px;
    color: #4a4848;
    padding: 16px 20px;
    background: transparent;
    border-bottom: 1px solid #d0d0d0;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: left;
    font-weight: 400;
  }
  
  .regioes__content ul li:hover {
    color: var(--brand-primary-dark);
    background: #fafafa;
  }
  
  .regioes__content ul li strong {
    font-weight: 400;
  }
  
  /* Responsivo para Tablets */
  @media (max-width: 1200px) {
    .regioes__grid {
      grid-template-columns: repeat(8, 1fr);
    }
    
    .regioes__content ul {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .regioes__menu-item:nth-child(8),
    .regioes__menu-item:nth-child(16),
    .regioes__menu-item:nth-child(24) {
      border-right: none;
    }
    
    .regioes__menu-item:nth-child(12),
    .regioes__menu-item:nth-child(26) {
      border-right: 1px solid #e0e0e0;
    }
  }
  
  @media (max-width: 991px) {
    .section-regioes h2 {
      font-size: 24px;
      margin-bottom: 24px;
    }
    
    .regioes__grid {
      grid-template-columns: repeat(6, 1fr);
    }
    
    .regioes__content ul {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .regioes__menu-item {
      padding: 14px 10px;
      font-size: 13px;
    }
    
    .regioes__menu-item:nth-child(6),
    .regioes__menu-item:nth-child(12),
    .regioes__menu-item:nth-child(18),
    .regioes__menu-item:nth-child(24) {
      border-right: none;
    }
    
    .regioes__menu-item:nth-child(8),
    .regioes__menu-item:nth-child(16),
    .regioes__menu-item:nth-child(26) {
      border-right: 1px solid #e0e0e0;
    }
  }
  
  /* Responsivo para Mobile */
  @media (max-width: 768px) {
    .section-regioes {
      padding: 40px 0;
    }
    
    .section-regioes h2 {
      font-size: 20px;
      padding: 0 16px;
    }
    
    .regioes__grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .regioes__content ul {
      grid-template-columns: 1fr;
    }
    
    .regioes__content ul li {
      font-size: 14px;
      padding: 14px 16px;
    }
    
    .regioes__menu-item {
      padding: 12px 8px;
      font-size: 12px;
    }
    
    .regioes__menu-item:nth-child(4n) {
      border-right: none;
    }
    
    .regioes__menu-item:nth-child(6),
    .regioes__menu-item:nth-child(8),
    .regioes__menu-item:nth-child(12),
    .regioes__menu-item:nth-child(16),
    .regioes__menu-item:nth-child(18),
    .regioes__menu-item:nth-child(24),
    .regioes__menu-item:nth-child(26) {
      border-right: 1px solid #e0e0e0;
    }
  }
  
  @media (max-width: 480px) {
    .regioes__grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .regioes__content ul {
      grid-template-columns: 1fr;
    }
    
    .regioes__menu-item:nth-child(3n) {
      border-right: none;
    }
    
    .regioes__menu-item:nth-child(4n),
    .regioes__menu-item:nth-child(6),
    .regioes__menu-item:nth-child(8),
    .regioes__menu-item:nth-child(12),
    .regioes__menu-item:nth-child(16),
    .regioes__menu-item:nth-child(18),
    .regioes__menu-item:nth-child(24),
    .regioes__menu-item:nth-child(26) {
      border-right: 1px solid #e0e0e0;
    }
  }
  