* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
}

/* CAROUSEL */
.carousel {
  height: 120vh;
  position: relative;
  overflow: hidden;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 44%;
  left: 35%;
  transform: translate(-50%, -50%);
  color: #fff;

  max-width: 800px;
  width: auto;

  padding: 45px 55px;
  text-align: left;
  z-index: 2;
}

/* FUNDO ESCURO */
.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
  border-left: 3px solid rgba(255,255,255,0.7);
}

/* TEXTOS */
.tag {
  font-size: 13px;
  letter-spacing: 3px;
  opacity: 0.9;
}

.title {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 5px;
  line-height: 1.1;
}

.subtitle {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 1.5px;
}

.area {
  font-size: 40px;
  margin-top: 10px;
}

.area span {
  font-size: 22px;
  font-weight: 400;
  margin: 0 8px;
}

/* IMAGEM FLUTUANTE */
.slide-floating-image {
  position: absolute;
  right: 15%;
  bottom: 0;
  z-index: 5;
  width: 420px;
  max-width: 45vw;

}

.slide-floating-image img {
  width: 600px;
  height: 600px;
  display: block;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.45));
}

/* ANIMAÇÃO */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

/* SETAS */
.nav-arrows {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 10;
}

.nav-arrows button {
  width: 64px;
  height: 64px;
  background: transparent;
  border: 4px solid rgba(168, 22, 31);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrows button:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.imoveis-section {
  padding: 80px 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: #A8161F;
}

.top p {
  color: #182E3D;
  margin: 12px 0;
}

.arrows button {
  width: 46px;
  height: 46px;
  border: 1px solid #f7f7f7;
  background: transparent;
  color: #A8161F;
  font-size: 18px;
  cursor: pointer;
}

/* SLIDER */
.slider {
  overflow: hidden;
  position: relative;
}

.track {
  display: flex;
  gap: 30px;
  transition: transform .5s ease;
}
.card {
  width: 500px;
  height: 400px;
  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: 18px;
  font-weight: 400;
  border: 4px solid #A8161F;
  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: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}

.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: #E69600;
  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;
  }
}

/* ===== 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 #A8161F;
  z-index: 2;
}

/* círculo decorativo */
.circulo-decorativo {
  position: absolute;
  left: -30px;
  bottom: 40px;
  width: 120px;
  height: 120px;
  background: #A8161F;
  border-radius: 50%;
  z-index: 1;
}

/* ===== CONTEÚDO ===== */
.estrutura-conteudo {
  flex: 2;
  background: #A8161F;
  padding: 50px 60px;
  position: relative;
  color: #fcfcfc;
}

.estrutura-conteudo h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.estrutura-conteudo .linha {
  display: block;
  width: 60px;
  height: 6px;
  background: #f8f8f8;
  margin-bottom: 25px;
}

.estrutura-conteudo p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  text-align: justify;
  color: #fff;
}

/* detalhe quadrado */
.estrutura-conteudo::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  background: #ffff;
}

/* ===== 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;
  }
}

/* SEÇÃO PRINCIPAL */
.secao-projectos {
  padding: 80px 20px;
  background: linear-gradient(135deg, #c27979, #c5a3a3, #A8161F);
  color: #fff;
  margin-bottom: 160px;
}

/* CONTAINER */
.projectos-wrapper {
  max-width: 1200px;
  margin: auto;
  margin-bottom: 20px;
}

/* TÍTULOS */
.projectos-titulo {
  text-align: left;
  font-size: 36px;
  margin-bottom: 10px;
}

.projectos-subtitulo {
  text-align: left;
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 50px;
}

/* GRID */
.projectos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.projecto-card {
  background: #ffffff;
  color: #333;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  aspect-ratio: 16 / 9; /* proporção profissional */
}

.projecto-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.projecto-card img {
  width: 100%;
  height: 290px;
  object-fit: fill;
}

.projecto-video {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* preenche sem distorcer */
  display: block;
  cursor: pointer; /* mostra que dá para clicar */
}

/* Botão Play */
.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
}


/* RESPONSIVO */
@media (max-width: 600px) {
  .projectos-titulo {
    font-size: 28px;
  }
}

.numeros{
  position:relative;
  background:url('../imag/corporate-management-strategy-solution-branding-concept.jpg') center/cover no-repeat;
  min-height:140vh;
  display:flex;
  align-items:center;
}

.numeros::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.container-numeros{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1400px;
  margin:auto;
  padding:80px 5%;
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:0;
  align-items:stretch;
}

/* TEXTO ESQUERDA */
.texto{
  background:#000;
  color:#fff;
  padding:50px 20px;
  display:flex;
  align-items:center;
  font-size:52px;
  font-weight:300;
  line-height:1.15;
}

.texto span{color:#A8161F;
  font-weight:800}

/* COLUNAS */
.coluna{
  display:flex;
  flex-direction:column;
}

.card-numero{
  flex:1;
  padding:65px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.branco{background:#fff;color:#000}

/* AJUSTE ESPECÍFICO DO CARD 48 ANOS */
.card-numero.anos{
  transform: translateY(-120px);
  
  }

.preto{background:#000;color:#fff}
.vermelho{background:#fff;color:#A8161F;
 }

.card-numero.ver {
  transform: translateY(-0px);
 
}
.card-numero.vermelho{
  min-height: 320px; /* ajuste fino aqui */
}
.numero{
  font-size:78px;
  font-weight:800;
  line-height:1;
}

.descricao{
  margin-top:14px;
  font-size:18px;
  font-weight:400;
}

@media screen and (max-width:1024px){
  .container-numeros{
    grid-template-columns: 1fr 1fr; /* duas colunas */
    padding:60px 5%;
  }
  .texto{
    font-size:40px;
    padding:40px 15px;
  }
  .card-numero{
    padding:50px 30px;
  }
  /* AJUSTE ESPECÍFICO DO CARD 48 ANOS */
.card-numero.anos{
  transform: translateY(0px);
  }
  .numero{
    font-size:60px;
  }
  .descricao{
    font-size:16px;
  }
}

/* Celulares grandes (até 768px) */
@media screen and (max-width:768px){
  .container-numeros{
    grid-template-columns: 1fr; /* uma coluna */
    padding:40px 5%;
  }
  .texto{
    font-size:32px;
    padding:30px 15px;
    text-align:center;
  }

  .card-numero.anos{
    transform: translateY(0px);
    }  

  .card-numero{
    padding:40px 20px;
    transform: translateY(0px); /* remove deslocamentos exagerados */
  }
  .numero{
    font-size:48px;
  }
  .descricao{
    font-size:15px;
  }
}

/* Celulares pequenos (até 480px) */
@media screen and (max-width:480px){
  .texto{
    font-size:26px;
    padding:20px 10px;
  }
  .card-numero{
    padding:30px 15px;
  }
  .numero{
    font-size:38px;
  }
  .descricao{
    font-size:14px;
  }
}

.clientes-relevantes {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.clientes-relevantes h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
  color:#141414;
}

.clientes-relevantes p {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 10px;
}

.clientes-relevantes .linha {
  width: 50px;
  height: 3px;
  background: #A8161F;
  margin: 0 auto 30px;
}
.logos-clientes {
  overflow: hidden;
  width: 100%;
  background: #fff; /* opcional */
}

.logos-track {
  display: flex;
  width: calc(150px * 12); /* largura = número de logos × tamanho */
  animation: scroll 20s linear infinite;
}

.logos-clientes img {
  max-width: 150px;
  height: auto;
  margin: 0 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logos-clientes img:hover {
  transform: scale(1.1);
}

/* ===========================
   FUMO EM U — SOMENTE LATERAIS
=========================== */

.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    /* LATERAL ESQUERDA */
    radial-gradient(
      ellipse at -5% 100%,
      rgba(120, 0, 0, 0.75) 0%,
      rgba(120, 0, 0, 0.55) 35%,
      rgba(120, 0, 0, 0.25) 60%,
      rgba(120, 0, 0, 0.00) 75%
    ),

    /* LATERAL DIREITA */
    radial-gradient(
      ellipse at 105% 100%,
      rgba(120, 0, 0, 0.75) 0%,
      rgba(120, 0, 0, 0.55) 35%,
      rgba(120, 0, 0, 0.25) 60%,
      rgba(120, 0, 0, 0.00) 75%
    );

  filter: blur(42px);
  opacity: 0.9;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .logos-clientes img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .logos-clientes img {
    max-width: 100px;
    margin: 0 10px;
  }
}


/* RESPONSIVO */
@media(max-width:1100px){
  .container{grid-template-columns:1fr;gap:30px}
  .texto{font-size:40px}
}

@media(max-width:600px){
  .texto{font-size:32px;padding:40px}
  .numero{font-size:56px}
}


/* RESPONSIVO */
@media (max-width: 900px) {
  .imoveis-section {
    padding: 40px 20px;
  }

  .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .card {
    min-width: 300px;
  }

  .info ul {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .overlay {
    max-width: 90%;
    padding: 25px;
  }

  .title {
    font-size: 54px;
  }

  .subtitle {
    font-size: 15px;
  }

  .area {
    font-size: 28px;
  }
}

/* TABLETS: até 1024px */
@media (max-width: 1024px) {
  .title {
    font-size: 48px;
  }

  .subtitle {
    font-size: 20px;
  }

  .overlay {
    left: 40%;
  }

  .slide-floating-image {
    width: 300px;
    right: 3%;
    bottom: 6%;
  }

  .area {
    font-size: 32px;
  }

  .area span {
    font-size: 18px;
    margin: 0 6px;
  }

  .nav-arrows {
    right: 20px;
  }

  .nav-arrows button {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

/* CELULARES GRANDES: até 768px */
@media (max-width: 768px) {
  .carousel {
    height: 65vh;
  }

  .overlay {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 80px auto 20px;
    text-align: center;
    padding: 30px;
  }

  .title {
    font-size: 34px;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 16px;
  }

  .slide-floating-image {
    position: relative;
    width: 220px;
    margin: 20px auto;
    right: auto;
    bottom: auto;
  }

  .area {
    font-size: 28px;
  }

  .area span {
    font-size: 16px;
    margin: 0 4px;
  }

  .nav-arrows {
    right: 15px;
    gap: 12px;
  }

  .nav-arrows button {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* CELULARES PEQUENOS: até 480px */
@media (max-width: 480px) {
  .carousel {
    height: 50vh;
  }

  .overlay {
    padding: 15px 20px;
  }

  .title {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }

  .area {
    font-size: 22px;
  }

  .area span {
    font-size: 14px;
    margin: 0 3px;
  }

  .nav-arrows {
    right: 10px;
    gap: 10px;
  }

  .nav-arrows button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

