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

      :root {
        --purple-deep: #2d0a4e;
        --purple-mid: #5b1e8c;
        --purple-bright: #8b3fca;
        --purple-light: #c084fc;
        --purple-pale: #f3e8ff;
        --lilac: #d8b4fe;
        --gold: #f0c060;
        --white: #fafaf8;
        --black: #0d0112;
        --gray: #7c6e8a;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background: var(--black);
        color: var(--white);
        font-family: "DM Sans", sans-serif;
        font-weight: 300;
        overflow-x: hidden;
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.4rem 5vw;
        background: rgba(13, 1, 18, 0.6);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(192, 132, 252, 0.1);
        transition: background 0.4s;
      }
      .nav-logo {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.7rem;
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
        letter-spacing: 0.04em;
      }
      .nav-logo span {
        color: var(--purple-light);
      }
      .nav-links {
        display: flex;
        gap: 2.5rem;
        list-style: none;
      }
      .nav-links a {
        color: rgba(250, 250, 248, 0.7);
        text-decoration: none;
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        transition: color 0.3s;
      }
      .nav-links a:hover {
        color: var(--purple-light);
      }
      .nav-cta {
        background: var(--purple-mid);
        color: var(--white) !important;
        padding: 0.6rem 1.4rem !important;
        border-radius: 2rem;
        transition: background 0.3s !important;
      }
      .nav-cta:hover {
        background: var(--purple-bright) !important;
        color: var(--white) !important;
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
      }
      .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s;
      }

      /* ── HERO ── */
      .hero {
        min-height: 100vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 2rem;
        padding: 8rem 5vw 5rem;
        position: relative;
        overflow: hidden;
      }
      .hero-logo-wrap {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: fadeUp 1s 0.4s ease both;
        isolation: isolate;
        background: transparent;
      }
      .hero-logo-img {
        width: 100%;
        max-width: 330px;
        cursor: pointer;
        filter: drop-shadow(0 0 30px rgba(139, 63, 202, 0.55)) brightness(1.1);
        animation: logo-float 5s ease-in-out infinite;
        transition: filter 0.3s;
        user-select: none;
        -webkit-user-drag: none;
      }
      .hero-logo-img:hover {
        filter: drop-shadow(0 0 50px rgba(192, 132, 252, 0.85)) brightness(1.25);
      }
      .hero-logo-img.wiggle {
        animation:
          logo-wiggle 0.5s ease,
          logo-float 5s ease-in-out infinite 0.5s;
      }
      @keyframes logo-float {
        0%,
        100% {
          transform: translateY(0) scale(1);
          filter: drop-shadow(0 0 30px rgba(139, 63, 202, 0.55)) brightness(1.1);
        }
        50% {
          transform: translateY(-10px) scale(1.03);
          filter: drop-shadow(0 0 55px rgba(192, 132, 252, 0.75))
            brightness(1.2);
        }
      }
      @keyframes logo-wiggle {
        0% {
          transform: rotate(0deg) scale(1);
        }
        15% {
          transform: rotate(-8deg) scale(1.08);
        }
        30% {
          transform: rotate(7deg) scale(1.06);
        }
        45% {
          transform: rotate(-5deg) scale(1.04);
        }
        60% {
          transform: rotate(4deg) scale(1.02);
        }
        75% {
          transform: rotate(-2deg) scale(1.01);
        }
        100% {
          transform: rotate(0deg) scale(1);
        }
      }
      .logo-glow-ring {
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        border: 1px solid rgba(192, 132, 252, 0.18);
        animation: ring-pulse 3s ease-in-out infinite;
        pointer-events: none;
      }
      .logo-glow-ring:nth-child(2) {
        width: 340px;
        height: 340px;
        animation-delay: 0.5s;
        border-color: rgba(192, 132, 252, 0.1);
      }
      .logo-glow-ring:nth-child(3) {
        width: 400px;
        height: 400px;
        animation-delay: 1s;
        border-color: rgba(192, 132, 252, 0.05);
      }
      @keyframes ring-pulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(1.04);
          opacity: 0.6;
        }
      }
      .logo-particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: var(--purple-light);
        border-radius: 50%;
        animation: orbit 6s linear infinite;
      }
      .logo-particle:nth-child(4) {
        animation-delay: 0s;
      }
      .logo-particle:nth-child(5) {
        animation-delay: -2s;
        width: 4px;
        height: 4px;
        background: var(--gold);
      }
      .logo-particle:nth-child(6) {
        animation-delay: -4s;
        width: 5px;
        height: 5px;
      }
      @keyframes orbit {
        0% {
          transform: rotate(0deg) translateX(145px) rotate(0deg);
          opacity: 1;
        }
        50% {
          opacity: 0.5;
        }
        100% {
          transform: rotate(360deg) translateX(145px) rotate(-360deg);
          opacity: 1;
        }
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        background:
          radial-gradient(
            ellipse 80% 60% at 70% 40%,
            rgba(91, 30, 140, 0.45) 0%,
            transparent 65%
          ),
          radial-gradient(
            ellipse 50% 50% at 20% 80%,
            rgba(45, 10, 78, 0.6) 0%,
            transparent 60%
          ),
          var(--black);
      }
      .hero-grain {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0.04;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        background-size: 150px;
      }
      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 750px;
        padding-left: 4vw;
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(192, 132, 252, 0.12);
        border: 1px solid rgba(192, 132, 252, 0.3);
        padding: 0.4rem 1rem;
        border-radius: 2rem;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--purple-light);
        margin-bottom: 2rem;
        animation: fadeUp 0.8s ease both;
      }
      .hero-badge::before {
        content: "★";
        color: var(--gold);
        font-size: 0.7rem;
      }
      .hero-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2rem, 4.5vw, 15rem);
        font-weight: 700;
        line-height: 1.15;
        color: var(--white);
        animation: fadeUp 0.8s 0.15s ease both;
      }
      .hero-title em {
        color: var(--purple-light);
        font-style: normal;
      }
      .hero-sub {
        margin-top: 1.8rem;
        max-width: 520px;
        font-size: 1.05rem;
        line-height: 1.7;
        color: rgba(250, 250, 248, 0.6);
        animation: fadeUp 0.8s 0.3s ease both;
      }
      .hero-actions {
        margin-top: 2.8rem;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        animation: fadeUp 0.8s 0.45s ease both;
      }
      .btn-primary {
        background: var(--purple-mid);
        color: var(--white);
        text-decoration: none;
        padding: 0.9rem 2.2rem;
        border-radius: 3rem;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        transition:
          transform 0.2s,
          background 0.3s,
          box-shadow 0.3s;
        box-shadow: 0 0 0 0 rgba(139, 63, 202, 0);
      }
      .btn-primary:hover {
        background: var(--purple-bright);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(139, 63, 202, 0.4);
      }
      .btn-ghost {
        color: var(--white);
        text-decoration: none;
        padding: 0.9rem 2.2rem;
        border-radius: 3rem;
        font-size: 0.9rem;
        font-weight: 400;
        letter-spacing: 0.05em;
        border: 1px solid rgba(250, 250, 248, 0.2);
        transition:
          border-color 0.3s,
          background 0.3s;
      }
      .btn-ghost:hover {
        border-color: var(--purple-light);
        background: rgba(192, 132, 252, 0.08);
      }

      .hero-scroll {
        position: absolute;
        bottom: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: rgba(250, 250, 248, 0.35);
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        animation: fadeIn 1.5s 1s ease both;
      }
      .scroll-line {
        width: 1px;
        height: 48px;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(192, 132, 252, 0.5)
        );
        animation: scrollPulse 2s infinite;
      }

      /* ── SECTION BASE ── */
      section {
        padding: 7rem 5vw;
      }
      .section-label {
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--purple-light);
        margin-bottom: 1rem;
      }
      .section-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        font-weight: 700;
        line-height: 1.1;
        color: var(--white);
      }
      .section-title em {
        color: var(--purple-light);
        font-style: normal;
      }

      /* ── SOBRE ── */
      .sobre {
        background: linear-gradient(
          160deg,
          rgba(45, 10, 78, 0.3) 0%,
          transparent 60%
        );
        border-top: 1px solid rgba(192, 132, 252, 0.1);
      }
      .sobre-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
      }
      .sobre-text p {
        margin-top: 1.5rem;
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(250, 250, 248, 0.65);
        max-width: 480px;
      }
      .sobre-highlight {
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(192, 132, 252, 0.08);
        border-left: 3px solid var(--purple-bright);
        border-radius: 0 0.5rem 0.5rem 0;
      }
      .sobre-highlight strong {
        color: var(--gold);
        font-size: 0.9rem;
        letter-spacing: 0.05em;
      }
      .sobre-highlight p {
        margin-top: 0.4rem;
        font-size: 0.9rem;
        color: rgba(250, 250, 248, 0.6);
      }

      .sobre-cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .sobre-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(192, 132, 252, 0.15);
        border-radius: 1rem;
        padding: 1.8rem;
        transition:
          border-color 0.3s,
          transform 0.3s;
      }
      .sobre-card:hover {
        border-color: rgba(192, 132, 252, 0.4);
        transform: translateX(4px);
      }
      .sobre-card-icon {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
      }
      .sobre-card h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 0.5rem;
      }
      .sobre-card p {
        font-size: 0.9rem;
        line-height: 1.7;
        color: rgba(250, 250, 248, 0.55);
      }

      /* ── STARTUP DESTAQUE ── */
      .destaque {
        background: linear-gradient(
          135deg,
          var(--purple-deep) 0%,
          rgba(91, 30, 140, 0.8) 100%
        );
        border-top: 1px solid rgba(192, 132, 252, 0.2);
        border-bottom: 1px solid rgba(192, 132, 252, 0.2);
      }
      .destaque-inner {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
      }
      .destaque-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: rgba(240, 192, 96, 0.15);
        border: 1px solid rgba(240, 192, 96, 0.4);
        padding: 0.5rem 1.2rem;
        border-radius: 2rem;
        font-size: 0.8rem;
        color: var(--gold);
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
      }
      .destaque h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 700;
        color: var(--white);
        margin-bottom: 1.2rem;
      }
      .destaque p {
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(250, 250, 248, 0.7);
      }

      /* ── SERVIÇOS ── */
      .servicos {
        background: var(--black);
      }
      .servicos-header {
        max-width: 1200px;
        margin: 0 auto 4rem;
      }
      .servicos-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
      }
      .servico-card {
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(192, 132, 252, 0.12);
        border-radius: 1.2rem;
        padding: 2.5rem 2rem;
        transition:
          border-color 0.4s,
          transform 0.4s,
          box-shadow 0.4s;
      }
      .servico-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--purple-bright), var(--lilac));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
      }
      .servico-card:hover::before {
        transform: scaleX(1);
      }
      .servico-card:hover {
        border-color: rgba(192, 132, 252, 0.35);
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(91, 30, 140, 0.3);
      }
      .servico-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 4rem;
        font-weight: 700;
        color: rgba(192, 132, 252, 0.1);
        line-height: 1;
        margin-bottom: 1rem;
      }
      .servico-card h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 0.8rem;
      }
      .servico-card p {
        font-size: 0.9rem;
        line-height: 1.7;
        color: rgba(250, 250, 248, 0.55);
      }
      .servico-tag {
        display: inline-block;
        margin-top: 1.5rem;
        padding: 0.3rem 0.9rem;
        border-radius: 2rem;
        background: rgba(192, 132, 252, 0.1);
        border: 1px solid rgba(192, 132, 252, 0.25);
        font-size: 0.75rem;
        color: var(--purple-light);
        letter-spacing: 0.08em;
      }

      /* ── PARCEIROS ── */
      .parceiros {
        background: rgba(45, 10, 78, 0.2);
        border-top: 1px solid rgba(192, 132, 252, 0.1);
      }
      .parceiros-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 4rem;
      }
      .parceiros-track-wrap {
        overflow: hidden;
        position: relative;
      }
      .parceiros-track-wrap::before,
      .parceiros-track-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 120px;
        z-index: 2;
      }
      .parceiros-track-wrap::before {
        left: 0;
        background: linear-gradient(to right, rgba(13, 1, 18, 1), transparent);
      }
      .parceiros-track-wrap::after {
        right: 0;
        background: linear-gradient(to left, rgba(13, 1, 18, 1), transparent);
      }
      .parceiros-track {
        display: flex;
        gap: 3rem;
        width: max-content;
        animation: scroll-left 22s linear infinite;
      }
      .parceiros-track:hover {
        animation-play-state: paused;
      }
      .parceiro-item {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(192, 132, 252, 0.1);
        border-radius: 0.8rem;
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 180px;
        height: 80px;
        flex-shrink: 0;
        transition:
          border-color 0.3s,
          background 0.3s,
          transform 0.3s;
      }
      .parceiro-item:hover {
        border-color: rgba(192, 132, 252, 0.35);
        background: rgba(255, 255, 255, 0.07);
        transform: translateY(-2px);
      }
      .parceiro-item img {
        max-width: 130px;
        max-height: 52px;
        width: auto;
        height: auto;
        object-fit: contain;
        opacity: 0.8;
        transition:
          opacity 0.3s,
          transform 0.3s;
      }
      .parceiro-item:hover img {
        opacity: 1;
      }

      /* ── CTA FRANQUIA ── */
      .cta-franquia {
        background: var(--black);
        text-align: center;
        padding: 8rem 5vw;
      }
      .cta-inner {
        max-width: 700px;
        margin: 0 auto;
      }
      .cta-inner .section-label {
        justify-content: center;
        display: block;
      }
      .cta-inner .section-title {
        margin-bottom: 1.2rem;
      }
      .cta-inner p {
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(250, 250, 248, 0.6);
        margin-bottom: 2.5rem;
      }
      .cta-glow {
        display: inline-block;
        position: relative;
      }
      .cta-glow::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 30px;
        background: rgba(139, 63, 202, 0.5);
        filter: blur(20px);
        border-radius: 50%;
      }

      /* ── FOOTER ── */
      footer {
        border-top: 1px solid rgba(192, 132, 252, 0.1);
        padding: 3rem 5vw;
        text-align: center;
        color: rgba(250, 250, 248, 0.3);
        font-size: 0.82rem;
      }
      footer a {
        color: var(--purple-light);
        text-decoration: none;
      }

      /* ── ANIMATIONS ── */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      @keyframes scrollPulse {
        0%,
        100% {
          opacity: 0.3;
        }
        50% {
          opacity: 1;
        }
      }
      @keyframes scroll-left {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 900px) {
        .hero {
          grid-template-columns: 1fr;
        }
        .hero-abstract {
          display: none;
        }
        .sobre-grid {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
        .servicos-grid {
          grid-template-columns: 1fr;
        }
        .nav-links {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .nav-links.open {
          display: flex;
          flex-direction: column;
          position: fixed;
          top: 64px;
          left: 0;
          right: 0;
          background: rgba(13, 1, 18, 0.97);
          padding: 2rem 5vw;
          gap: 1.5rem;
          border-bottom: 1px solid rgba(192, 132, 252, 0.1);
        }
      }

      /* MAPA */
      .cidades {
        background: var(--black);
        border-top: 1px solid rgba(192, 132, 252, 0.1);
      }
      .cidades-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 2rem;
      }
      .cidades-header p {
        margin-top: 1rem;
        font-size: 1rem;
        color: rgba(250, 250, 248, 0.6);
        line-height: 1.7;
      }

      .matriz-strip {
        max-width: 500px;
        margin: 0 auto 3.5rem;
        background: rgba(240, 192, 96, 0.07);
        border: 1px solid rgba(240, 192, 96, 0.3);
        border-radius: 1rem;
        padding: 1rem 1.5rem;
      }
      .matriz-strip-inner {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: center;
      }
      .matriz-crown {
        font-size: 1.6rem;
      }
      .matriz-strip-inner strong {
        display: block;
        color: var(--gold);
        font-size: 0.95rem;
      }
      .matriz-strip-inner span {
        font-size: 0.82rem;
        color: rgba(250, 250, 248, 0.5);
      }
      .matriz-strip-inner span em {
        color: rgba(250, 250, 248, 0.75);
        font-style: normal;
      }

      .mapa-container {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 3rem;
        max-width: 1100px;
        margin: 0 auto;
        align-items: center;
      }
      .mapa-wrap {
        position: relative;
      }
      .brazil-map {
        width: 100%;
        max-width: 520px;
        display: block;
        margin: 0 auto;
      }
      .brazil-bg-glow {
        fill: rgba(91, 30, 140, 0.35);
      }
      .brazil-shape {
        fill: rgba(45, 10, 78, 0.25);
        stroke: rgba(192, 132, 252, 0.5);
        stroke-width: 1.2;
      }
      .conn-line {
        stroke: rgba(192, 132, 252, 0.2);
        stroke-width: 1;
        stroke-dasharray: 3 4;
        animation: dash-flow 3s linear infinite;
      }
      @keyframes dash-flow {
        to {
          stroke-dashoffset: -28;
        }
      }
      .pulse-city {
        animation: pulse-ring 2.5s ease-out infinite;
        transform-origin: center;
      }
      .pulse-matriz {
        animation: pulse-ring 2s ease-out infinite;
        transform-origin: center;
      }
      @keyframes pulse-ring {
        0% {
          opacity: 1;
          r: 4;
        }
        70% {
          opacity: 0;
          r: 14;
        }
        100% {
          opacity: 0;
          r: 4;
        }
      }
      .city-dot {
        cursor: pointer;
        transition: opacity 0.2s;
      }
      .city-dot:hover {
        opacity: 0.85;
      }
      .map-legend {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        margin-top: 1.2rem;
      }
      .legend-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        color: rgba(250, 250, 248, 0.5);
      }
      .legend-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
      }
      .legend-dot.gold {
        background: var(--gold);
      }
      .legend-dot.purple {
        background: var(--purple-light);
      }

      /* CITY LIST */
      .cidades-list {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        max-height: 480px;
        overflow-y: auto;
        padding-right: 0.5rem;
      }
      .cidades-list::-webkit-scrollbar {
        width: 3px;
      }
      .cidades-list::-webkit-scrollbar-track {
        background: transparent;
      }
      .cidades-list::-webkit-scrollbar-thumb {
        background: rgba(192, 132, 252, 0.3);
        border-radius: 2px;
      }

      .cidade-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.85rem 1.1rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(192, 132, 252, 0.1);
        border-radius: 0.75rem;
        transition:
          border-color 0.25s,
          background 0.25s,
          transform 0.25s;
        cursor: default;
      }
      .cidade-item:hover {
        border-color: rgba(192, 132, 252, 0.35);
        background: rgba(91, 30, 140, 0.15);
        transform: translateX(4px);
      }
      .cidade-item.matriz-item {
        border-color: rgba(240, 192, 96, 0.35);
        background: rgba(240, 192, 96, 0.05);
      }
      .cidade-item.sua-cidade {
        border-style: dashed;
        border-color: rgba(192, 132, 252, 0.25);
      }
      .cidade-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--purple-light);
        flex-shrink: 0;
        box-shadow: 0 0 6px rgba(192, 132, 252, 0.6);
      }
      .gold-dot {
        background: var(--gold);
        box-shadow: 0 0 8px rgba(240, 192, 96, 0.7);
      }
      .dashed-dot {
        background: transparent;
        border: 2px dashed rgba(192, 132, 252, 0.4);
        box-shadow: none;
      }
      .cidade-item strong {
        display: block;
        font-size: 0.88rem;
        color: var(--white);
        font-weight: 500;
      }
      .cidade-item.matriz-item strong {
        color: var(--gold);
      }
      .cidade-item span {
        font-size: 0.75rem;
        color: rgba(250, 250, 248, 0.4);
      }
      .cidade-item.sua-cidade strong {
        color: var(--purple-light);
      }

      @media (max-width: 900px) {
        .mapa-container {
          grid-template-columns: 1fr;
        }
        .cidades-list {
          max-height: none;
          display: grid;
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 500px) {
        .cidades-list {
          grid-template-columns: 1fr;
        }
      }

      /* CARD ILLUSTRATIONS */
      .card-illustration {
        width: 90px;
        height: 90px;
        margin: 0 auto 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(192, 132, 252, 0.05);
        border-radius: 50%;
        border: 1px solid rgba(192, 132, 252, 0.1);
      }
      .card-svg-illo {
        width: 64px;
        height: 64px;
      }
      .bottom-illo {
        width: 140px;
        height: 90px;
        border-radius: 1rem;
        flex-shrink: 0;
      }
      .bottom-svg {
        width: 120px;
        height: 72px;
      }
      .bottom-card {
        flex-direction: row !important;
        text-align: left !important;
        gap: 1.5rem;
        align-items: center;
      }
      .bottom-card-text h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 0.5rem;
      }
      .bottom-card-text p {
        font-size: 0.85rem;
        line-height: 1.7;
        color: rgba(250, 250, 248, 0.55);
      }
      .bottom-card-text .servico-tag {
        margin-top: 1rem;
        display: inline-block;
      }
      .uni-card-num {
        display: none;
      }
      .uni-card-icon {
        display: none;
      }

      @media (max-width: 900px) {
        .bottom-card {
          flex-direction: column !important;
          text-align: center !important;
        }
        .card-illustration {
          margin: 0 auto 1rem;
        }
      }

      /* CAR UNIVERSE */
      .car-universe {
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 420px 1fr;
        grid-template-rows: auto auto;
        gap: 0;
        align-items: center;
      }

      /* Center car scene */
      .car-center-scene {
        position: relative;
        height: 220px;
        grid-column: 2;
        grid-row: 1;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .orbit-ring {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(192, 132, 252, 0.08);
        animation: orbit-pulse 4s ease-in-out infinite;
      }
      .ring1 {
        width: 320px;
        height: 120px;
        animation-delay: 0s;
      }
      .ring2 {
        width: 420px;
        height: 160px;
        animation-delay: 1s;
        opacity: 0.5;
      }
      @keyframes orbit-pulse {
        0%,
        100% {
          transform: scaleX(1);
          opacity: 0.5;
        }
        50% {
          transform: scaleX(1.03);
          opacity: 1;
        }
      }

      .road-strip {
        position: absolute;
        bottom: 28px;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(192, 132, 252, 0.2),
          transparent
        );
      }
      .road-dashes {
        position: absolute;
        top: 8px;
        left: 0;
        right: 0;
        height: 2px;
        background: repeating-linear-gradient(
          90deg,
          transparent 0px,
          transparent 12px,
          rgba(192, 132, 252, 0.15) 12px,
          rgba(192, 132, 252, 0.15) 28px
        );
        animation: dash-move 0.6s linear infinite;
      }
      @keyframes dash-move {
        from {
          background-position: 0 0;
        }
        to {
          background-position: -40px 0;
        }
      }

      .speed-particles {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
      }
      .sp {
        position: absolute;
        height: 1.5px;
        border-radius: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(192, 132, 252, 0.5),
          transparent
        );
        animation: speed-fly2 1.2s linear infinite;
      }
      .sp1 {
        width: 70px;
        top: 38%;
        left: 8%;
        animation-delay: 0s;
        animation-duration: 1s;
      }
      .sp2 {
        width: 45px;
        top: 52%;
        left: 12%;
        animation-delay: 0.3s;
        animation-duration: 0.8s;
      }
      .sp3 {
        width: 90px;
        top: 44%;
        left: 3%;
        animation-delay: 0.6s;
        animation-duration: 1.2s;
      }
      .sp4 {
        width: 55px;
        top: 62%;
        left: 6%;
        animation-delay: 0.15s;
        animation-duration: 0.9s;
      }
      .sp5 {
        width: 38px;
        top: 30%;
        left: 15%;
        animation-delay: 0.5s;
        animation-duration: 0.7s;
      }
      .sp6 {
        width: 80px;
        top: 56%;
        left: 1%;
        animation-delay: 0.8s;
        animation-duration: 1.3s;
      }
      @keyframes speed-fly2 {
        0% {
          transform: translateX(0);
          opacity: 0;
        }
        15% {
          opacity: 1;
        }
        85% {
          opacity: 1;
        }
        100% {
          transform: translateX(-180px);
          opacity: 0;
        }
      }

      .car-wrap {
        position: relative;
        width: 340px;
        animation: car-float2 3s ease-in-out infinite;
        z-index: 2;
      }
      .car-svg {
        width: 100%;
        display: block;
      }
      @keyframes car-float2 {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-6px);
        }
      }
      .car-svg .spoke2 {
        transform-box: fill-box;
        transform-origin: center;
        animation: spoke-spin2 0.7s linear infinite;
      }
      @keyframes spoke-spin2 {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

      /* Side cards */
      .uni-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(192, 132, 252, 0.15);
        border-radius: 1.2rem;
        padding: 2rem;
        position: relative;
        transition:
          border-color 0.3s,
          transform 0.3s,
          box-shadow 0.3s;
      }
      .uni-card:hover {
        border-color: rgba(192, 132, 252, 0.4);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(91, 30, 140, 0.3);
      }
      .left-card {
        grid-column: 1;
        grid-row: 1;
        margin-right: -1rem;
        z-index: 1;
      }
      .right-card {
        grid-column: 3;
        grid-row: 1;
        margin-left: -1rem;
        z-index: 1;
      }
      .bottom-card {
        grid-column: 2;
        grid-row: 2;
        margin-top: -0.5rem;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        text-align: left;
      }
      .bottom-card .uni-card-icon {
        font-size: 2.5rem;
        flex-shrink: 0;
      }
      .bottom-card h3 {
        margin-bottom: 0.3rem;
      }

      /* Connectors - lines from card to car */
      .uni-connector {
        position: absolute;
        top: 50%;
        height: 1px;
        width: 1.2rem;
        background: linear-gradient(
          90deg,
          rgba(192, 132, 252, 0.4),
          transparent
        );
      }
      .left-connector {
        right: -1.2rem;
      }
      .right-connector {
        left: -1.2rem;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(192, 132, 252, 0.4)
        );
      }

      .uni-card-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 3rem;
        font-weight: 700;
        color: rgba(192, 132, 252, 0.1);
        line-height: 1;
        margin-bottom: 0.5rem;
      }
      .uni-card-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
      }
      .uni-card h3 {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 0.6rem;
      }
      .uni-card p {
        font-size: 0.85rem;
        line-height: 1.7;
        color: rgba(250, 250, 248, 0.55);
      }
      .uni-card .servico-tag {
        margin-top: 1.2rem;
        display: inline-block;
      }

      /* Before/after pseudo lines connecting cards to car */
      .left-card::after {
        content: "";
        position: absolute;
        right: -2rem;
        top: 50%;
        width: 2rem;
        height: 1px;
        background: linear-gradient(
          90deg,
          rgba(192, 132, 252, 0.3),
          transparent
        );
      }
      .right-card::before {
        content: "";
        position: absolute;
        left: -2rem;
        top: 50%;
        width: 2rem;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(192, 132, 252, 0.3)
        );
      }

      @media (max-width: 900px) {
        .car-universe {
          grid-template-columns: 1fr;
          grid-template-rows: auto;
          gap: 1.5rem;
        }
        .left-card,
        .right-card,
        .bottom-card {
          grid-column: 1;
          grid-row: auto;
          margin: 0;
        }
        .car-center-scene {
          grid-column: 1;
        }
        .uni-connector,
        .left-card::after,
        .right-card::before {
          display: none;
        }
        .bottom-card {
          flex-direction: column;
          text-align: center;
        }
      }

      /* CAR SCENE */
      .car-scene {
        position: relative;
        overflow: hidden;
        height: 160px;
        margin-bottom: 1rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
      }

      /* Road */
      .road-container {
        position: absolute;
        bottom: 18px;
        left: 0;
        right: 0;
        height: 3px;
      }
      .road-line {
        position: absolute;
        height: 2px;
        left: 0;
        right: 0;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(192, 132, 252, 0.15) 10%,
          rgba(192, 132, 252, 0.15) 90%,
          transparent 100%
        );
      }
      .road-line:first-child {
        top: 0;
      }
      .road-line:last-child {
        top: 6px;
      }
      .road-glow {
        position: absolute;
        top: -4px;
        left: 0;
        right: 0;
        height: 14px;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(139, 63, 202, 0.08) 20%,
          rgba(139, 63, 202, 0.08) 80%,
          transparent 100%
        );
      }

      /* Speed particles */
      .speed-particles {
        position: absolute;
        inset: 0;
        pointer-events: none;
      }
      .sp {
        position: absolute;
        height: 1.5px;
        border-radius: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(192, 132, 252, 0.6),
          transparent
        );
        animation: speed-fly 1.2s linear infinite;
      }
      .sp1 {
        width: 80px;
        top: 35%;
        left: 5%;
        animation-delay: 0s;
        animation-duration: 1.1s;
      }
      .sp2 {
        width: 55px;
        top: 50%;
        left: 10%;
        animation-delay: 0.3s;
        animation-duration: 0.9s;
      }
      .sp3 {
        width: 100px;
        top: 42%;
        left: 2%;
        animation-delay: 0.6s;
        animation-duration: 1.3s;
      }
      .sp4 {
        width: 65px;
        top: 60%;
        left: 8%;
        animation-delay: 0.15s;
        animation-duration: 1s;
      }
      .sp5 {
        width: 45px;
        top: 28%;
        left: 15%;
        animation-delay: 0.5s;
        animation-duration: 0.8s;
      }
      .sp6 {
        width: 90px;
        top: 55%;
        left: 3%;
        animation-delay: 0.8s;
        animation-duration: 1.4s;
      }

      @keyframes speed-fly {
        0% {
          transform: translateX(0) scaleX(1);
          opacity: 0;
        }
        20% {
          opacity: 1;
        }
        80% {
          opacity: 1;
        }
        100% {
          transform: translateX(-220px) scaleX(0.3);
          opacity: 0;
        }
      }

      /* Car */
      .car-wrap {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 320px;
        animation: car-float 3s ease-in-out infinite;
      }
      .car-svg {
        width: 100%;
        display: block;
      }

      @keyframes car-float {
        0%,
        100% {
          transform: translate(-50%, -50%) translateY(0px);
        }
        50% {
          transform: translate(-50%, -50%) translateY(-5px);
        }
      }

      /* Spoke spin via CSS */
      .car-svg .spoke {
        transform-box: fill-box;
        transform-origin: center;
        animation: spoke-spin 0.8s linear infinite;
      }
      @keyframes spoke-spin {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

      /* SPLIT SECTIONS */
      .servico-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
      }
      .servico-split.reverse {
        direction: rtl;
      }
      .servico-split.reverse > * {
        direction: ltr;
      }
      .split-image {
        position: relative;
        border-radius: 1.2rem;
        overflow: hidden;
        background: linear-gradient(
          135deg,
          rgba(45, 10, 78, 0.3),
          rgba(91, 30, 140, 0.2)
        );
        box-shadow:
          0 20px 60px rgba(139, 63, 202, 0.25),
          inset 0 1px 0 rgba(192, 132, 252, 0.1);
        border: 1px solid rgba(192, 132, 252, 0.15);
      }
      .split-image::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 1.2rem;
        padding: 2px;
        background: linear-gradient(
          135deg,
          rgba(192, 132, 252, 0.3),
          rgba(139, 63, 202, 0.1)
        );
        -webkit-mask:
          linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        -webkit-mask-composite: destination-out;
        opacity: 0.6;
        pointer-events: none;
      }
      .split-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
        filter: brightness(1.05) contrast(1.05);
        transition:
          transform 0.4s ease,
          filter 0.4s ease;
      }
      .split-image:hover img {
        transform: scale(1.05);
        filter: brightness(1.1) contrast(1.1);
      }
      .split-tag {
        position: absolute;
        top: 1.2rem;
        left: 1.2rem;
        padding: 0.35rem 1rem;
        border-radius: 2rem;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }
      .kids-tag {
        background: var(--purple-mid);
        color: var(--white);
      }
      .care-tag {
        background: #0891b2;
        color: var(--white);
      }
      .split-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 700;
        line-height: 1.1;
        color: var(--white);
        margin: 0.6rem 0 1.2rem;
      }
      .split-title em {
        color: var(--purple-light);
        font-style: normal;
      }
      .split-text p {
        font-size: 0.95rem;
        line-height: 1.8;
        color: rgba(250, 250, 248, 0.65);
        margin-bottom: 0.8rem;
      }
      .split-highlight {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-top: 1.5rem;
      }
      .split-highlight span {
        background: rgba(192, 132, 252, 0.08);
        border: 1px solid rgba(192, 132, 252, 0.2);
        padding: 0.35rem 0.9rem;
        border-radius: 2rem;
        font-size: 0.78rem;
        color: var(--purple-light);
      }
      @media (max-width: 900px) {
        .servico-split,
        .servico-split.reverse {
          grid-template-columns: 1fr;
          gap: 2rem;
          direction: ltr;
        }
        .split-image img {
          height: 280px;
        }
      }

      /* IMAGE CARDS */
      .img-card {
        padding: 0 !important;
        overflow: hidden;
      }
      .img-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
      }
      .img-card-label {
        padding: 1.2rem 1.5rem;
      }
      .img-card-tag {
        display: inline-block;
        margin-bottom: 0.5rem;
        padding: 0.2rem 0.8rem;
        border-radius: 2rem;
        background: rgba(192, 132, 252, 0.15);
        border: 1px solid rgba(192, 132, 252, 0.3);
        font-size: 0.72rem;
        color: var(--purple-light);
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }
      .img-card-label p {
        font-size: 0.88rem;
        color: rgba(250, 250, 248, 0.65);
        line-height: 1.5;
      }

      /* CIDADES */
      .cidades {
        background: linear-gradient(
          160deg,
          rgba(45, 10, 78, 0.35) 0%,
          rgba(13, 1, 18, 1) 60%
        );
        border-top: 1px solid rgba(192, 132, 252, 0.15);
      }
      .cidades-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 4rem;
      }
      .cidades-header p {
        margin-top: 1rem;
        font-size: 1rem;
        color: rgba(250, 250, 248, 0.6);
        line-height: 1.7;
      }
      .matriz-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: rgba(240, 192, 96, 0.1);
        border: 1px solid rgba(240, 192, 96, 0.35);
        padding: 0.6rem 1.4rem;
        border-radius: 2rem;
        font-size: 0.82rem;
        color: var(--gold);
        margin-bottom: 3rem;
        text-align: center;
      }
      .cidades-grid {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
      }
      .cidade-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(192, 132, 252, 0.12);
        border-radius: 0.9rem;
        padding: 1.2rem 1rem;
        text-align: center;
        transition:
          border-color 0.3s,
          transform 0.3s,
          background 0.3s;
      }
      .cidade-card:hover {
        border-color: rgba(192, 132, 252, 0.4);
        background: rgba(91, 30, 140, 0.15);
        transform: translateY(-3px);
      }
      .cidade-card .cidade-icon {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
      }
      .cidade-card strong {
        display: block;
        font-size: 0.9rem;
        color: var(--white);
        margin-bottom: 0.2rem;
      }
      .cidade-card span {
        font-size: 0.75rem;
        color: rgba(250, 250, 248, 0.4);
      }
      .cidade-card.matriz {
        border-color: rgba(240, 192, 96, 0.4);
        background: rgba(240, 192, 96, 0.06);
      }
      .cidade-card.matriz strong {
        color: var(--gold);
      }
      .cidades-cta {
        text-align: center;
        margin-top: 3.5rem;
      }
      .cidades-cta p {
        font-size: 1rem;
        color: rgba(250, 250, 248, 0.6);
        margin-bottom: 1.5rem;
      }

/* ── NEXUS SECTION ── */
.nexus-section {
        position: relative;
        overflow: hidden;
        padding: 7rem 5vw;
        background: var(--black);
        border-top: 1px solid rgba(192, 132, 252, 0.12);
        border-bottom: 1px solid rgba(192, 132, 252, 0.12);
      }
      .nexus-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 70% 60% at 50% 50%,
            rgba(91, 30, 140, 0.25) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 40% 40% at 10% 20%,
            rgba(45, 10, 78, 0.4) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse 35% 35% at 90% 80%,
            rgba(139, 63, 202, 0.15) 0%,
            transparent 60%
          );
        pointer-events: none;
      }
      .nexus-grid-bg {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(192, 132, 252, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(192, 132, 252, 0.04) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
      }
      .nexus-inner {
        position: relative;
        z-index: 2;
        max-width: 1100px;
        margin: 0 auto;
      }
      .nexus-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        margin-bottom: 0;
      }
      .nexus-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(240, 192, 96, 0.1);
        border: 1px solid rgba(240, 192, 96, 0.35);
        padding: 0.45rem 1.1rem;
        border-radius: 2rem;
        font-size: 0.75rem;
        color: var(--gold);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 1.6rem;
      }
      .nexus-badge svg {
        width: 14px;
        height: 14px;
      }
      .nexus-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 700;
        line-height: 1.1;
        color: var(--white);
        margin-bottom: 1.4rem;
      }
      .nexus-title em {
        color: var(--purple-light);
        font-style: normal;
      }
      .nexus-desc {
        font-size: 1rem;
        line-height: 1.85;
        color: rgba(250, 250, 248, 0.6);
        max-width: 460px;
      }
      .nexus-cta {
        margin-top: 2rem;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        color: var(--purple-light);
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-decoration: none;
        border-bottom: 1px solid rgba(192, 132, 252, 0.3);
        padding-bottom: 2px;
        transition:
          color 0.3s,
          border-color 0.3s;
      }
      .nexus-cta:hover {
        color: var(--white);
        border-color: var(--white);
      }

      /* Visual lado direito */
      .nexus-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 300px;
      }
      .nexus-orb {
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: radial-gradient(
          circle at 35% 35%,
          rgba(139, 63, 202, 0.5),
          rgba(45, 10, 78, 0.2)
        );
        border: 1px solid rgba(192, 132, 252, 0.2);
        animation: nexus-pulse 4s ease-in-out infinite;
      }
      .nexus-orb::after {
        content: "";
        position: absolute;
        inset: 20px;
        border-radius: 50%;
        border: 1px dashed rgba(192, 132, 252, 0.2);
        animation: spin-slow 20s linear infinite;
      }
      @keyframes nexus-pulse {
        0%,
        100% {
          box-shadow:
            0 0 40px rgba(139, 63, 202, 0.25),
            0 0 80px rgba(91, 30, 140, 0.1);
        }
        50% {
          box-shadow:
            0 0 70px rgba(139, 63, 202, 0.45),
            0 0 120px rgba(91, 30, 140, 0.2);
        }
      }
      @keyframes spin-slow {
        to {
          transform: rotate(360deg);
        }
      }

      .nexus-orb-label {
        position: relative;
        z-index: 2;
        text-align: center;
      }
      .nexus-orb-label .orb-icon {
        font-size: 2.8rem;
        display: block;
        margin-bottom: 0.4rem;
        filter: drop-shadow(0 0 12px rgba(192, 132, 252, 0.6));
      }
      .nexus-orb-label span {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--white);
        letter-spacing: 0.08em;
      }
      .nexus-orb-label small {
        display: block;
        font-size: 0.72rem;
        color: rgba(192, 132, 252, 0.7);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin-top: 0.2rem;
      }

      /* Partícula orbitando */
      .nexus-dot {
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold);
        animation: nexus-orbit 6s linear infinite;
        box-shadow: 0 0 10px rgba(240, 192, 96, 0.6);
      }
      .nexus-dot:nth-child(2) {
        width: 5px;
        height: 5px;
        background: var(--purple-light);
        animation-duration: 9s;
        animation-delay: -3s;
        box-shadow: 0 0 8px rgba(192, 132, 252, 0.6);
      }
      @keyframes nexus-orbit {
        0% {
          transform: rotate(0deg) translateX(130px) rotate(0deg);
        }
        100% {
          transform: rotate(360deg) translateX(130px) rotate(-360deg);
        }
      }

      /* Métricas */
      .nexus-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        border-top: 1px solid rgba(192, 132, 252, 0.1);
        padding-top: 3.5rem;
      }
      .nexus-metric {
        position: relative;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(192, 132, 252, 0.12);
        border-radius: 1.2rem;
        overflow: hidden;
        transition:
          border-color 0.3s,
          transform 0.3s;
      }
      .nexus-metric:hover {
        border-color: rgba(192, 132, 252, 0.35);
        transform: translateY(-3px);
      }
      .nexus-metric::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--purple-bright), var(--lilac));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s;
      }
      .nexus-metric:hover::before {
        transform: scaleX(1);
      }
      .metric-icon {
        width: 42px;
        height: 42px;
        border-radius: 0.8rem;
        background: rgba(192, 132, 252, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.2rem;
        font-size: 1.3rem;
      }
      .metric-value {
        font-family: "Cormorant Garamond", serif;
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1;
        margin-bottom: 0.4rem;
      }
      .metric-value span {
        color: var(--purple-light);
      }
      .metric-label {
        font-size: 0.82rem;
        color: rgba(250, 250, 248, 0.5);
        letter-spacing: 0.05em;
        line-height: 1.5;
      }

      @media (max-width: 900px) {
        .nexus-top {
          grid-template-columns: 1fr;
          gap: 3rem;
        }
        .nexus-visual {
          height: 220px;
        }
        .nexus-metrics {
          grid-template-columns: 1fr;
        }
      }
      .pet-tag {
  background: #7e22ce;
  color: var(--white);
}

.pet-badge-novo {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  background: rgba(240, 192, 96, 0.15);
  border: 1px solid rgba(240, 192, 96, 0.5);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
/* ── PET IMAGE ANIMATION ── */
.pet-split-image {
  position: relative;
  border-radius: 1.2rem;
  overflow: visible !important;
}

.pet-split-image img {
  width: 75%;
  margin: 0 auto;
  display: block;
  border-radius: 1.2rem;
  height: 380px;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.05);
  animation: pet-float 5s ease-in-out infinite;
  transition: transform 0.4s ease, filter 0.4s ease;
  box-shadow: 0 0 0 0 rgba(192, 132, 252, 0);
}

.pet-split-image:hover img {
  filter: brightness(1.12) contrast(1.08);
  box-shadow: 0 20px 60px rgba(139, 63, 202, 0.5);
}

@keyframes pet-float {
  0%, 100% { transform: translateY(0px) rotate(-0.5deg); }
  50%       { transform: translateY(-10px) rotate(0.5deg); }
}

/* Anel de brilho pulsante */
.pet-glow-ring {
  position: absolute;
  inset: -8px;
  border-radius: 1.4rem;
  border: 1px solid rgba(192, 132, 252, 0.3);
  animation: ring-breathe 3s ease-in-out infinite;
  pointer-events: none;
  left: 12.5%;
  width: 75%;
}
.pet-glow-ring:nth-child(2) {
  inset: -16px;
  border-color: rgba(192, 132, 252, 0.15);
  animation-delay: 0.6s;
}
.pet-glow-ring:nth-child(3) {
  inset: -26px;
  border-color: rgba(192, 132, 252, 0.07);
  animation-delay: 1.2s;
}

@keyframes ring-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.015); }
}

/* Partículas de pata flutuando */
.pet-paw {
  position: absolute;
  font-size: 1.1rem;
  opacity: 0;
  animation: paw-float 6s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(192, 132, 252, 0.8));
  z-index: 10;
}
.pet-paw:nth-child(4)  { top: 10%;  left: -5%;  animation-delay: 0s;   font-size: 1.3rem; }
.pet-paw:nth-child(5)  { top: 30%;  left: 105%; animation-delay: 1.2s; font-size: 0.9rem; }
.pet-paw:nth-child(6)  { top: 65%;  left: -8%;  animation-delay: 2.4s; font-size: 1rem;   }
.pet-paw:nth-child(7)  { top: 80%;  left: 100%; animation-delay: 0.8s; font-size: 1.2rem; }
.pet-paw:nth-child(8)  { top: 5%;   left: 90%;  animation-delay: 3.5s; font-size: 0.85rem;}
.pet-paw:nth-child(9)  { top: 50%;  left: -4%;  animation-delay: 1.8s; font-size: 1rem;   }

@keyframes paw-float {
  0%   { opacity: 0;   transform: translateY(10px) rotate(-15deg) scale(0.8); }
  20%  { opacity: 0.8; }
  50%  { opacity: 0.6; transform: translateY(-18px) rotate(10deg) scale(1.1); }
  80%  { opacity: 0.8; }
  100% { opacity: 0;   transform: translateY(10px) rotate(-15deg) scale(0.8); }
}

/* Faísca dourada */
.pet-spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(240, 192, 96, 0.8);
  animation: spark-orbit 8s linear infinite;
  pointer-events: none;
  left: 12.5%;
}
.pet-spark:nth-child(10) { animation-duration: 8s;  animation-delay: 0s; }
.pet-spark:nth-child(11) { animation-duration: 11s; animation-delay: -4s; width: 3px; height: 3px; background: var(--purple-light); box-shadow: 0 0 8px rgba(192,132,252,0.8); }

@keyframes spark-orbit {
  0%   { transform: rotate(0deg)   translateX(160px) rotate(0deg);   opacity: 1; }
  50%  { opacity: 0.4; }
  100% { transform: rotate(360deg) translateX(160px) rotate(-360deg); opacity: 1; }
}