/* ==================================================
   AJUSTES SEO/PERFORMANCE - ALVORADA
   Arquivo externo criado para reduzir CSS inline e facilitar cache.
================================================== */

img { max-width: 100%; height: auto; }

.project-visual img,
.service-image-block img,
.about-image img,
.hero-image img,
.carousel-3d-slide img { background: #f5f2ee; }

@media (max-width: 768px) {
  .hero-content .lead,
  .texto-residencial,
  .service-card p,
  .service-list-content p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }
  .section-title h2,
  .titulo-residencial {
    font-size: 25px !important;
    line-height: 1.25 !important;
  }
}


/* ===============================
   CARROSSEL 3D - PROJETOS
   Alterado somente o carrossel:
   bordas mais retas, melhor preenchimento
   e imagem ampliada ao clicar.
================================ */

.carousel-3d-section {
  width: 100%;
  padding: 35px 0 35px;
  overflow: hidden;
  background: #ffffff;
}

.carousel-3d {
  position: relative;
  width: min(1500px, 96%);
  margin: 0 auto;
  perspective: 1200px;
}

.carousel-3d-stage {
  position: relative;
  height: 560px;
  transform-style: preserve-3d;
  overflow: visible;
}

.carousel-3d-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 48%;
  height: 100%;
  opacity: 0;
  transform: translateX(-50%) scale(0.72);
  transition: transform 0.65s ease, opacity 0.65s ease, filter 0.65s ease;
  z-index: 1;
  pointer-events: none;
  filter: brightness(0.78);
}

.carousel-3d-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.20);
  cursor: pointer;
  display: block;
}

.carousel-3d-slide.active {
  opacity: 1;
  transform: translateX(-50%) translateZ(120px) scale(1);
  z-index: 5;
  pointer-events: auto;
  filter: none;
}

.carousel-3d-slide.prev {
  opacity: 0.88;
  transform: translateX(-103%) rotateY(14deg) scale(0.88);
  z-index: 3;
  pointer-events: auto;
}

.carousel-3d-slide.next {
  opacity: 0.88;
  transform: translateX(3%) rotateY(-14deg) scale(0.88);
  z-index: 3;
  pointer-events: auto;
}

.carousel-3d-slide.far-prev {
  opacity: 0.28;
  transform: translateX(-145%) rotateY(20deg) scale(0.76);
  z-index: 1;
}

.carousel-3d-slide.far-next {
  opacity: 0.28;
  transform: translateX(45%) rotateY(-20deg) scale(0.76);
  z-index: 1;
}

.carousel-3d-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: rgba(106,75,52,0.88);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 26px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-3d-btn:hover {
  background: #5c3f2d;
  transform: translateY(-50%) scale(1.08);
}

.carousel-3d-btn.prev {
  left: 14px;
}

.carousel-3d-btn.next {
  right: 14px;
}

/* LIGHTBOX DO CARROSSEL */
.carousel-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 25px;
}

.carousel-lightbox.active {
  display: flex;
}

.carousel-lightbox img {
  max-width: 94%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.carousel-lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #222222;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .carousel-3d-section {
    padding: 30px 0 25px;
  }

.carousel-3d {
    width: 100%;
  }

.carousel-3d-stage {
    height: 430px;
    min-height: 380px;
  }

.carousel-3d-slide {
    width: 88%;
  }

.carousel-3d-slide img {
    border-radius: 10px;
  }

.carousel-3d-slide.prev,
  .carousel-3d-slide.next,
  .carousel-3d-slide.far-prev,
  .carousel-3d-slide.far-next {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(0.82);
  }

.carousel-3d-slide.active {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

.carousel-3d-btn {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

.carousel-3d-btn.prev {
    left: 10px;
  }

.carousel-3d-btn.next {
    right: 10px;
  }

.carousel-lightbox-close {
    top: 16px;
    right: 16px;
  }
}

.cta-wrapper {
  margin-top: 60px;
  text-align: center;
}

.cta-whatsapp {
  display: inline-block;
  padding: 18px 48px;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background: #218e42;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 
    0 10px 30px rgba(37, 211, 102, 0.35),
    inset 0 0 0 rgba(255,255,255,0);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
  position: relative;
}

/* Brilho sutil */
.cta-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover = vontade de clicar */
.cta-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 
    0 16px 40px rgba(37, 211, 102, 0.45);
  filter: brightness(1.05);
	color:white;
}

.cta-whatsapp:hover::after {
  opacity: 1;
}

/* Clique */
.cta-whatsapp:active {
  transform: scale(0.98);
}

.whatsapp-plug-icon {
  position: fixed;
  z-index: 1000;
  bottom: 50px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;

background-color: #218e42 !important; /* verde principal */
  transition: .3s;

background-position: center;
  background-repeat: no-repeat;
  background-image: url("whats.png");
  background-size: 50% auto;
}

/* Hover */
.whatsapp-plug-icon:hover {
  background-color: #1b7436; /* verde mais escuro */
}

/* Ondas */
.whatsapp-plug-icon::after,
.whatsapp-plug-icon::before {
  content: '';
  position: absolute;
  opacity: 0;

border: 4px solid #218e42; /* verde principal */
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;

border-radius: 50%;
  animation: WaveWhatsApp 1.5s ease infinite;
}

.whatsapp-plug-icon::after {
  animation-delay: .5s;
}

/* Hover nas ondas */
.whatsapp-plug-icon:hover::after {
  border-color: #1b7436;
}

.whatsapp-plug-icon:hover::before {
  border-color: #218e42;
}

@keyframes WaveWhatsApp {
  0% { transform: scale(0.5); }
  50% { opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* Trilho — cinza claro acetinado */
::-webkit-scrollbar-track {
    background: #E6E8EA; /* cinza claro metálico */
    border-radius: 12px;
}

/* Scrollbar base */
::-webkit-scrollbar {
    width: 14px;
    background: #E6E8EA;
}

/* Thumb — inox escovado */
::-webkit-scrollbar-thumb {
    background: linear-gradient(
        145deg,
        #C9CDD1,
        #AEB4BA
    );
    border-radius: 12px;
    border: 1px solid #B0B6BC;
    box-shadow:
        inset 1px 1px 2px rgba(255,255,255,0.6),
        inset -1px -1px 2px rgba(0,0,0,0.12);
}

/* Hover — leve contraste, sem brilho */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        145deg,
        #BFC4C9,
        #9FA6AD
    );
}

/* ===============================
   TEXTO DO BANNER – CONTRASTE
================================ */

.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* não atrapalha clique */
}

/* caixa de fundo */
.banner-text-box {
  background: rgba(0, 0, 0, 0.55); /* preto translúcido */
  padding: 24px 32px;
  border-radius: 6px;
  max-width: 900px;
  text-align: center;
}

/* H1 */
.banner-text-box h1 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

/* H2 */
.banner-text-box h2 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  opacity: 0.95;
}

.typing-title {
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
  font-size: 2em;
  white-space: nowrap;
  overflow: hidden;

border-right: 3px solid #A67C52; /* cursor marrom claro */
  width: 0;

animation: typing 4s steps(40, end) forwards, blink 0.7s step-end infinite;

text-shadow: 0 0 8px #A67C52, 0 0 12px #5C4033; /* brilho metálico em tons de marrom */
}

/* Digitação */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* Piscar do cursor */
@keyframes blink {
  50% { border-color: transparent; }
}
.banner-home {
  width: 100%;
  height: auto;
  display: block;
}

.header,
.branding {
  background: transparent !important;
  box-shadow: none !important;
}

.header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.top-banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.banner-wrapper img {
  width: 100%;
  display: block;
}

.branding .container {
  background: rgba(255,255,255,0.96);
  border-radius: 40px;
  padding: 18px 45px;
  margin-top: 18px;
}

@media (max-width:768px) {
  .branding .container {
    margin: 10px 12px 0 12px;
    border-radius: 18px;
    padding: 12px 18px;
  }

.logo img {
    max-height: 40px;
  }

.mobile-nav-toggle {
    font-size: 32px;
    color: #6b4d3a;
  }
}

.titulo-comercial{
    font-family: 'Montserrat', sans-serif !important;
    font-size: 38px !important;
    font-weight: 300 !important;
    color: #3b2a1f !important;
    letter-spacing: -1px !important;
    text-align:center !important;
    margin-bottom:20px !important;

/* aproxima da imagem */
    margin-top:-40px !important;
}

/* MOBILE */
@media (max-width:768px){

.titulo-comercial{
      font-size:26px !important;
      line-height:1.2 !important;
      padding:0 15px;

/* sobe no celular */
      margin-top:-40px !important;
  }

.cta-wrapper{
      margin-top:0 !important;
  }

}

@media (max-width: 768px) {

.topbar .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
    padding-top: 6px;
    padding-bottom: 6px;
  }

.topbar .contact-info {
    margin: 0 !important;
  }

.topbar .contact-info span {
    font-size: 13px;
  }

.topbar .social-links {
    display: flex !important;
    align-items: center;
    margin: 0 !important;
    gap: 10px;
  }

.topbar .social-links a {
    font-size: 15px;
  }

.depoimentos .paragraph {
    text-align: left !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
  }

.depoimentos .text-link {
    text-align: left !important;
    font-size: 14px !important;
  }

body{
    font-family:'Montserrat', sans-serif !important;
}
.texto-residencial{
  text-align:center !important;
  font-size:17px !important;
  line-height:1.8 !important;
  max-width:850px;
  margin:0 auto 25px auto;
}

/* ==================================================
   AJUSTE FINAL - MENU BRANCO + BOTÃO SAIBA MAIS
   Mantém a estrutura original e ajusta apenas visual.
================================================== */

/* Menu branco mais largo, com aproximadamente 1,5cm de respiro lateral */
.header .branding .container,
.branding .container {
  width: calc(100% - 3cm) !important;
  max-width: none !important;
  box-sizing: border-box !important;

background: rgba(255,255,255,0.96) !important;
  border-radius: 48px !important;

padding: 22px 58px !important;
  margin-top: 18px !important;
  margin-left: auto !important;
  margin-right: auto !important;

box-shadow: 0 14px 42px rgba(0,0,0,0.10) !important;
}

/* Links do menu com mais respiro */
@media (min-width:1200px) {
  .navmenu a,
  .navmenu a:focus {
    padding: 18px 22px !important;
    font-size: 16px !important;
  }
}

/* Banner preparado para receber botão sobre a imagem */
.top-banner .banner-wrapper {
  position: relative !important;
}

/* Botão Saiba Mais sobre a imagem */
.hero-saiba-mais {
  position: absolute;
  left: 7.8%;
  top: 68%;
  z-index: 5;

display: inline-flex;
  align-items: center;
  gap: 18px;

padding: 16px 32px;

border: 1.5px solid #a68b6b;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(5px);

color: #8f7454 !important;
  text-decoration: none !important;

font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;

transition: all .35s ease;
}

.hero-saiba-mais span {
  font-size: 23px;
  line-height: 1;
  transition: transform .3s ease;
}

.hero-saiba-mais:hover {
  background: #a68b6b;
  color: #ffffff !important;
  border-color: #a68b6b;
}

.hero-saiba-mais:hover span {
  transform: translateX(5px);
}

/* Mobile */
@media (max-width:768px) {
  .header .branding .container,
  .branding .container {
    width: calc(100% - 24px) !important;
    border-radius: 22px !important;
    padding: 12px 18px !important;
    margin-top: 10px !important;
  }

.hero-saiba-mais {
    left: 7%;
    top: 70%;
    padding: 12px 20px;
    font-size: 11px;
    letter-spacing: 1.4px;
    gap: 10px;
  }

.hero-saiba-mais span {
    font-size: 18px;
  }
}

/* ======================================
   OVERRIDE FINAL - TEXTO DO BANNER SOBRE A IMAGEM
====================================== */

.top-banner{
  position:relative !important;
  margin-top:0 !important;
  padding:0 !important;
  overflow:hidden !important;
}

.top-banner .banner-wrapper{
  position:relative !important;
  width:100% !important;
  overflow:hidden !important;
}

.top-banner .banner-wrapper picture,
.top-banner .banner-wrapper .banner-home{
  display:block !important;
  width:100% !important;
  position:relative !important;
  z-index:1 !important;
}

.top-banner .hero-texto-banner{
  position:absolute !important;
  z-index:50 !important;
  left:7% !important;
  top:250px !important;
  max-width:440px !important;
  pointer-events:none !important;
  color:#102a49 !important;
}

.top-banner .hero-linha{
  width:72px !important;
  height:2px !important;
  background:#a9823a !important;
  margin-bottom:18px !important;
}

.top-banner .hero-label{
  display:block !important;
  font-family:'Montserrat', sans-serif !important;
  font-size:14px !important;
  font-weight:700 !important;
  letter-spacing:7px !important;
  color:#102a49 !important;
  margin-bottom:12px !important;
}

.top-banner .hero-texto-banner h1{
  margin:0 !important;
  padding:0 !important;
  line-height:1 !important;
  font-family:'Montserrat', sans-serif !important;
  font-weight:300 !important;
}

.top-banner .hero-texto-banner .gold,
.top-banner .hero-texto-banner .blue{
  display:block !important;
  font-family:'Montserrat', sans-serif !important;
  font-size:42px !important;
  line-height:1 !important;
  font-weight:300 !important;
}

.top-banner .hero-texto-banner .gold{
  color:#a9823a !important;
}

.top-banner .hero-texto-banner .blue{
  color:#102a49 !important;
}

.top-banner .hero-texto-banner p{
  margin-top:22px !important;
  font-family:'Montserrat', sans-serif !important;
  font-size:18px !important;
  line-height:1.45 !important;
  color:#102a49 !important;
}

.top-banner .hero-texto-banner p strong{
  font-weight:700 !important;
}

/* CELULAR */
@media(max-width:768px){

.top-banner{
    height:740px !important;
    min-height:740px !important;
    padding:0 !important;
    margin:0 !important;
  }

.top-banner .banner-wrapper{
    height:740px !important;
    min-height:740px !important;
    position:relative !important;
  }

.top-banner .banner-wrapper picture,
  .top-banner .banner-wrapper .banner-home{
    height:740px !important;
    min-height:740px !important;
    width:100% !important;
    object-fit:cover !important;
    object-position:center bottom !important;
    position:relative !important;
    z-index:1 !important;
  }

.top-banner .hero-texto-banner{
    position:absolute !important;
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    z-index:999 !important;

/* abaixo do menu branco, em cima da imagem */
    top:155px !important;
    left:7% !important;

max-width:270px !important;
    color:#102a49 !important;
  }

.top-banner .hero-linha{
    width:45px !important;
    height:2px !important;
    margin-bottom:10px !important;
  }

.top-banner .hero-label{
    font-size:9px !important;
    letter-spacing:4px !important;
    margin-bottom:8px !important;
  }

.top-banner .hero-texto-banner h1{
    line-height:1 !important;
    margin:0 !important;
  }

.top-banner .hero-texto-banner .gold,
  .top-banner .hero-texto-banner .blue{
    font-size:26px !important;
    line-height:1 !important;
    font-weight:300 !important;
  }

.top-banner .hero-texto-banner p{
    margin-top:14px !important;
    font-size:12px !important;
    line-height:1.35 !important;
  }
}

@media(max-width:420px){
  .top-banner,
  .top-banner .banner-wrapper,
  .top-banner .banner-wrapper picture,
  .top-banner .banner-wrapper .banner-home{
    height:720px !important;
    min-height:720px !important;
  }

.top-banner .hero-texto-banner{
    top:150px !important;
    left:7% !important;
  }
}

/* ======================================
   CARROSSEL 3D MOBILE - COM IMAGENS ATRÁS
====================================== */

@media(max-width:768px){

.carousel-3d-section{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    padding:40px 0 35px !important;
    overflow:hidden !important;
    background:#ffffff !important;
  }

.carousel-3d{
    display:block !important;
    position:relative !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 auto !important;
    perspective:1200px !important;
    overflow:hidden !important;
  }

.carousel-3d-stage{
    display:block !important;
    position:relative !important;
    height:430px !important;
    min-height:430px !important;
    transform-style:preserve-3d !important;
    overflow:visible !important;
  }

.carousel-3d-slide{
    display:block !important;
    position:absolute !important;
    top:0 !important;
    left:50% !important;
    width:72% !important;
    height:100% !important;
    opacity:0 !important;
    visibility:hidden !important;
    pointer-events:none !important;
    transition:transform .65s ease, opacity .65s ease, filter .65s ease !important;
    filter:brightness(.78) !important;
  }

.carousel-3d-slide.active{
    opacity:1 !important;
    visibility:visible !important;
    z-index:10 !important;
    pointer-events:auto !important;
    transform:translateX(-50%) translateZ(80px) scale(1) !important;
    filter:none !important;
  }

.carousel-3d-slide.prev{
    opacity:.62 !important;
    visibility:visible !important;
    z-index:5 !important;
    transform:translateX(-87%) rotateY(24deg) scale(.78) !important;
    filter:brightness(.72) blur(.2px) !important;
  }

.carousel-3d-slide.next{
    opacity:.62 !important;
    visibility:visible !important;
    z-index:5 !important;
    transform:translateX(-13%) rotateY(-24deg) scale(.78) !important;
    filter:brightness(.72) blur(.2px) !important;
  }

.carousel-3d-slide.far-prev{
    opacity:.20 !important;
    visibility:visible !important;
    z-index:2 !important;
    transform:translateX(-112%) rotateY(32deg) scale(.62) !important;
    filter:brightness(.65) blur(.5px) !important;
  }

.carousel-3d-slide.far-next{
    opacity:.20 !important;
    visibility:visible !important;
    z-index:2 !important;
    transform:translateX(12%) rotateY(-32deg) scale(.62) !important;
    filter:brightness(.65) blur(.5px) !important;
  }

.carousel-3d-slide img{
    display:block !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    border-radius:12px !important;
    box-shadow:0 14px 35px rgba(0,0,0,.24) !important;
  }

.carousel-3d-btn{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    position:absolute !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    z-index:40 !important;
    width:42px !important;
    height:42px !important;
    border:0 !important;
    border-radius:50% !important;
    background:rgba(106,75,52,.88) !important;
    color:#ffffff !important;
    font-size:24px !important;
    line-height:1 !important;
  }

.carousel-3d-btn.prev{
    left:8px !important;
  }

.carousel-3d-btn.next{
    right:8px !important;
  }
}

@media(max-width:420px){

.carousel-3d-stage{
    height:390px !important;
    min-height:390px !important;
  }

.carousel-3d-slide{
    width:74% !important;
  }

.carousel-3d-slide.prev{
    transform:translateX(-88%) rotateY(24deg) scale(.76) !important;
  }

.carousel-3d-slide.next{
    transform:translateX(-12%) rotateY(-24deg) scale(.76) !important;
  }
}