    :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);
      --radius-lg:  8px;
      --shadow-lg:  0 30px 60px -25px rgba(11, 17, 32, 0.35);
      --transition: 0.25s ease;
    }

    *, *::before, *::after {
      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);
    }




    .btn {
      display: inline-block;
      padding: 13px 28px;
      border: none;
      border-radius: 2px;
      background: var(--navy);
      color: var(--cream);
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.02em;
      text-decoration: none;
      text-align: center;
      transition: background var(--transition), color var(--transition);
    }

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

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

    .btn.btn-outline {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .btn.btn-outline:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }

    .hero-full {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-full-bg {
      position: absolute;
      inset: 0;
      background-image: url('/assets/img/novvo/NOVVO_PORTARIA_VILA_PRUDENTE.webp');
      background-size: cover;
      background-position: center;
      transform: scale(1.04);
      transition: transform 8s ease;
    }

    .hero-full-bg.loaded { transform: scale(1); }

    .hero-full-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(11, 17, 32, 0.92) 0%,
        rgba(11, 17, 32, 0.55) 40%,
        rgba(11, 17, 32, 0.15) 100%
      );
    }

    .hero-full-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding-bottom: 70px;
    }

    .hero-full-content .container {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      flex-wrap: wrap;
    }

    .hero-text .eyebrow { margin-bottom: 12px; }

    .hero-text h1 {
      font-size: clamp(36px, 5vw, 62px);
      font-weight: 400;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 14px;
    }

    .hero-text .hero-sub {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 10px;
    }

    .hero-price {
      font-size: 22px;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 30px;
    }

    .hero-price span {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 400;
    }

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .breadcrumb-wrap {
      display: none !important;
    }

    .breadcrumb {
      display: none !important;
    }

    .quick-stats {
      background: var(--navy);
      border-top: 1px solid var(--line);
    }

    .quick-stats-inner {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .quick-stat {
      flex: 1;
      min-width: 140px;
      padding: 28px 24px;
      border-right: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .quick-stat:last-child { border-right: none; }

    .quick-stat-icon {
      font-size: 22px;
      line-height: 1;
      flex-shrink: 0;
    }

    .quick-stat-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(248, 247, 244, 0.45);
      margin-bottom: 4px;
    }

    .quick-stat-value {
      font-size: 15px;
      font-weight: 600;
      color: var(--cream);
    }

    .galeria-section {
      padding: 80px 0;
      background: var(--cream);
    }

    .section-title-row {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title-row h2 {
      font-size: 32px;
      font-weight: 400;
      color: var(--navy);
    }

    .carousel-container {
      position: relative;
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 16 / 9;
      background: var(--navy-soft);
    }

    .carousel-track-container { height: 100%; position: relative; }

    .carousel-track {
      height: 100%;
      position: relative;
      list-style: none;
    }

    .carousel-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease-in-out;
      z-index: 1;
    }

    .carousel-slide.active {
      opacity: 1;
      pointer-events: all;
      z-index: 2;
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .slide-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(11, 17, 32, 0.85) 0%, rgba(11, 17, 32, 0) 100%);
      color: #fff;
      padding: 30px 24px 20px;
      font-weight: 500;
      font-size: 16px;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: rgba(11, 17, 32, 0.4);
      backdrop-filter: blur(4px);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: var(--transition);
    }

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

    .carousel-btn-left  { left: 20px; }
    .carousel-btn-right { right: 20px; }

    .carousel-nav {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
      max-width: 70%;
      overflow-x: auto;
      padding: 4px;
    }

    .carousel-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.4);
      border: none;
      cursor: pointer;
      flex-shrink: 0;
      transition: var(--transition);
    }

    .carousel-indicator.current-slide {
      width: 24px;
      border-radius: 4px;
      background-color: var(--gold);
    }

    .carousel-counter {
      position: absolute;
      bottom: 20px;
      right: 20px;
      background-color: rgba(11, 17, 32, 0.6);
      backdrop-filter: blur(4px);
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      padding: 4px 12px;
      border-radius: 50px;
      z-index: 10;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sobre-section {
      padding: 80px 0;
      background: var(--cream-dim);
    }

    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .sobre-text h2 {
      font-size: 30px;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .sobre-text p {
      color: var(--ink-muted);
      line-height: 1.8;
      font-size: 15.5px;
      margin-bottom: 18px;
    }

    .sobre-img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .specs-section {
      padding: 70px 0;
      background: var(--navy);
    }

    .specs-section > .container {
      text-align: center;
    }

    .specs-section .eyebrow { color: var(--gold); }

    .specs-section > .container > h2 {
      color: var(--cream);
      font-size: 30px;
      font-weight: 400;
      margin-bottom: 44px;
    }

    .ficha-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px 24px;
      max-width: 900px;
      margin: 0 auto;
    }

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

    .ficha-item img {
      width: 36px;
      height: auto;
      opacity: 0.85;
      filter: brightness(0) saturate(100%) invert(80%) sepia(30%) saturate(400%) hue-rotate(10deg) brightness(105%);
    }

    .ficha-item span {
      font-size: 13.5px;
      color: rgba(248, 247, 244, 0.75);
      line-height: 1.5;
    }

    .implantacao-section {
      padding: 80px 0;
      background: var(--cream-dim);
    }

    .ficha-img {
      width: 60%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .diferenciais-section {
      padding: 80px 0;
      background: var(--cream);
    }

    .diferenciais-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 10px;
    }

    .diferencial-card {
      background: #fff;
      border: 1px solid #EAE7E0;
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .diferencial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -20px rgba(11, 17, 32, 0.15);
    }

    .diferencial-icon {
      font-size: 30px;
      margin-bottom: 14px;
      line-height: 1;
    }

    .diferencial-card h3 {
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .diferencial-card p {
      font-size: 13.5px;
      color: var(--ink-muted);
      line-height: 1.6;
    }

    .plantas-section {
      padding: 80px 0;
      background: var(--cream-dim);
    }

    .plantas-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 30px 0;
    }

    .planta-tab {
      padding: 12px 20px;
      border: 1px solid #ddd;
      background: #fff;
      cursor: pointer;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 14px;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
    }

    .planta-tab.active,
    .planta-tab:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
    }

    .planta-content {
      display: none;
      grid-template-columns: 1.5fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .planta-content.active { display: grid; }

    .planta-img img {
      width: 100%;
      max-width: 700px;
      display: block;
      margin: auto;
      border-radius: 12px;
      background: #fff;
    }

    .planta-info h3 {
      font-size: 24px;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .planta-spec-row {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid #eee;
      font-size: 14px;
    }

    .planta-spec-row span:first-child { color: var(--ink-muted); }
    .planta-spec-row span:last-child  { font-weight: 600; color: var(--navy); }

    .planta-specs { margin-bottom: 28px; }

    .localizacao-section {
      padding: 88px 0;
      background: var(--navy);
    }

    .localizacao-section .eyebrow { color: var(--gold); }

    .localizacao-section h2 {
      color: var(--cream);
      font-size: clamp(28px, 4vw, 34px);
      font-weight: 400;
      margin-bottom: 10px;
      line-height: 1.25;
      max-width: 640px;
    }

    .localizacao-intro {
      color: rgba(248, 247, 244, 0.65);
      font-size: 15px;
      line-height: 1.7;
      max-width: 680px;
      margin-bottom: 34px;
    }

    .localizacao-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 34px;
      align-items: stretch;
    }

    .pontos,
    .map-column {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(201, 168, 118, 0.22);
      border-radius: var(--radius-lg);
      padding: 28px;
    }

    .map-column {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: stretch;
    }

    .map-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--gold-soft);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin: 0;
    }

    .pontos h3 {
      font-size: 13px;
      font-weight: 600;
      color: var(--gold-soft);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 14px;
    }

    .ponto-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      padding: 15px 0;
      border-bottom: 1px solid var(--line);
      font-size: 14.5px;
    }

    .ponto-item .nome {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--cream);
    }

    .ponto-item .dist {
      color: var(--gold);
      font-weight: 600;
      font-size: 13px;
    }

    .map-wrapper {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 16 / 11;
      flex: 1;
      min-height: 320px;
    }

    .map-wrapper iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    .cta-form-section {
      padding: 80px 0;
      background: var(--cream-dim);
    }

    .cta-form-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 60px;
      align-items: center;
    }

    .cta-form-text h2 {
      font-size: 34px;
      font-weight: 400;
      color: var(--navy);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .cta-form-text p {
      font-size: 15px;
      color: var(--ink-muted);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .check-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--slate);
    }

    .check-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .sidebar-card {
      background: #fff;
      border-radius: 4px;
      padding: 32px;
      border-top: 3px solid var(--gold);
      box-shadow: 0 20px 50px -25px rgba(11, 17, 32, 0.25);
    }

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

    .sidebar-card .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: 'Montserrat', sans-serif;
      font-size: 14px;
      background: #fff;
      color: var(--navy);
      transition: border-color var(--transition);
    }

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

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

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

    .other-projects {
      padding: 80px 0 100px;
      background: var(--navy);
    }

    .other-projects h2 {
      color: var(--cream);
      font-size: 30px;
      font-weight: 400;
      margin-bottom: 44px;
    }

    .other-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .other-card {
      background: var(--navy-soft);
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid rgba(248, 247, 244, 0.08);
      text-decoration: none;
      display: block;
      transition: transform 0.3s ease;
    }

    .other-card:hover { transform: translateY(-4px); }

    .other-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
    }

    .other-card-body { padding: 18px; }

    .other-card-body span {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }

    .other-card-body h3 {
      color: var(--cream);
      font-size: 17px;
      font-weight: 500;
      margin-top: 8px;
    }

    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;
    }

    @media (max-width: 1000px) {
      .menu              { display: none; }
      .sobre-grid        { grid-template-columns: 1fr; }
      .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
      .planta-content.active { grid-template-columns: 1fr; }
      .localizacao-grid  { grid-template-columns: 1fr; }
      .localizacao-section { padding: 72px 0; }
      .localizacao-intro { margin-bottom: 24px; }
      .pontos,
      .map-column { padding: 22px; }
      .map-wrapper { min-height: 300px; }
      .cta-form-grid     { grid-template-columns: 1fr; }
      .other-cards       { grid-template-columns: 1fr; }
      .quick-stat        { min-width: 50%; }
      .hero-full-content .container { flex-direction: column; align-items: flex-start; }
      .ficha-grid        { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      .planta-content.active { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      .diferenciais-grid { grid-template-columns: 1fr; }
      .carousel-container { aspect-ratio: 4 / 3; }
      .quick-stat { min-width: 100%; border-right: none; border-bottom: 1px solid var(--line); }
      .ficha-img  { width: 90%; }
      .localizacao-section h2 { margin-bottom: 8px; }
      .localizacao-intro { font-size: 14px; margin-bottom: 18px; }
      .pontos,
      .map-column { padding: 18px; }
      .ponto-item { font-size: 14px; }
      .map-wrapper { min-height: 260px; }
    }

.plantas-section { overflow: hidden; }
.plantas-tabs { justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.planta-tab { min-width: 86px; border-radius: 999px; }
.planta-content { align-items: stretch; background: rgba(255,255,255,.58); border: 1px solid rgba(201,168,118,.28); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-lg); }
.planta-content.active { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); }
.planta-img { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(11,17,32,.08); display: flex; align-items: center; justify-content: center; }
.planta-img img { width: 100%; height: 100%; max-height: 560px; object-fit: contain; padding: 14px; }
.planta-info { background: var(--navy); color: var(--cream); border-radius: var(--radius-lg); padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.planta-info h3 { color: var(--gold); margin-bottom: 22px; }
.planta-spec-row { border-bottom: 1px solid rgba(201,168,118,.25); padding: 13px 0; gap: 18px; }
.planta-spec-row span:first-child { color: rgba(248,247,244,.62); }
.planta-spec-row span:last-child { color: var(--cream); text-align: right; }
@media (max-width: 900px) { .planta-content.active { grid-template-columns: 1fr; padding: 18px; } .planta-info { padding: 24px; } }
