﻿:root {
      --bg: #1a1a1a;
      --bg-alt: #111111;
      --surface: #202020;
      --surface-2: #262626;
      --text: #f3f3f3;
      --muted: #b9b9b9;
      --primary: #d4af37;
      --primary-strong: #f2cf5b;
      --border: rgba(255, 255, 255, 0.12);
      --shadow: 0 18px 40px rgba(0, 0, 0, 0.38);

      --bronze: #cd7f32;
      --ouro: #ffd700;
      --diamante: #b9f2ff;
      --vip: #6a0dad;

      --radius: 18px;
      --radius-sm: 12px;
      --container: min(1140px, 92vw);
      --header-height: 92px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.16), transparent 35%),
        radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.08), transparent 30%),
        var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: var(--container);
      margin: 0 auto;
    }

    .section {
      padding: 88px 0;
    }

    .section-title {
      font-size: clamp(1.6rem, 2.5vw, 2.4rem);
      line-height: 1.2;
      margin-bottom: 14px;
      color: var(--primary);
      letter-spacing: 0.2px;
    }

    .section-subtitle {
      color: var(--muted);
      font-size: 1rem;
      max-width: 760px;
    }

    #marcas .section-subtitle {
      max-width: none;
      white-space: nowrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 12px 20px;
      font-weight: 700;
      transition: all 0.3s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(120deg, var(--primary), #f0cf66);
      color: #1a1a1a;
      box-shadow: 0 12px 28px rgba(212, 175, 55, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(212, 175, 55, 0.36);
    }

    .btn-outline {
      border-color: rgba(212, 175, 55, 0.75);
      color: var(--primary);
      background: transparent;
    }

    .btn-outline:hover {
      background: rgba(212, 175, 55, 0.1);
      transform: translateY(-2px);
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--header-height);
      z-index: 999;
      backdrop-filter: blur(10px);
      background: linear-gradient(180deg, rgba(38, 38, 38, 0.95), rgba(24, 24, 24, 0.92));
      border-bottom: 1px solid rgba(212, 175, 55, 0.28);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    }

    .topbar .container {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

.logo {
      display: inline-flex;
      align-items: center;
      line-height: 0;
    }

    .logo img {
      height: 56px;
      width: auto;
      display: block;
      transition: transform 0.28s ease, filter 0.28s ease;
      transform-origin: center;
    }

    .logo:hover img {
      transform: scale(1.06);
      filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.32));
    }

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

    .nav a {
      font-weight: 600;
      color: #efefef;
      position: relative;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

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

    .hero {
      min-height: 96vh;
      display: grid;
      place-items: center;
      position: relative;
      margin-top: var(--header-height);
      overflow: hidden;
      background:
        radial-gradient(1200px 600px at 10% 0%, rgba(212, 175, 55, 0.16), transparent 60%),
        radial-gradient(900px 500px at 90% 100%, rgba(212, 175, 55, 0.1), transparent 65%),
        linear-gradient(125deg, #0e0e0e 0%, #191919 46%, #111111 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(
          -35deg,
          rgba(255, 255, 255, 0.03) 0px,
          rgba(255, 255, 255, 0.03) 1px,
          transparent 1px,
          transparent 14px
        );
      opacity: 0.35;
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: min(55vw, 680px);
      aspect-ratio: 1 / 1;
      right: -12%;
      top: -30%;
      border-radius: 50%;
      background:
        radial-gradient(circle at 35% 35%, rgba(255, 226, 132, 0.38), rgba(212, 175, 55, 0.16) 45%, transparent 70%);
      filter: blur(8px);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      text-align: center;
      width: var(--container);
      z-index: 1;
      animation: fadeUp 0.8s ease-out both;
      transform: translateY(-30px);
    }

    .hero-logo {
      width: min(760px, 90vw);
      height: auto;
      display: block;
      margin: -16px auto 72px;
    }

    .hero h1 {
      font-size: clamp(1.7rem, 3.95vw, 3rem);
      line-height: 1.08;
      margin-bottom: 18px;
      color: var(--primary);
      text-wrap: balance;
    }

    .hero p {
      max-width: none;
      margin: 0 auto;
      color: #dedede;
      font-size: clamp(1rem, 2vw, 1.2rem);
      white-space: nowrap;
    }

    .hero-note {
      margin-top: 26px;
      color: var(--primary);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.4px;
    }

    .services-grid,
    .brands-grid,
    .program-grid,
    .stores-grid {
      margin-top: 36px;
      display: grid;
      gap: 18px;
    }

    .services-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card,
    .brand-card,
    .program-card,
    .store-card {
      background: linear-gradient(145deg, var(--surface), var(--surface-2));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .service-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 24px;
      font-size: 1.05rem;
      font-weight: 700;
      min-height: 108px;
      color: #fafafa;
    }

    .service-card:hover,
    .brand-card:hover,
    .program-card:hover,
    .store-card:hover {
      transform: translateY(-4px);
      border-color: rgba(212, 175, 55, 0.6);
    }

    .icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(212, 175, 55, 0.14);
      color: var(--primary);
      flex-shrink: 0;
    }

    .brands-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 24px;
    }

    .brand-logo {
      width: auto;
      height: 60px;
      max-width: 190px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
      border-radius: 12px;
    }

    .brand-copy {
      flex: 1;
      min-width: 0;
    }

    .brand-card h3 {
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 1.12rem;
    }

    .brand-card p {
      color: #d7d7d7;
      font-size: 0.97rem;
    }

    .program-grid {
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    #juntos .section-title,
    #juntos .section-subtitle {
      max-width: 980px;
    }

    #juntos .section-title {
      text-wrap: balance;
      white-space: nowrap;
    }

    #juntos .section-subtitle,
    #juntos .program-list {
      text-wrap: pretty;
    }

    .program-card {
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .program-card::before {
      content: "";
      position: absolute;
      inset: 0 auto auto 0;
      width: 100%;
      height: 4px;
    }

    .program-card h3 {
      margin-bottom: 0;
      font-size: 1.2rem;
    }

    .program-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .tier-icon {
      width: 38px;
      height: 38px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      margin-bottom: 0;
      display: block;
    }

    .program-list {
      list-style: none;
      color: #e8e8e8;
      display: grid;
      gap: 8px;
      font-size: 0.95rem;
    }

    .bronze::before { background: var(--bronze); }
    .ouro::before { background: var(--ouro); }
    .diamante::before { background: var(--diamante); }
    .vip::before { background: linear-gradient(90deg, var(--vip), var(--primary)); }

    .bronze h3 { color: var(--bronze); }
    .ouro h3 { color: var(--ouro); }
    .diamante h3 { color: var(--diamante); }
    .vip h3 { color: #c784ff; }

    .program-highlight {
      margin-top: 12px;
      color: #fff;
      font-weight: 700;
    }

    .program-actions {
      margin-top: 28px;
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .stores-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-card {
      display: grid;
      grid-template-columns: 116px 1fr;
      gap: 16px;
      align-items: start;
      padding: 22px;
    }

    .store-photo {
      width: 116px;
      height: 116px;
      object-fit: contain;
      object-position: center;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(0, 0, 0, 0.28);
      display: block;
    }

    .store-info {
      min-width: 0;
    }

    .store-card h3 {
      color: var(--primary);
      margin-bottom: 8px;
      font-size: 1.05rem;
    }

    .store-card h3 a {
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .store-card h3 a:hover {
      border-bottom-color: rgba(212, 175, 55, 0.7);
    }

    .store-card p {
      color: #dddddd;
      font-size: 0.95rem;
      margin-bottom: 6px;
    }

    .store-topic {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .store-icon {
      width: 16px;
      height: 16px;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 3px;
    }

    .store-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .store-card p a {
      color: #dddddd;
      text-decoration: underline;
      text-decoration-color: rgba(212, 175, 55, 0.55);
      text-underline-offset: 3px;
      transition: color 0.2s ease, text-decoration-color 0.2s ease;
    }

    .store-card p a:hover {
      color: #ffffff;
      text-decoration-color: rgba(212, 175, 55, 0.9);
    }

    .store-card p:last-child {
      margin-bottom: 0;
    }

    .store-card strong {
      color: #f3f3f3;
      font-weight: 700;
    }

    footer {
      border-top: 1px solid rgba(212, 175, 55, 0.18);
      padding: 28px 0;
      background: #0f0f0f;
    }

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

    .footer-note {
      margin-top: 6px;
      text-align: center;
    }

    .legal-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .legal-links a {
      color: #d8d8d8;
      font-size: 0.9rem;
      text-decoration: underline;
      text-decoration-color: rgba(212, 175, 55, 0.5);
      text-underline-offset: 3px;
      transition: color 0.2s ease, text-decoration-color 0.2s ease;
    }

    .legal-links a:hover {
      color: #ffffff;
      text-decoration-color: rgba(212, 175, 55, 0.85);
    }

    .company-info {
      margin-top: 8px;
      text-align: center;
      color: #b9b9b9;
      font-size: 0.88rem;
    }

    .company-info p {
      margin: 2px 0;
    }

    .footer-note a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.72rem;
      color: #8f8f8f;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .inova-logo-wrap {
      position: relative;
      width: 18px;
      height: 18px;
      display: inline-block;
      flex-shrink: 0;
    }

    .inova-logo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .inova-logo-normal {
      opacity: 0.55;
    }

    .inova-logo-hover {
      opacity: 0;
      transform: scale(1.04);
    }

    .footer-note a:hover {
      color: #a5a5a5;
    }

    .footer-note a:hover .inova-logo-normal {
      opacity: 0;
    }

    .footer-note a:hover .inova-logo-hover {
      opacity: 0.95;
      transform: scale(1.08);
    }

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

    .socials a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-weight: 700;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
    }

    .socials a:hover {
      transform: translateY(-2px);
      background-color: rgba(212, 175, 55, 0.1);
      border-color: rgba(212, 175, 55, 0.45);
    }

    .socials a img {
      width: 22px;
      height: 22px;
      object-fit: contain;
      display: block;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 980px) {
      .topbar {
        height: auto;
        padding: 12px 0;
      }

      .topbar .container {
        flex-direction: column;
      }

      .logo img {
        height: 50px;
      }

      .hero {
        margin-top: 132px;
        min-height: calc(100vh - 132px);
      }

      .services-grid,
      .brands-grid,
      .stores-grid {
        grid-template-columns: 1fr;
      }

      .program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .legal-links {
        justify-content: center;
      }
    }

    @media (max-width: 640px) {
      .nav {
        gap: 12px;
      }

      .nav a {
        font-size: 0.94rem;
      }

      .hero {
        margin-top: 170px;
        min-height: calc(100vh - 170px);
      }

      .hero p {
        white-space: normal;
      }

      .hero-logo {
        width: min(620px, 95vw);
        margin: -6px auto 34px;
      }

      #marcas .section-subtitle {
        white-space: normal;
      }

      #juntos .section-title {
        white-space: normal;
      }

      .logo img {
        height: 44px;
      }

      .program-grid {
        grid-template-columns: 1fr;
      }

      .service-card,
      .brand-card,
      .program-card,
      .store-card {
        padding: 20px;
      }

      .store-card {
        grid-template-columns: 1fr;
      }

      .store-photo {
        width: 100%;
        max-width: 200px;
        height: 200px;
      }
    }
