html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* HERO */
.hero {
  background: url("../imag/diverse-business-colleagues-studying-agreement.webp") no-repeat center center;
  background-size: fill;
  color: #fff;
  padding: 80px 0 0;
  margin-top: 85px; /* compensar o header fixo */
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden; /* evita overflow do blur */
}

/* camada desfocada em cima do fundo */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit; /* usa a mesma imagem */
  background-size: cover;
  background-position: center;
  transform: scale(1.05); /* evita bordas do blur */
  z-index: 0;
}

/* camada de máscara: só a parte direita fica nítida */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2; /* texto acima do overlay */
}

/* TEXTOS */
.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  margin-top: 50px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero .btn-inscrever-hero {
  background: linear-gradient(to right, #b90903, #0E417D) !important;  /* verde sombrio */
  border: none;
  border-radius: 30px;
  padding: 12px 25px;
  color: #fff;
  font-weight: 600;
  margin-right: 15px;
}

.hero .btn-cursos {
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 12px 25px;
  color: #fff;
  font-weight: 600;
  background: transparent;
}


/* IMAGEM DIREITA */
.hero-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3; /* mantém focado acima do blur */
  margin-top: -60px;
}

/* RESPONSIVO */
@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 60px 20px 40px;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .btn-inscrever-hero,
  .hero .btn-cursos {
    margin: 10px 5px;
    padding: 10px 20px;
  }

  .hero .counter {
    justify-content: center;
  }

  .hero-img {
    margin-top: 30px;
    align-items: center;
    height: auto;
  }
}
@media (max-width: 576px) {
  .hero {
    min-height: 60vh;
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }
}

/* ===== SEÇÃO ===== */
.estrutura {
  padding: 80px 20px;
  background: #f7f7f7;
  font-family: 'Poppins', sans-serif;
  margin-bottom:60px;
}

.estrutura-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ===== IMAGEM ===== */
.estrutura-imagem {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.estrutura-imagem img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #0E417D;
  z-index: 2;
}

/* círculo decorativo */
.circulo-decorativo {
  position: absolute;
  left: -30px;
  bottom: 40px;
  width: 120px;
  height: 120px;
  background: #0E417D;
  border-radius: 50%;
  z-index: 1;
}

/* ===== CONTEÚDO ===== */
.estrutura-conteudo {
  flex: 2;
  background: #fff;
  padding: 50px 60px;
  position: relative;
  color: #1d3340;
}

.estrutura-conteudo h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.estrutura-conteudo .linha {
  display: block;
  width: 60px;
  height: 6px;
  background: #f7b724;
  margin-bottom: 25px;
}

.estrutura-conteudo p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 620px;
  text-align: justify;
}

/* detalhe quadrado */
.estrutura-conteudo::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  background: #1d3340;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .estrutura-container {
    flex-direction: column;
    text-align: center;
  }

  .estrutura-imagem img {
    width: 280px;
    height: 280px;
  }

  .estrutura-conteudo {
    padding: 40px 30px;
  }

  .estrutura-conteudo p {
    max-width: 100%;
  }

  .estrutura-conteudo .linha {
    margin: 0 auto 25px;
  }
}

@media (max-width: 480px) {
  .estrutura-imagem img {
    width: 220px;
    height: 220px;
  }

  .estrutura-conteudo h2 {
    font-size: 26px;
  }

  .estrutura-conteudo p {
    font-size: 15px;
  }
}

.imoveis-section {
  padding: 0px 80px 60px;
  background: #fff;
}

/* TOPO */
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.top h2 {
  font-size: 38px;
  font-weight: 500;
  color:#182E3D;
}

.top h2 span {
  color: #f7b724;
}

.top p {
  color: #182E3D;
  margin: 12px 0;
}

.arrows button {
  width: 46px;
  height: 46px;
  border: 1px solid #0E417D;
  background: transparent;
  color: #0E417D;
  font-size: 18px;
  cursor: pointer;
}

/* SLIDER */
.slider {
  overflow: hidden;
  position: relative;
}

.track {
  display: flex;
  gap: 30px;
  transition: transform .5s ease;
}
.card {
  width: 350px;
  height: 300px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BADGE "EM OBRAS" — CENTRAL NO TOPO */
.badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 22px;
  border-radius: 20px;
  background: #fff;
  color: #0e022e;
  font-size: 14px;
  font-weight: 600;
  border: 4px solid #0E417D;
  z-index: 3;
}

/* OVERLAY */
.overlay-servico {
  position: absolute;
  inset: 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent 60%);
  color: #fff;
}

/* CANTO INFERIOR ESQUERDO */
.bottom-left {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.bottom-left h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.bottom-left ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.bottom-left li {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CANTO INFERIOR DIREITO */
.bottom-right {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* BOTÃO */
.btn-card {
  background: #0E417D;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .card {
    min-width: 300px;
    height: 260px;
  }

  .bottom-left ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}


.services-section {
  width: 100%;
  margin: 0 auto;
  padding: 60px 100px;
  text-align: center;
  background-color: #0E417D;
  color: #fff;
}

.services-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.services-header p {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.service-item {
  background: #1b1b1b;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.service-icon {
  width: 100%;
  height: 300px; /* altura maior */
  object-fit: cover;
  display: block;
  margin-top: 0;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.2rem;
  color: #f7b724;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Efeito de transição */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


/* ===========================
   Estilos gerais da seção
=========================== */
.mbs-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  background: #fff;
  gap: 40px;
}

.mbs-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.mbs-text h2 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 20px;
}

.mbs-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #000;
}

.mbs-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.mbs-benefits li {
  font-size: 1rem;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  color: #000;
}

.mbs-benefits li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #0E417D; /* Verde para check */
}

/* Botão estilizado */
.mbs-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.mbs-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Imagem da seção */
.mbs-image {
  flex: 1 1 400px;
  text-align: center;
}

.mbs-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.mbs-image img:hover {
  transform: scale(1.05);
}

/* ===========================
   Responsividade
=========================== */
@media (max-width: 992px) {
  .mbs-section {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .mbs-text {
    max-width: 100%;
  }
  
  .mbs-benefits li {
    padding-left: 0;
  }
  
  .mbs-benefits li i {
    position: relative;
    left: 0;
    margin-right: 8px;
  }
}
/* ===== SECTION NÚMEROS ===== */
.numeros{
  position: relative;
  min-height: 100vh;
  background: url('../imag/conference-room-interior-modern-office-with-white-walls-monitor.webp') center/cover no-repeat;

  display: flex;
  align-items: center;       /* centro vertical */
  justify-content: center;   /* centro horizontal */
}

/* OVERLAY */
.numeros::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

/* CONTAINER */
.container-numeros{
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1200px;
  height: 100%;

  padding: 0 5%;

  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}

/* TEXTO */
.texto{
  background:#0E417D;
  color:#fff;
  padding:60px 30px;

  display:flex;
  flex-direction: column;
  justify-content:center;

  font-size:52px;
  font-weight:300;
  line-height:1.15;
}

.texto span{
  color:#f7b724;
  font-weight:800;
}

/* COLUNA */
.coluna{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* CARD */
.card-numero{
  padding:70px 50px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.preto{
  background:#0E417D;
  color:#fff;
}

/* NÚMERO */
.numero{
  font-size:78px;
  font-weight:800;
  line-height:1;
}

.numero small{
  font-size:78px;
}

/* DESCRIÇÃO */
.descricao{
  margin-top:14px;
  font-size:18px;
  font-weight:400;
}

/* ===== RESPONSIVO ===== */
@media (max-width:1024px){
  .container-numeros{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .texto{
    font-size:38px;
    align-items:center;
  }
}

@media (max-width:768px){
  .texto{
    font-size:32px;
    padding:40px 20px;
  }

  .card-numero{
    padding:40px 30px;
  }

  .numero,
  .numero small{
    font-size:48px;
  }

  .descricao{
    font-size:15px;
  }
}

@media (max-width:480px){
  .texto{
    font-size:26px;
    padding:30px 15px;
  }

  .numero,
  .numero small{
    font-size:38px;
  }
}