/* ==========================================
       RESET E BASE
       ========================================== */
    * { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
    }
    
    html, body {
      font-family: 'Parkinsans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      background: #232323;
      color: #ffffff;
      overflow-x: hidden;
    }

    .container { 
      max-width: 1100px; 
      margin: 0 auto; 
      padding: 0 20px; 
    }

    /* ==========================================
       ANIMAÇÕES GLOBAIS
       ========================================== */
    @keyframes rotate { 
      from { transform: rotate(0deg); } 
      to { transform: rotate(360deg); } 
    }
    
    @keyframes fadeInUp { 
      from { opacity: 0; transform: translateY(20px); } 
      to { opacity: 1; transform: translateY(0); } 
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* ==========================================
       SEÇÃO HERO
       ========================================== */
    .hero-section { 
      min-height: 100vh; 
      position: relative; 
      padding: 40px 0; 
      background: #232323;
    }

    .logo { 
      display: flex; 
      align-items: center; 
      gap: 10px; 
      margin-bottom: 60px; 
    }
    
    .logo svg { 
      width: 50px; 
      height: 50px; 
    }
    
    .logo-text { 
      font-size: 32px; 
      font-weight: 300; 
    }

    .content-wrapper { 
      display: grid; 
      grid-template-columns: 1fr auto; 
      gap: 80px; 
      position: relative; 
      justify-content: space-between; 
    }

    .left-content { 
      z-index: 10; 
    }

    .main-title { 
      font-size: clamp(36px, 5vw, 65px); 
      font-weight: 600; 
      line-height: 1.1; 
      margin-bottom: 40px; 
      letter-spacing: -2px; 
    }

    .subtitle { 
      font-size: 14px; 
      line-height: 1.4; 
      margin-bottom: 50px; 
      font-weight: 300; 
      letter-spacing: 6px; 
      line-height: 1.8;
    }
    
    .subtitle strong { 
      font-weight: 700; 
    }

    /* Formulário de Contato */
    .contact-form { 
      background: white; 
      border-radius: 20px; 
      padding: 30px 20px; 
      max-width: 400px; 
      box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
      height: 220px; 
    }

    .form-group { 
      display: flex; 
      align-items: center; 
    }
    
    .form-group label { 
      display: block; 
      color: #666; 
      font-size: 12px; 
      font-weight: 400; 
      letter-spacing: 4px; 
      width: 130px; 
    }
    
    .form-group input { 
      width: 100%; 
      padding: 12px; 
      border: none; 
      font-family: 'Parkinsans', sans-serif; 
      font-size: 14px; 
      background: transparent; 
      color: #8029cf !important;
      background-color: #e9e9e9;
      margin: 4px; 
    }
    
    .form-group input:focus { 
      outline: none; 
      border-bottom-color: #007BFF; 
    }
    
    .form-group input::placeholder { 
      color: #999; 
    }

    .submit-btn { 
      width: 100%; 
      padding: 15px; 
      background: linear-gradient(90deg, #007BFF 0%, #0099FF 10%, #9333EA 100%); 
      color: white; 
      border: none; 
      border-radius: 50px; 
      font-size: 14px; 
      font-weight: 600; 
      letter-spacing: 1px; 
      cursor: pointer; 
      transition: transform 0.3s, box-shadow 0.3s; 
      font-family: 'Parkinsans', sans-serif; 
      margin-top: 10px; 
      right: -80px; 
      bottom: 5px; 
      position: relative; 
    }
    
    .submit-btn:hover { 
      transform: translateY(-2px); 
      box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3); 
    }

    /* Coluna Direita Hero */
    .right-content { 
      position: relative; 
      height: auto; 
      display: flex; 
      justify-content: center; 
      align-items: center; 
      top: -155px; 
    }

    .couple-image { 
      width: 100%; 
      max-width: 500px; 
      aspect-ratio: 16/23; 
      position: relative; 
      z-index: 2; 
      object-fit: cover; 
    }

    .apartment-tag { 
      position: absolute; 
      top: 90px; 
      left: -30px; 
      color: white; 
      padding: 8px 0; 
      font-size: 20px; 
      font-weight: 400; 
      letter-spacing: 3px; 
      z-index: 5; 
      text-align: center; 
      width: 200px; 
    }
    
    .apartment-tag-line1, 
    .apartment-tag-line2 { 
      display: block; 
      font-size: 15px; 
      background: linear-gradient(90deg, #007BFF 0%, #0099FF 10%, #9333EA 100%); 
      margin-bottom: 5px;
      letter-spacing: 4px;
    text-align: left;
    padding-left: 6px; 
    width: fit-content;
    }


    /* Tags de Features */
    .feature-tags { 
      position: absolute; 
      width: 100%; 
      height: 100%; 
      pointer-events: none; 
      z-index: 6; 
    }

    .feature-tag { 
      position: absolute; 
      background: white; 
      padding: 4px 6px; 
      border-radius: 50px; 
      display: flex; 
      align-items: center; 
      gap: 12px; 
      box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
      font-size: 14px; 
      color: #333; 
      font-weight: 300; 
      white-space: nowrap; 
    }
    .feature-tag span { 
     padding-left: 8px; 
    }
    
    .feature-tag .icon { 
      width: 30px; 
      height: 30px; 
      background: #997fe8; 
      border-radius: 50px; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      color: white; 
      font-size: 18px; 
    }

    .tag-marcenaria { top: 50px; right: -30px; }
    .tag-climatizacao { top: 110px; right: -7px; }
    .tag-iluminacao { bottom: 320px; left: -30px; }
    .tag-acessorios { bottom: 260px; left: -110px; }

    /* ==========================================
       SLIDER DE EDIFÍCIOS
       ========================================== */
    .building-preview { 
      position: absolute; 
      bottom: 50px; 
      right: -40px; 
      width: 200px; 
      background: white; 
      border-radius: 20px; 
      padding: 8px; 
      box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
      z-index: 4; 
      height: 290px; 
      overflow: hidden;
    }
    
    /* Slider Container */
    .slider-container {
      position: relative;
      width: 100%;
      height: 250px;
      border-radius: 15px;
      overflow: hidden;
    }
    
    .slider-wrapper {
      display: flex;
      transition: transform 0.5s ease-in-out;
      height: 100%;
    }
    
    .slider-slide {
      min-width: 100%;
      height: 100%;
    }
    
    .slider-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
    }
    
    /* Botões de Navegação do Slider */
    .slider-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 5px;
      pointer-events: none;
    }
    
    .slider-btn {
      width: 28px;
      height: 28px;
      background: rgba(0, 0, 0, 0.5);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: all;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
    }
    
    .slider-btn:hover {
      background: rgba(0, 0, 0, 0.7);
      transform: scale(1.1);
    }
    
    /* Setas Brancas Simples */
    .slider-btn::before {
      content: '';
      width: 8px;
      height: 8px;
      border-top: 2px solid white;
      border-right: 2px solid white;
    }
    
    .slider-btn.prev::before {
      transform: rotate(-135deg);
      margin-left: 2px;
    }
    
    .slider-btn.next::before {
      transform: rotate(45deg);
      margin-right: 2px;
    }
    
    /* Indicadores do Slider */
    .slider-dots {
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 2;
    }
    
    .slider-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      transition: all 0.3s ease;
      cursor: pointer;
    }
    
    .slider-dot.active {
      background: white;
      width: 18px;
      border-radius: 3px;
    }
    
    .building-img { 
      width: 100%; 
      height: 240px; 
      object-fit: fill; 
      border-radius: 15px; 
    }
    
    .moove-logo { 
      color: white; 
      text-align: center; 
      border-radius: 50px; 
      font-size: 18px; 
      font-weight: 700; 
      right: -70px; 
      bottom: -10px; 
      position: relative; 
      background: linear-gradient(272deg, #007BFF 0%, #0099FF 10%, #9333EA 100%); 
      opacity: 0.9; 
      width: 150px; 
      padding-top: 10px;
    }
    .moove-logo2 { 
      color: white; 
      text-align: center; 
      border-radius: 50px; 
      font-size: 18px; 
      font-weight: 700; 
      right: -260px; 
      bottom: -10px; 
      position: relative; 
      background: linear-gradient(272deg, #007BFF 0%, #0099FF 10%, #9333EA 100%); 
      opacity: 0.9; 
      width: 150px; 
      padding-top: 10px;
    }
    
    .moove-logo img { 
      border-radius: 0px !important;
    }
    .moove-logo2 img { 
      border-radius: 0px !important;
    }
    
    .moove-logo .subtitle-logo { 
      display: block; 
      font-size: 10px; 
      letter-spacing: 2px; 
      margin-top: 2px; 
    }

    /* Purple Triangle - Visível apenas no desktop */
    .purple-triangle { 
      position: absolute; 
      top: 500px; 
      right: 290px; 
      transform: translateY(-50%); 
      width: 250px; 
      height: 350px; 
      z-index: 3; 
    }
    .purple-triangle02 {
      position: absolute;
      top: 320px;
      right: 390px;
      transform: translateY(-50%);
      width: 250px;
      height: 350px;
      z-index: 3;
    }

    /* Elementos de fundo */
    .blue-corner { 
      position: absolute; 
      bottom: -150px; 
      left: 30%; 
      width: 300px; 
      height: 300px; 
      background: linear-gradient(135deg, #007BFF, #0099FF); 
      border-radius: 50% 0 0 0; 
      opacity: 0.8; 
      z-index: 1; 
    }

    /* Navegação */
    .nav-arrows { 
      position: absolute; 
      bottom: 50%; 
      transform: translateY(50%); 
      width: 100%; 
      display: flex; 
      justify-content: space-between; 
      padding: 0 20px; 
      pointer-events: none; 
      z-index: 10; 
    }
    
    .nav-arrow { 
      width: 50px; 
      height: 50px; 
      background: rgba(255,255,255,0.1); 
      border: 2px solid rgba(255,255,255,0.3); 
      border-radius: 50%; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      cursor: pointer; 
      transition: all 0.3s; 
      pointer-events: all; 
      color: white; 
      font-size: 24px; 
      font-weight: bold; 
    }
    
    .nav-arrow:hover { 
      background: rgba(255,255,255,0.2); 
      transform: scale(1.1); 
    }

    /* ==========================================
       SEGUNDA SEÇÃO
       ========================================== */
    .second-section { 
      position: relative; 
      background: #232323; 
    }

    .circular-logo { 
      position: absolute; 
      width: 180px; 
      height: 180px; 
      top: -80px; 
      left: 295px; 
      z-index: 10; 
      border-radius: 50%; 
    }
    
    .circular-text { 
      width: 100%; 
      height: 100%; 
      animation: rotate 20s linear infinite; 
      position: relative; 
      z-index: 10; 
    }
    
    .logo-center { 
      position: absolute; 
      top: 50%; 
      left: 50%; 
      transform: translate(-50%, -50%); 
      text-align: center; 
      display: flex; 
      flex-direction: column; 
      align-items: center; 
      gap: 5px; 
      z-index: 11; 
    }
    
    .logo-easy { 
      font-size: 24px; 
      font-weight: 600; 
      color: white; 
    }

    .section-content { 
      display: grid; 
      grid-template-columns: auto 1fr; 
      gap: 80px;  
      position: relative; 
      justify-content: center; 
    }

    .left-image-container { 
      position: relative; 
    }
    
    .bathroom-image { 
      width: 100%; 
      max-width: 400px; 
      aspect-ratio: 16/23; 
      object-fit: cover; 
    }

    .building-card { 
      position: absolute; 
      bottom: 350px; 
      right: -250px; 
      width: 200px; 
      background: white; 
      border-radius: 20px; 
      padding: 8px; 
      box-shadow: 0 10px 30px rgba(0,0,0,0.3); 
      z-index: 5; 
      height: 300px; 
    }
    
    .building-img-sec2 { 
      width: 100%; 
      height: 240px; 
      object-fit: fill; 
      border-radius: 15px; 
    }
    
    .moove-badge { 
      background: linear-gradient(90deg, #007BFF 0%, #0099FF 10%, #9333EA 100%); 
      color: white; 
      text-align: center; 
      padding: 10px; 
      margin: 8px 0; 
      border-radius: 50px; 
      font-size: 16px; 
      font-weight: 700; 
      position: relative; 
      opacity: 0.9; 
    }
    
    .badge-subtitle { 
      display: block; 
      font-size: 9px; 
      letter-spacing: 2px; 
      margin-top: 2px; 
    }

    .right-content-section { 
      padding-left: 40px; 
    }
    
    .section-title { 
      font-size: clamp(32px, 4vw, 36px); 
      font-weight: 600; 
      line-height: 1.2; 
      margin-bottom: 50px; 
      color: white; 
    }

    .features-grid { 
      display: grid; 
      grid-template-columns: 1fr 1fr; 
      gap: 60px; 
    }
    
    .feature-column { 
      display: flex; 
      flex-direction: column; 
    }
    
    .feature-header { 
    }
    
    .feature-header.ambientes { 
    }
    
    .header-text { 
      display: block;
      font-size: 15px;
      background: linear-gradient(110deg, #007BFF 0%, #0099FF 10%, #9333EA 100%);
      margin-bottom: 5px;
      text-align: center; 
      letter-spacing: 3px;
    font-weight: 200; 
    text-align: left;
    padding-left: 8px;
    padding-right: 8px;
    width: fit-content;  
    }
    
    .feature-list { 
      list-style: none; 
      padding: 0; 
      margin: 0;
      padding-top: 30px; 
    }
    
    .feature-list li { 
      color: white; 
      font-size: 18px; 
      font-weight: 300; 
      margin-bottom: 15px; 
      display: flex; 
      align-items: flex-start; 
    }
    
    .bullet { 
      color: #9333EA; 
      font-size: 24px; 
      margin-right: 15px; 
      line-height: 1; 
    }

    .nav-arrow-right { 
      position: absolute; 
      right: 40px; 
      top: 50%; 
      transform: translateY(-50%); 
      width: 50px; 
      height: 50px; 
      background: rgba(255,255,255,0.1); 
      border: 2px solid rgba(255,255,255,0.3); 
      border-radius: 50%; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      cursor: pointer; 
      transition: all 0.3s; 
      color: white; 
      font-size: 24px; 
      font-weight: bold; 
    }
    
    .nav-arrow-right:hover { 
      background: rgba(255,255,255,0.2); 
      transform: translateY(-50%) scale(1.1); 
    }

    /* ==========================================
       SEÇÃO COMPARAÇÃO
       ========================================== */
    .cmp-comparison-section { 
      max-width: 1100px; 
      margin: 0 auto 100px; 
      padding: 100px 20px 0px 20px;
      background: #232323;
    }
    
    .cmp-container { 
      background: linear-gradient(89deg, #007BFF, #0099FF, #9333EA); 
      border-radius: 30px; 
      padding: 6px; 
      position: relative; 
    }
    
    .cmp-inner { 
      background: #232323; 
      border-radius: 24px; 
      display: grid; 
      grid-template-columns: 1fr auto 1fr; 
      gap: 0; 
    }
    
    .cmp-divider { 
      width: 6px; 
      background: linear-gradient(180deg, #007BFF, #0099FF, #9333EA); 
    }
    
    .cmp-column { 
      padding: 60px 80px; 
    }
    
    .cmp-column-header { 
      display: flex; 
      align-items: center; 
      gap: 20px; 
      margin-bottom: 50px; 
    }
    
    .cmp-icon-circle { 
      width: 60px; 
      height: 60px; 
      border-radius: 50%; 
      padding: 3px; 
      background: linear-gradient(135deg, #007BFF, #0099FF, #9333EA); 
      flex-shrink: 0; 
    }
    
    .cmp-icon-circle.cmp-negative { 
      background: linear-gradient(135deg, #007BFF, #0099FF, #9333EA); 
    }
    
    .cmp-icon-inner { 
      width: 100%; 
      height: 100%; 
      border-radius: 50%; 
      background: #232323; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      position: relative; 
    }
    
    .cmp-icon-x { 
      width: 30px; 
      height: 30px; 
      position: relative; 
    }
    
    .cmp-icon-x::before, 
    .cmp-icon-x::after { 
      content: ''; 
      position: absolute; 
      width: 100%; 
      height: 4px; 
      background: linear-gradient(90deg, #007BFF, #0099FF); 
      border-radius: 2px; 
      top: 50%; 
      left: 50%; 
    }
    
    .cmp-icon-x::before { 
      transform: translate(-50%, -50%) rotate(45deg); 
    }
    
    .cmp-icon-x::after { 
      transform: translate(-50%, -50%) rotate(-45deg); 
    }
    
    .cmp-icon-check { 
      width: 30px; 
      height: 30px; 
      position: relative; 
    }
    
    .cmp-icon-check::after { 
      content: ''; 
      position: absolute; 
      width: 18px; 
      height: 10px; 
      border-left: 4px solid; 
      border-bottom: 4px solid; 
      border-image: linear-gradient(135deg, #007BFF, #9333EA) 1; 
      transform: rotate(-45deg); 
      top: 6px; 
      left: 6px; 
    }
    
    .cmp-column-title { 
      font-size: 34px; 
      font-weight: 600; 
      color: white; 
      letter-spacing: -1px; 
    }
    
    .cmp-list { 
      list-style: none; 
    }
    
    .cmp-list li { 
      display: flex; 
      align-items: flex-start; 
      gap: 15px; 
      margin-bottom: 25px; 
      font-size: 18px; 
      font-weight: 300; 
      color: white; 
      line-height: 1.4; 
      animation: fadeInUp 0.5s ease forwards; 
      opacity: 0; 
    }
    
    .cmp-list li:nth-child(1){animation-delay:.1s} 
    .cmp-list li:nth-child(2){animation-delay:.2s} 
    .cmp-list li:nth-child(3){animation-delay:.3s} 
    .cmp-list li:nth-child(4){animation-delay:.4s} 
    .cmp-list li:nth-child(5){animation-delay:.5s} 
    .cmp-list li:nth-child(6){animation-delay:.6s} 
    .cmp-list li:nth-child(7){animation-delay:.7s}
    
    .cmp-list-icon { 
      flex-shrink: 0; 
      width: 24px; 
      height: 24px; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      margin-top: 2px; 
    }
    
    .cmp-list-x, 
    .cmp-list-check { 
      position: relative; 
      width: 20px; 
      height: 20px; 
    }
    
    .cmp-list-x::before, 
    .cmp-list-x::after { 
      content: ''; 
      position: absolute; 
      width: 100%; 
      height: 3px; 
      background: #FFF; 
      top: 50%; 
      left: 50%; 
    }
    
    .cmp-list-x::before { 
      transform: translate(-50%, -50%) rotate(45deg); 
    }
    
    .cmp-list-x::after { 
      transform: translate(-50%, -50%) rotate(-45deg); 
    }
    
    .cmp-list-check::after { 
      content: ''; 
      position: absolute; 
      width: 12px; 
      height: 7px; 
      border-left: 3px solid #FFF; 
      border-bottom: 3px solid #FFF; 
      transform: rotate(-45deg); 
      top: 5px; 
      left: 4px; 
    }

    /* ==========================================
       SEÇÃO FEATURES
       ========================================== */
       
       
     #zero-obra {
  position: relative;
}

#zero-obra::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px; /* Ajuste conforme necessário - deve ser maior que o círculo */
  height: 6px; /* Espessura da linha */
  background: linear-gradient(53deg, #007BFF 0%, #0099FF 10%, #9333EA 100%);
  transform: translate(-50%, -50%) rotate(232deg); /* Centraliza e rotaciona 45 graus */
  border-radius: 2px;
  z-index: 2; /* Garante que fique acima do ícone interno */
  pointer-events: none; /* Não interfere com cliques */
}  
      
    .feat-section { 
      max-width: 1200px; 
      margin: 0 auto; 
      padding: 40px 20px; 
      position: relative; 
      overflow: hidden;
      background: #232323;
    }
    
    .feat-icons { 
      display: flex; 
      justify-content: center; 
      gap: 100px; 
      margin-bottom: 100px; 
      flex-wrap: wrap; 
    }
    
    .feat-icon-item { 
      text-align: center; 
    }
    
    .feat-icon-circle { 
      width: 120px; 
      height: 120px; 
      border-radius: 50%; 
      padding: 6px; 
      background: linear-gradient(268deg, #007BFF 0%, #0099FF 10%, #9333EA 100%); 
      margin: 0 auto 20px; 
    }
    
    .feat-icon-inner { 
      width: 100%; 
      height: 100%; 
      border-radius: 50%; 
      background: #232323; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
    }
    
    .feat-label { 
      font-size: 20px; 
      font-weight: 400; 
      color: white; 
      line-height: 1.2; 
      max-width: 150px; 
      margin: 0 auto; 
    }
    
    .feat-content { 
      display: grid; 
      grid-template-columns: 1fr 1.2fr; 
      gap: 80px; 
      align-items: center; 
      position: relative; 
    }
    
    .feat-text { 
      z-index: 10; 
    }
    
    .feat-title { 
      font-size: clamp(40px, 5vw, 36px); 
      font-weight: 600; 
      margin-bottom: 10px; 
      line-height: 1; 
    }
    
    .feat-subtitle { 
      font-size: clamp(40px, 5vw, 38px); 
      font-weight: 700; 
      background: linear-gradient(90deg, #9333EA, #0099FF); 
      -webkit-background-clip: text; 
      -webkit-text-fill-color: transparent; 
      background-clip: text; 
      margin-bottom: 40px; 
    }
    
    .feat-description { 
      font-size: 14px; 
      line-height: 2.2; 
      font-weight: 200; 
      letter-spacing: 3px; 
      text-transform: uppercase; 
      margin-bottom: 40px; 
      color: rgba(255,255,255,0.9); 
    }
    .feat-description strong { 
      font-weight: 700; 
    }
    
    .feat-note { 
      font-size: 16px; 
      line-height: 2.2; 
      font-weight: 200; 
      color: white; 
    }
    
    .feat-buildings-showcase { 
      display: flex; 
      gap: 50px; 
      position: relative; 
      z-index: 10; 
    }

    /* Cards de Edifícios Unificados */
    .building-card {
      position: relative;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      overflow: visible;
      padding: 8px 8px 46px;
    }
    .feat-building-card {
      position: relative;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      overflow: visible;
      padding: 8px;
      width: 400px;
      height: 300px;
      margin: 0 auto;
    }
    .feat-building-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 15px;
    }

    .building-card img,
    .feat-building-card img {
    }

    .building-card .moove-badge,
    .feat-building-card .moove-badge,
    .building-card .feat-building-badge,
    .feat-building-card .feat-building-badge {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -20px;
      padding: 10px 26px;
      border-radius: 999px;
      color: #fff;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
      background: linear-gradient(90deg, #4F46E5, #9333EA);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      z-index: 5;
    }
    
    .feat-bg-blue { 
      position: absolute; 
      bottom: -100px; 
      left: 40%; 
      width: 400px; 
      height: 400px; 
      background: linear-gradient(135deg, #007BFF, #0099FF); 
      border-radius: 50%; 
      opacity: 0.6; 
      z-index: 0; 
    }
    
    .feat-bg-purple { 
      position: absolute; 
      top: 50%; 
      right: -200px; 
      width: 500px; 
      height: 500px; 
      background: linear-gradient(135deg, #9333EA, #7C3AED); 
      transform: rotate(45deg); 
      opacity: 0.5; 
      z-index: 0; 
    }

    /* ==========================================
       SEÇÃO LOCALIZAÇÃO
       ========================================== */
    .section-location {
      background: #232323;
      color: #fff;
      padding: 64px 20px 72px;
    }
    
    .section-location .container {
      max-width: 1160px;
      margin: 0 auto;
    }
    
    .location-title {
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.15;
      font-weight: 600;
      letter-spacing: 0;
      margin-bottom: 100px;
      width: 600px;
    }
    
    .location-grid {
      display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    }
    
    .location-card {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    
    .location-art {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 4px;
      background: linear-gradient(135deg, #7b2ff7 0%, #2f7bf7 100%);
      background-image:
        radial-gradient(120% 100% at 20% 10%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 60%),
        linear-gradient(135deg, #7b2ff7 0%, #2f7bf7 100%);
      box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    }
    
    .location-cta {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 26px;
      border-radius: 999px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.22);
      color: rgba(255,255,255,0.92);
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
      width: 544px;
    }
    
    .location-cta:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,0.09);
      border-color: rgba(255,255,255,0.28);
    }
    div#borda-iframe {
    padding: 20px;
    background: linear-gradient(272deg, #007BFF 0%, #0099FF 10%, #9333EA 100%);
}

    /* ==========================================
       SEÇÃO CTA
       ========================================== */
    .section-cta {
      background: #232323;
      color: #fff;
      padding: 72px 20px 40px;
    }
    
    .section-cta .container {
      max-width: 1160px;
      margin: 0 auto;
    }
    
    .cta-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 28px 32px;
      align-items: start;
    }
    
    .cta-title {
      font-size: clamp(30px, 5vw, 50px);
      line-height: 1.1;
      font-weight: 600;
      letter-spacing: 0;
      padding-top: 30px;
    }
    
    .cta-card {
      background: #fff;
      color: #111;
      border-radius: 18px;
      box-shadow: 0 14px 30px rgba(0,0,0,0.35);
      padding: 22px 22px 26px;
      width: 100%;
    }
    
    .cta-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    
    .cta-field {
      display: grid;
      grid-template-columns: 120px 1fr;
      align-items: center;
      gap: 10px;
    }
    
    .cta-label {
      font-size: 12px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #6b6b6b;
    }
    
    .cta-input {
      width: 100%;
      background: #e9e9e9;
      border: 1px solid #e4e4e4;
      height: 38px;
      padding: 12px;
      font-size: 14px;
      color: #8029cf !important;
      font-family: 'Parkinsans', sans-serif;
    }
    
    .cta-input::placeholder { 
      color: #a4a4a4; 
    }
    
    .cta-button {
      margin-top: 8px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 42px;
      border: 0;
      border-radius: 999px;
      color: #fff;
      font-weight: 200;
      letter-spacing: 3px;
      text-transform: uppercase;
      background: linear-gradient(61deg, #4F46E5, #9333EA);
      box-shadow: 0 8px 18px rgba(0,0,0,0.25);
      cursor: pointer;
      transition: transform .12s ease, filter .2s ease;
    }
    
    .cta-button:hover { 
      transform: translateY(-1px); 
      filter: brightness(1.02); 
    }

    .cta-bottom {
      margin-top: 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .brasal-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      margin-bottom: 50px;
    }
    
    .brasal-logo svg { 
      width: 56px; 
      height: 56px; 
    }
    
    .brasal-text { 
      font-weight: 700; 
      letter-spacing: .5px; 
    }
    
    .brasal-sub { 
      font-size: 11px; 
      opacity: .8; 
    }

    .socials {
      display: flex;
      gap: 28px;
      justify-content: center;
    }
    
    .social-pill {
      width: 64px;
      height: 64px;
      background: linear-gradient(300deg,#7b2ff7,#2f7bf7);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 14px rgba(0,0,0,0.25);
      transition: transform .15s ease, filter .2s ease;
      color: #fff;
      text-decoration: none;
    }
    
    .social-pill:hover { 
      transform: translateY(-2px); 
      filter: brightness(1.1); 
    }
    
    .social-pill svg { 
      width: 35px; 
      height: 35px; 
      fill: #fff; 
    }

    /* Footer com background específico */
    .legal-bar {
      width: 100%;
      background: #000000;
      border-top: none;
      padding: 16px 20px;
      text-align: center;
      color: rgba(255,255,255,0.85);
      font-size: 13px;
      margin: 0;
    }
    
    .legal-bar a {
      color: #ffffff;
      text-decoration: underline;
    }

    /* ==========================================
       RESPONSIVIDADE
       ========================================== */
    
    /* Desktop adjustments */
    @media (min-width: 901px) {
      .cmp-comparison-section {
        margin-top: -190px;
        padding-top: 0;
        position: relative;
      }
      
      .feat-building-card,
      .building-card { 
        max-width: 400px; 
      }
      
      .feat-building-card img,
      .building-card img { 
        max-height: 420px; 
      }
    }

    /* Tablet */
    @media (max-width: 1024px) {
      .content-wrapper { 
        grid-template-columns: 1fr; 
        gap: 40px; 
      }
      
      .right-content { 
        min-height: 500px; 
      }
      
      .feature-tags { 
        display: none; 
      }
      
      .building-preview { 
        position: relative; 
        bottom: auto; 
        right: auto; 
        margin: 20px auto; 
      }
      
      .purple-triangle { 
        display: none; 
      }
      .purple-triangle02 {  
      }
      
      .section-content { 
        grid-template-columns: 1fr; 
        gap: 40px; 
      }
      
      .right-content-section { 
        padding-left: 0; 
      }
      
      .building-card { 
        position: relative; 
        right: auto; 
        margin: 20px auto; 
      }
      
      .features-grid { 
        gap: 40px; 
      }
      
      .cmp-inner { 
        grid-template-columns: 1fr; 
      }
      
      .cmp-divider { 
        width: calc(100% + 60px); 
        height: 6px; 
        margin: 0 -30px; 
      }
      
      .cmp-column { 
        padding: 40px 30px; 
      }
      
      .cmp-column-title { 
        font-size: 28px; 
      }
      
      .feat-content { 
        grid-template-columns: 1fr; 
        gap: 50px; 
      }
      
      .feat-buildings-showcase { 
        flex-direction: column; 
      }
      
      .feat-icons { 
        gap: 50px; 
      }
    }

    /* Mobile - ALTERAÇÕES PRINCIPAIS AQUI */
    @media (max-width: 768px) {
      .container { 
        padding: 0 16px; 
      }
      
      .slider-container {
        height: 380px;
      }
      
      #zero-obra::after {
        width: 90px;
      }

      /* Hero Section Mobile */
      .hero-section { 
        padding: 16px 0 28px; 
      }
      
      .logo { 
        margin-bottom: 24px; 
      }
      
      .content-wrapper { 
        grid-template-columns: 1fr; 
        gap: 24px; 
      }
      
      .left-content { 
        z-index: 10; 
      }
      
      /* OCULTAR right-content COMPLETAMENTE no mobile */
      .right-content { 
        display: none !important;
      }

      .main-title { 
        font-size: 34px; 
        line-height: 1.15; 
        margin-bottom: 20px; 
        padding-left: 95px;
      }
      
      .subtitle { 
        font-size: 11px; 
        letter-spacing: 5px; 
        line-height: 1.35; 
        margin-bottom: 24px; 
        line-height: 1.8;
        padding-left: 60px;
      }

      /* Formulário Mobile */
      .contact-form { 
        width: 100%; 
        max-width: none; 
        height: 330px; 
        padding: 16px; 
        border-radius: 16px; 
      }
      
      .form-group { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 6px; 
        margin-bottom: 10px; 
      }
      
      .form-group label { 
        width: 100%; 
        font-size: 12px; 
        letter-spacing: 1px; 
        color: #555; 
      }
      
      .form-group input { 
        width: 100%; 
        padding: 12px 10px; 
        border-radius: 10px; 
        border: 1px solid #e6e6e6; 
        font-size: 16px;
        color: #8029cf !important;
        background-color: #e9e9e9;
        margin: 4px;
      }
      
      .submit-btn { 
        position: relative; 
        width: 100%; 
        margin-top: 12px; 
        right: 0; 
        bottom: -5px; 
      }

      /* Ocultar elementos desnecessários */
      .apartment-tag,
      .feature-tags,
      .building-preview { 
        display: none !important;
      }
      
      .location-title {
        width: auto;
      }

      /* Purple triangle - MANTER VISÍVEL NO MOBILE */
      .purple-triangle { 
        display: block !important;
        position: relative;
        width: 80%;
        max-width: 320px;
        margin: 20px auto;
        z-index: 3;
        right: auto;
        top: auto;
      }
      
      .purple-triangle img {
        width: 100%;
        height: auto;
        display: block;
      }
      
      .purple-triangle02 { 
        transform: scale(0.6);
        right: -200px;
        top: 220px;
        width: auto;
        height: auto;
      }
      
      /* Esconder botões de navegação do slider no mobile */
      .slider-nav {
        display: none;
      }
      
      .blue-corner,
      .nav-arrows { 
        display: none; 
      }

      /* Segunda Seção Mobile */
      .circular-logo { 
        display: none; 
      }
      
      .section-content { 
        grid-template-columns: 1fr; 
        gap: 40px; 
      }
      
      .left-image-container { 
        position: relative; 
      }
      
      /* OCULTAR bathroom-image no mobile */
      .bathroom-image { 
        display: none !important;
      }
      
      .building-card { 
        position: relative; 
        right: auto; 
        bottom: auto; 
        width: 100%; 
        max-width: 320px; 
        height: 380px; 
        margin: 12px auto 28px; 
      }
      
      .building-img-sec2 { 
        height: 320px; 
      }
      
      .moove-badge { 
        right: 0; 
        margin: 8px auto 0; 
        width: fit-content; 
      }
      
      .moove-logo, .moove-logo2  {
        right: -180px;
        bottom: -20px;
      }
      
      .right-content-section { 
        padding-left: 0; 
      }
      
      .section-title { 
        font-size: 28px; 
        display: none;
      }
      
      .features-grid {  
        gap: 30px; 
      }
      
      .nav-arrow-right { 
        display: none; 
      }

      /* Comparação Mobile */
      .cmp-comparison-section {
        margin-top: 0;
        padding-top: 60px;
      }
      
      .cmp-inner { 
        grid-template-columns: 1fr; 
      }
      
      .cmp-divider { 
        display: none; 
      }
      
      .cmp-column { 
        padding: 20px; 
      }
      
      .cmp-column-header { 
        gap: 15px; 
        margin-bottom: 30px; 
      }
      
      .cmp-icon-circle { 
        width: 50px; 
        height: 50px; 
      }
      
      .cmp-column-title { 
        font-size: 22px; 
      }
      
      .cmp-list li { 
        font-size: 15px; 
        margin-bottom: 20px; 
      }

      /* Features Mobile */
      .feat-section { 
        padding: 40px 50px;
      }
      
      .feat-icons { 
        gap: 50px; 
      }
      
      .feat-icon-circle { 
        width: 90px; 
        height: 90px; 
      }
      
      .feat-label { 
        font-size: 16px; 
      }
      
      .feat-content { 
        grid-template-columns: 1fr; 
        gap: 50px; 
      }
      
      .feat-title, 
      .feat-subtitle { 
        font-size: 30px; 
      }
      
      .feat-description { 
        font-size: 12px; 
        letter-spacing: 2px; 
        display: none;
      }
      
      /* OCULTAR feat-buildings-showcase no mobile */
      .feat-buildings-showcase { 
        display: none !important;
      }
      
      .feat-building-card { 
        display: none !important;
      }
      
      .building-card { 
        width: 100%; 
        max-width: 320px; 
        margin: 12px auto 28px;
        height: 434px;
      }

      .feat-building-card img { 
        width: 100%;
        height: 320px;
      }
      
      .feat-bg-blue, 
      .feat-bg-purple { 
        display: none; 
      }

      /* Localização Mobile */
      .location-grid { 
        grid-template-columns: 1fr; 
        gap: 22px; 
      }
      
      .location-card { 
        gap: 12px; 
      }
      
      /* OCULTAR location-cta no mobile */
      .location-cta { 
        display: none !important;
      }
      
      iframe { 
        width: 320px;
        height: 300px; 
      }
      
      /* CTA Mobile */
      .cta-row { 
        grid-template-columns: 1fr; 
        gap: 22px; 
      }
      
      /* OCULTAR cta-card no mobile */
      .cta-card { 
        display: none !important;
      }
      
      .cta-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
      }
      
      .cta-button  { 
        font-size: 12px; 
      }
      
      .cta-bottom { 
        margin-top: 40px; 
      }
      
      /* Esconder navegação dos sliders no mobile */
      .building-card .slider-nav,
      .building-preview .slider-nav,
      .feat-building-card .slider-nav {
        display: none !important;
      }
    }

    /* Very small devices - AJUSTES ADICIONAIS */
    @media (max-width: 390px) {
      .main-title { 
        font-size: 32px; 
        padding-left: 85px;
      }
      
      .subtitle { 
        font-size: 12px; 
        letter-spacing: 2px; 
      }
      
      /* Purple triangle ajuste para telas muito pequenas */
      .purple-triangle {
        width: 90%;
        max-width: 280px;
      }
      
      .building-card { 
        height: 434px;
      }
      
      .building-img { 
        height: 320px; 
      }
      
      .feat-building-card img { 
        height: 320px; 
      }
      
      .cmp-column-title { 
        font-size: 22px; 
      }
      
      .form-group input { 
        font-size: 16px; 
      }
      
      iframe { 
        width: 290px;
        height: 290px;
      }
      
      .slider-container {
        height: 380px;
      }
      
      #zero-obra::after {
        width: 80px;
      }
      
      .cta-title {
        font-size: 22px;
      }
    }
  
/* ==== Slider replicado para .building-card (setas 20px fora) ==== */
.building-card { position: relative; overflow: visible; }

.building-card .slider-container { position: relative; width: 100%; height: 100%; }
.building-card .slider-wrapper { display: flex; transition: transform 0.5s ease-in-out; width: 100%; height: 100%; }
.building-card .slider-slide { min-width: 100%; height: 100%; }
.building-card .slider-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }

.building-card .slider-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: calc(100% + 40px); left: -20px;
  display: flex; justify-content: space-between;
  padding: 0; pointer-events: none; z-index: 10;
}
.building-card .slider-btn {
  width: 32px; height: 32px; background: rgba(0,0,0,0.55);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all; transition: all .3s ease;
  backdrop-filter: blur(5px); box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.building-card .slider-btn:hover { background: rgba(0,0,0,0.7); transform: scale(1.08); }
.building-card .slider-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 9;
}
.building-card .slider-dot {
  width: 8px; height: 8px; background: rgba(255,255,255,0.7);
  border-radius: 50%; cursor: pointer; transition: transform .2s ease;
}
.building-card .slider-dot.active { background: white; transform: scale(1.15); }

@media (max-width: 768px) {
  .building-card .slider-nav { display: none; }
}


/* ==== Correção building-preview: setas 20px para fora e logo visível ==== */
.building-preview { overflow: visible !important; }

.building-preview .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 40px);
  left: -20px;
  display: flex;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
  z-index: 12;
}

.building-preview .slider-btn {
  width: 32px; height: 32px;
  background: rgba(0,0,0,0.55);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all; transition: all .3s ease;
  backdrop-filter: blur(5px); box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.building-preview .slider-btn:hover { background: rgba(0,0,0,0.7); transform: scale(1.08); }

.building-preview .moove-logo { position: relative; z-index: 13; }

@media (max-width: 768px) {
  .building-preview .slider-nav { display: none; }
}


/* ==== Correções finais building-preview ==== */
.building-preview { overflow: visible !important;  }

/* manter a mesma proporção em todas as larguras (2:3, como no desktop 200x300) */
.building-preview .slider-container { width: 100%; aspect-ratio: 2 / 3; }

/* setas 3x maiores e mais para fora, sem background */
.building-preview .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% + 120px); /* 60px para fora de cada lado */
  left: -60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  pointer-events: none;
  z-index: 20;
}

.building-preview .slider-btn {
  width: 96px; height: 96px;
  background: transparent !important;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  backdrop-filter: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all;
  transition: transform .2s ease;
}
.building-preview .slider-btn:hover { transform: scale(1.05); }

/* apenas as setas brancas, maiores */
.building-preview .slider-btn::before {
  content: '';
  width: 22px; height: 22px;
  border-top: 4px solid white;
  border-right: 4px solid white;
}
.building-preview .slider-btn.prev::before { transform: rotate(-135deg); margin-left: 6px; }
.building-preview .slider-btn.next::before { transform: rotate(45deg); margin-right: 6px; }

/* dots acima da imagem, centralizados */
.building-preview .slider-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 15;
}
.building-preview .slider-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.7); border-radius: 50%; }
.building-preview .slider-dot.active { background: #fff; }

/* garantir que o logo fique sempre visível */
.building-preview .moove-logo { position: relative; z-index: 21; }

@media (max-width: 768px) {
  /* mantém a proporção no mobile também */
  .building-preview .slider-container { aspect-ratio: 2 / 3; }
  /* pode ocultar as setas se preferir; mantive visível, mas se quiser esconder: */
  /* .building-preview .slider-nav { display: none; } */
}


/* ==== Ajustes solicitados (desktop & mobile) ==== */

/* Desktop: padronizar .building-card com o mesmo botão do .building-preview */
@media (min-width: 769px) {
  .building-card .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px); /* 60px para fora de cada lado */
    left: -60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    pointer-events: none;
    z-index: 20;
  }
  .building-card .slider-btn {
    width: 96px;
    height: 96px;
    background: transparent !important;
    border: none;
    border-radius: 50%;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: transform .2s ease;
  }
  .building-card .slider-btn:hover { transform: scale(1.05); }
  .building-card .slider-btn::before {
    content: '';
    width: 22px;
    height: 22px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
  }
  .building-card .slider-btn.prev::before { transform: rotate(-135deg); margin-left: 6px; }
  .building-card .slider-btn.next::before { transform: rotate(45deg); margin-right: 6px; }
}



/* Mobile: .building-preview igual ao .building-card (sem botões) e mesma proporção do card */
@media (max-width: 768px) {
  .building-preview .slider-nav { display: none !important; }
  /* Usar a mesma proporção típica do .building-card (aprox. 16:19) */
  .building-preview .slider-container { aspect-ratio: 16 / 19 !important; }
}


/* ===== CSS DO LIGHTBOX ===== */

/* Container do Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Botão Fechar */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

/* Botões de Navegação */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-prev::before {
    content: '❮';
}

.lightbox-next {
    right: 40px;
}

.lightbox-next::before {
    content: '❯';
}

/* Contador de imagens */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
}

/* Tornar imagens clicáveis */
.slider-slide {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slider-slide:hover {
    transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }
}
/* Slider para feat-building-card */
.feat-building-card { 
    position: relative; 
    overflow: visible;
}

.feat-building-card .slider-container { 
    position: relative; 
    width: 100%; 
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
}

.feat-building-card .slider-wrapper { 
    display: flex; 
    transition: transform 0.5s ease-in-out; 
    width: 100%; 
    height: 100%; 
}

.feat-building-card .slider-slide { 
    min-width: 100%; 
    height: 100%; 
}

.feat-building-card .slider-slide img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 15px; 
}

/* Botões de navegação */
.feat-building-card .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 120px);
    left: -60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    pointer-events: none;
    z-index: 20;
}

.feat-building-card .slider-btn {
    width: 96px;
    height: 96px;
    background: transparent !important;
    border: none;
    border-radius: 50%;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.2s ease;
}

.feat-building-card .slider-btn:hover { 
    transform: scale(1.05); 
}

.feat-building-card .slider-btn::before {
    content: '';
    width: 22px;
    height: 22px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}

.feat-building-card .slider-btn.prev::before { 
    transform: rotate(-135deg); 
    margin-left: 6px; 
}

.feat-building-card .slider-btn.next::before { 
    transform: rotate(45deg); 
    margin-right: 6px; 
}

/* Dots */
.feat-building-card .slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 9;
}

.feat-building-card .slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.feat-building-card .slider-dot.active { 
    background: white; 
    transform: scale(1.15); 
}

/* Garantir que o logo fique visível */
.feat-building-card .moove-logo { 
    position: relative; 
    z-index: 21; 
}

/* Mobile: esconder botões de navegação */
@media (max-width: 768px) {
    .feat-building-card .slider-nav { 
        display: none !important; 
    }
    
    .feat-building-card .slider-container {
        height: 320px;
    }
}
/* Mobile: colocar .second-section depois de .feat-section */
@media (max-width: 768px) {
  /* define a ordem das seções no mobile */
  body {
    display: grid;
    grid-auto-rows: auto;
    grid-template-areas:
      "hero"
      "cmp"
      "feat"
      "second"      
      "location"
      "cta"
      "legal";
  }

  .hero-section            { grid-area: hero; }
  .feat-section            { grid-area: feat; }
  .second-section          { grid-area: second; }
  .cmp-comparison-section  { grid-area: cmp; }
  .section-location        { grid-area: location; }
  .section-cta             { grid-area: cta; }
  .legal-bar               { grid-area: legal; }

  .hero-section {
        min-height: 0vh;
    }
  .cta-title {
       display: none;
    }
.cmp-comparison-section {
    margin: 0 auto 10px;
}

.location-title {
    margin-bottom: 20px;
    padding-left: 30px;
}
.feat-icons {
    margin: 0px 20px 150px 20px;
}
.logo-text {
    margin: 0 auto;
}
.feat-subtitle {
    margin-bottom: 20px;
}

}