:root {
      --navy: #0B1120;
      --navy-soft: #16213A;
      --slate: #2D4356;
      --cream: #F8F7F4;
      --cream-dim: #EFEDE7;
      --gold: #C9A876;
      --gold-soft: #E2D2B0;
      --ink-muted: #6B7280;
      --line: rgba(201, 168, 118, 0.25);
      --transition: 0.25s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--cream);
      color: var(--navy);
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, .logo {
      font-family: 'Montserrat', serif;
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    .eyebrow {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: '';
      width: 22px;
      height: 1px;
      background: var(--gold);
    }

    .navbar {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      background: rgba(248, 247, 244, 0.98);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      padding: 12px 0;
      z-index: 1000;
      transition: padding 0.3s ease;
    }

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

    .navbar-left {
      flex-shrink: 0;
      position: relative;
      height: 90px;
      min-width: 260px;
    }

    .logo-link {
      display: block;
      height: 100%;
      overflow: visible;
    }

    .logo-img {
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 230px;
      width: auto;
      display: block;
      max-width: 260px;
    }

    .search-box {
      flex: 1;
      max-width: 400px;
      position: relative;
      display: flex;
      align-items: center;
      background: white;
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 0 12px;
      height: 42px;
    }

    .search-input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      font-size: 14px;
      color: var(--navy);
      font-family: 'Montserrat', sans-serif;
    }

    .search-input::placeholder {
      color: var(--ink-muted);
    }

    .search-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--gold);
      padding: 0 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.25s;
    }

    .search-btn:hover {
      color: var(--navy);
    }

    .search-results {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border: 1px solid var(--line);
      border-top: none;
      border-radius: 0 0 4px 4px;
      max-height: 400px;
      overflow-y: auto;
      margin-top: -1px;
      z-index: 1001;
      box-shadow: 0 8px 24px rgba(11, 17, 32, 0.12);
    }

    .search-result-item {
      padding: 12px 16px;
      border-bottom: 1px solid var(--cream-dim);
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
      display: block;
      color: var(--navy);
      font-size: 14px;
    }

    .search-result-item:hover {
      background: var(--cream-dim);
    }

    .search-result-item:last-child {
      border-bottom: none;
    }

    .nav-menu {
      display: flex;
      gap: 32px;
      align-items: center;
      flex-shrink: 0;
    }

    .nav-menu a {
      color: var(--slate);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.05em;
      position: relative;
      transition: color 0.25s;
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.25s ease;
    }

    .nav-menu a:hover {
      color: var(--navy);
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .btn-simule {
      padding: 11px 22px;
      background: linear-gradient(135deg, #F97316, #FF8C00);
      color: #C9A876;
      border: none;
      border-radius: 3px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .btn-simule:hover {
      background: linear-gradient(135deg, #FF8C00, #F97316);
      box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      flex-shrink: 0;
      z-index: 1001;
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .menu-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 20px;
      padding: 20px 24px 28px;
      background: rgba(248, 247, 244, 0.98);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--line);
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-search-box {
      position: relative;
      display: flex;
      align-items: center;
      background: white;
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 0 12px;
      height: 42px;
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-nav-link {
      color: var(--slate);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.05em;
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      transition: color 0.2s;
    }

    .mobile-nav-link:last-child {
      border-bottom: none;
    }

    .mobile-nav-link:hover {
      color: var(--navy);
    }

    .mobile-btn-simule {
      width: 100%;
      text-align: center;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }

      .nav-menu {
        display: none;
      }

      .search-box {
        display: none;
      }

      .btn-simule:not(.mobile-btn-simule) {
        display: none;
      }

      .nav-content {
        gap: 12px;
      }

      .logo-img {
        height: 280px;
      }
    }

    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 1100;
      width: 72px;
      height: 72px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
      border-radius: 50%;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      background: transparent;
    }

    .whatsapp-float img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      display: block;
    }

    .whatsapp-float:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    }

    .btn {
      padding: 13px 28px;
      border: none;
      border-radius: 2px;
      background: var(--navy);
      color: var(--cream);
      cursor: pointer;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.02em;
      width: fit-content;
      transition: background 0.25s ease, transform 0.2s ease;
      text-decoration: none;
    }

    .btn:hover {
      background: var(--gold);
      color: var(--navy);
    }

    .hero {
      display: flex;
      min-height: 100vh;
      margin-top: 0;
    }

    .hero-left {
      flex: 0.62;
      background: var(--navy);
      padding: 0 70px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .hero-left::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
        radial-gradient(circle at 15% 20%, rgba(201,168,118,0.10), transparent 45%),
        radial-gradient(circle at 90% 85%, rgba(201,168,118,0.07), transparent 50%);
      pointer-events: none;
    }

    .hero-left-inner {
      position: relative;
      z-index: 1;
      padding-top: 90px;
    }

    .hero-left h1 {
      font-size: 52px;
      line-height: 1.12;
      margin-bottom: 24px;
      color: var(--cream);
      font-weight: 400;
    }

    .hero-left h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-left p {
      margin-bottom: 36px;
      line-height: 1.7;
      color: rgba(248,247,244,0.7);
      font-size: 16px;
      max-width: 420px;
    }

    .hero-left .btn {
      background: var(--gold);
      color: var(--navy);
    }

    .hero-left .btn:hover {
      background: var(--cream);
    }

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      position: relative;
      z-index: 1;
    }

    .hero-stats div {
      border-top: 1px solid var(--line);
      padding-top: 14px;
    }

    .hero-stats strong {
      display: block;
      font-family: 'Montserrat', serif;
      font-size: 26px;
      color: var(--gold);
      font-weight: 500;
    }

    .hero-stats span {
      font-size: 12px;
      color: rgba(248,247,244,0.55);
      letter-spacing: 0.04em;
    }

    .hero-right {
      flex: 1;
      background-image: url('/assets/img/novvo/NOVVO_PISCINA_VILA_PRUDENTE.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }

    .hero-right::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11,17,32,0.05), rgba(11,17,32,0.35));
    }

    .form-box {
      position: absolute;
      right: 50px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--cream);
      padding: 32px;
      border-radius: 4px;
      width: 340px;
      box-shadow: 0 30px 60px -15px rgba(11,17,32,0.35);
      z-index: 2;
      border-top: 3px solid var(--gold);
    }

    .form-box h4 {
      font-family: 'Montserrat', serif;
      font-size: 19px;
      font-weight: 500;
      margin-bottom: 6px;
      color: var(--navy);
    }

    .form-box .form-sub {
      font-size: 13px;
      color: var(--ink-muted);
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .form-rodrigo {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .form-rodrigo input[type="text"],
    .form-rodrigo input[type="tel"],
    .form-rodrigo input[type="email"] {
      padding: 12px 14px;
      border: 1px solid #E2DFD8;
      border-radius: 3px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      background: #fff;
      color: var(--navy);
      transition: border-color 0.2s ease;
    }

    .form-rodrigo input::placeholder {
      color: #A6A29A;
    }

    .form-rodrigo input:focus {
      outline: none;
      border-color: var(--gold);
    }

    .radio-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      color: var(--slate);
      font-size: 13px;
      margin-top: 4px;
    }

    .radio-group > p {
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 2px;
      font-size: 13px;
    }

    .radio-group label {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .checkbox {
      font-size: 12px;
      color: var(--ink-muted);
      display: flex;
      align-items: flex-start;
      gap: 8px;
      line-height: 1.4;
      margin-top: 4px;
    }

    .form-rodrigo button {
      background: var(--navy);
      color: var(--cream);
      padding: 14px;
      border: none;
      border-radius: 3px;
      cursor: pointer;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.02em;
      margin-top: 6px;
      transition: background 0.25s ease;
    }

    .form-rodrigo button:hover {
      background: var(--gold);
      color: var(--navy);
    }

    @media(max-width: 1000px) {
      .form-box {
        position: static;
        transform: none;
        margin: 40px auto;
      }

      .hero-right {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        min-height: 480px;
      }

      .hero-left {
        padding: 110px 30px 60px;
      }

      .hero-left-inner {
        padding-top: 0;
      }
    }

    .empreendimentos {
      padding: 110px 0;
      background: var(--cream);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
      gap: 30px;
      flex-wrap: wrap;
    }

    .section-head h2 {
      font-size: 38px;
      font-weight: 400;
      color: var(--navy);
      line-height: 1.15;
    }

    .section-head p {
      color: var(--ink-muted);
      font-size: 15px;
      max-width: 320px;
      line-height: 1.6;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      min-height: 420px;
    }

    .card {
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      border: 1px solid #EAE7E0;
      display: flex;
      flex-direction: column;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 40px -20px rgba(11,17,32,0.18);
    }

    .card .card-img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
      background: var(--cream-dim);
    }

    .card-body {
      padding: 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .card-tag {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 10px;
    }

    .card h3 {
      margin-bottom: 10px;
      font-size: 19px;
      font-weight: 500;
      color: var(--navy);
    }

    .card p {
      font-size: 13.5px;
      margin-bottom: 18px;
      line-height: 1.6;
      color: var(--ink-muted);
      flex: 1;
    }

    .card .btn {
      background: transparent;
      color: var(--navy);
      border: 1px solid var(--navy);
      padding: 10px 22px;
      font-size: 13px;
    }

    .card .btn:hover {
      background: var(--navy);
      color: var(--cream);
    }

.sponsors-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 30px;
}

.sponsors-track {
  display: flex;
  width: max-content;
  animation: scrollSponsors 20s linear infinite;
}

.sponsor-item {
  min-width: 180px;
  margin: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-item img {
  max-width: 140px;
  transition: 0.3s;
}

.sponsor-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollSponsors {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


    .logo4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  position: relative;
  display: inline-block;
  color: #111;
}

.logo4 span {
  color: #c59d5f;
}

.logo4::after {
  content: "";
  display: block;
  height: 2px;
  width: 50%;
  background: #c59d5f;
  margin-top: 4px;
}
    .cta {
      background: var(--navy);
      text-align: center;
      padding: 110px 20px;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      top: -50%;
      left: 50%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(201,168,118,0.12), transparent 70%);
      transform: translateX(-50%);
    }

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

    .cta h2 {
      font-size: 38px;
      margin-bottom: 18px;
      color: var(--cream);
      font-weight: 400;
    }

    .cta p {
      margin-bottom: 36px;
      color: rgba(248,247,244,0.65);
      font-size: 16px;
    }

    .cta .btn {
      background: var(--gold);
      color: var(--navy);
      margin: 0 auto;
      padding: 15px 36px;
    }

    .cta .btn:hover {
      background: var(--cream);
    }

    footer {
      background: var(--navy);
      padding: 30px 0;
      border-top: 1px solid var(--line);
    }

    footer .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    footer p {
      font-size: 12px;
      color: rgba(248,247,244,0.4);
      letter-spacing: 0.03em;
    }

    .ficha-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ficha-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid rgba(201, 168, 118, 0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a876;
  background: rgba(201, 168, 118, 0.08);
}

.ficha-icon svg {
  width: 26px;
  height: 26px;
  stroke: #c9a876;
  stroke-width: 1.8;
}

    @media(max-width: 1000px) {
      .cards {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero {
        flex-direction: column;
        min-height: auto;
      }

      .hero-left h1 {
        font-size: 38px;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .menu {
        display: none;
      }
    }

    @media(max-width: 600px) {
      .cards {
        grid-template-columns: 1fr;
      }

      .hero-left {
        padding: 110px 24px 50px;
      }

      .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
      }

      .empreendimentos {
        padding: 70px 0;
      }

      .cta h2 {
        font-size: 28px;
      }
    }