 :root {
      --gold: #C9A96E;
      --gold-light: #E0C992;
      --gold-dark: #A8863A;
      --black: #0A0A0A;
      --dark: #111111;
      --dark-card: #161616;
      --dark-surface: #1A1A1A;
      --white: #F5F0EB;
      --gray: #8A8A8A;
      --gray-light: #B0B0B0;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Preloader ── */
    .preloader {
      position: fixed;
      inset: 0;
      background: var(--black);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 30px;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .preloader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .preloader-logo {
      display: flex;
      align-items: center;
      gap: 20px;
      opacity: 0;
      animation: fadeUp 1s ease forwards 0.3s;
    }

    .preloader-logo img {
      height: 40px;
      width: auto;
      object-fit: contain;
    }

    .preloader-line {
      width: 80px;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      animation: lineGrow 1.5s ease forwards 0.6s;
    }

    @keyframes lineGrow {
      to { transform: scaleX(1); }
    }

    /* ── Navigation ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.5s ease;
      background: transparent;
    }

    nav.scrolled {
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(20px);
      padding: 14px 60px;
      border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .nav-brand-tag {
      height: 28px;
      width: auto;
      object-fit: contain;
    }

    .nav-brand-separator {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: bold;
      color: #fff !important; 
      font-style: italic;
      opacity: 0.6;
    }

    .nav-brand-marcio {
      height: 22px;
      width: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      color: var(--gray-light);
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.4s ease;
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 10px 28px;
      border: 1px solid var(--gold);
      color: var(--gold) !important;
      font-size: 0.7rem !important;
      letter-spacing: 0.3em !important;
      transition: all 0.4s ease !important;
    }

    .nav-cta:hover {
      background: var(--gold);
      color: var(--black) !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    /* ── Mobile Menu ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
    }

    .nav-hamburger span {
      width: 24px;
      height: 1.5px;
      background: var(--white);
      transition: all 0.3s ease;
    }

    .nav-hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(4px, 4px);
    }

    .nav-hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ── Hero ── */
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-video-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.3) 40%, rgba(10, 10, 10, 0.6) 80%, rgba(10, 10, 10, 0.95) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(10, 10, 10, 0.4) 100%);
      z-index: 1;
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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: 256px 256px;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      text-align: center;
      z-index: 3;
      max-width: 900px;
      padding: 0 40px;
    }

    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeUp 1s ease forwards 1.2s;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 6.5rem);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeUp 1s ease forwards 1.4s;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-subtitle {
      font-size: 1rem;
      font-weight: 300;
      color: var(--gray-light);
      line-height: 1.8;
      max-width: 520px;
      margin: 0 auto 50px;
      opacity: 0;
      animation: fadeUp 1s ease forwards 1.6s;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 1s ease forwards 1.8s;
    }

    .btn-primary {
      padding: 16px 48px;
      background: var(--gold);
      color: var(--black);
      font-family: 'Outfit', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: all 0.4s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 15px 40px rgba(201, 169, 110, 0.2);
    }

    .btn-secondary {
      padding: 16px 48px;
      background: transparent;
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      border: 1px solid rgba(245, 240, 235, 0.2);
      cursor: pointer;
      transition: all 0.4s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: fadeUp 1s ease forwards 2.2s;
      z-index: 3;
    }

    .hero-scroll span {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray);
    }

    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 1; transform: scaleY(1); }
      50% { opacity: 0.3; transform: scaleY(0.6); }
    }

    /* ── Featured Watch ── */
    .featured {
      padding: 140px 60px;
      position: relative;
    }

    .featured-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
    }

    .featured-image {
      position: relative;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .featured-image-ring {
      position: absolute;
      width: 85%;
      height: 85%;
      border: 1px solid rgba(201, 169, 110, 0.15);
      border-radius: 50%;
      animation: ringRotate 30s linear infinite;
    }

    .featured-image-ring::before {
      content: '';
      position: absolute;
      top: -3px;
      left: 50%;
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }

    @keyframes ringRotate {
      to { transform: rotate(360deg); }
    }

    .featured-image img {
      width: 70%;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
      transition: transform 0.6s ease;
    }

    .featured-image:hover img {
      transform: scale(1.05) rotate(-2deg);
    }

    .featured-info {
      padding-right: 40px;
    }

    .section-eyebrow {
      font-size: 0.65rem;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .section-eyebrow::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 25px;
    }

    .section-text {
      color: var(--gray);
      font-weight: 300;
      line-height: 1.9;
      font-size: 0.95rem;
      margin-bottom: 35px;
    }

    .specs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      margin-bottom: 40px;
    }

    .spec-item {
      padding: 20px 0;
      border-top: 1px solid rgba(245, 240, 235, 0.08);
    }

    .spec-label {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 6px;
    }

    .spec-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--gold-light);
    }

    /* ── Collection ── */
    .collection {
      padding: 120px 60px;
      background: var(--dark);
      position: relative;
    }

    .collection::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0.3;
    }

    .collection-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 80px;
    }

    .collection-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .watch-card {
      background: var(--dark-card);
      border: 1px solid rgba(245, 240, 235, 0.04);
      padding: 45px 30px 35px;
      text-align: center;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.5s ease;
      text-decoration: none;
      color: var(--white);
      display: block;
    }

    .watch-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform 0.5s ease;
    }

    .watch-card:hover {
      border-color: rgba(201, 169, 110, 0.15);
      transform: translateY(-8px);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    }

    .watch-card:hover::before {
      transform: scaleX(1);
    }

    .watch-card img {
      width: 200px;
      height: 200px;
      object-fit: contain;
      margin-bottom: 28px;
      transition: transform 0.6s ease;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    }

    .watch-card:hover img {
      transform: scale(1.08);
    }

    .watch-card-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 12px;
    }

    .watch-card-desc {
      font-size: 0.8rem;
      color: var(--gray);
      font-weight: 300;
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .watch-card-link {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s ease;
    }

    .watch-card:hover .watch-card-link {
      gap: 14px;
    }

    .watch-card-link svg {
      width: 14px;
      height: 14px;
      stroke: var(--gold);
      stroke-width: 2;
      fill: none;
    }

    /* ── Parallax Banner ── */
    .banner {
      height: 60vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .banner-bg {
      position: absolute;
      inset: 0%;
      background: url('imagens/banner-home.jpeg') center/cover no-repeat;
    }

    .banner-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.72) 50%, rgba(10, 10, 10, 0.88) 100%);
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      padding: 0 40px;
    }

    .banner-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.4;
      margin-bottom: 25px;
    }

    .banner-quote span {
      color: var(--gold);
    }

    .banner-author {
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gray);
    }

    /* ── Heritage ── */
    .heritage {
      padding: 140px 60px;
      position: relative;
    }

    .heritage-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 60px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .heritage-stat {
      text-align: center;
      padding: 50px 30px;
      border: 1px solid rgba(245, 240, 235, 0.05);
      position: relative;
      transition: all 0.4s ease;
    }

    .heritage-stat:hover {
      border-color: rgba(201, 169, 110, 0.2);
      background: rgba(201, 169, 110, 0.02);
    }

    .heritage-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 10px;
    }

    .heritage-label {
      font-size: 0.7rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 18px;
    }

    .heritage-desc {
      font-size: 0.85rem;
      color: var(--gray);
      font-weight: 300;
      line-height: 1.7;
    }

    /* ── Newsletter ── */
    .newsletter {
      padding: 120px 60px;
      background: var(--dark);
      position: relative;
    }

    .newsletter::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0.3;
    }

    .newsletter-inner {
      max-width: 650px;
      margin: 0 auto;
      text-align: center;
    }

    .newsletter-form {
      display: flex;
      gap: 0;
      margin-top: 40px;
    }

    .newsletter-form input {
      flex: 1;
      padding: 18px 25px;
      background: rgba(245, 240, 235, 0.05);
      border: 1px solid rgba(245, 240, 235, 0.1);
      border-right: none;
      color: var(--white);
      font-family: 'Outfit', sans-serif;
      font-size: 0.85rem;
      outline: none;
      transition: border-color 0.3s;
    }

    .newsletter-form input::placeholder {
      color: var(--gray);
      letter-spacing: 0.05em;
    }

    .newsletter-form input:focus {
      border-color: var(--gold);
    }

    .newsletter-form button {
      padding: 18px 40px;
      background: var(--gold);
      color: var(--black);
      font-family: 'Outfit', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      border: 1px solid var(--gold);
      cursor: pointer;
      transition: all 0.4s ease;
      white-space: nowrap;
    }

    .newsletter-form button:hover {
      background: var(--gold-light);
    }

    /* ── Footer ── */
    footer {
      padding: 80px 60px 40px;
      border-top: 1px solid rgba(245, 240, 235, 0.05);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      max-width: 1300px;
      margin: 0 auto 60px;
    }

    .footer-brand {
      padding-right: 40px;
    }

    .footer-brand-logos {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }

    .footer-brand-logos img:first-child {
      height: 24px;
      width: auto;
    }

    .footer-brand-logos span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.75rem;
      color: var(--gold);
      font-style: italic;
      opacity: 0.6;
    }

    .footer-brand-logos img:last-child {
      height: 18px;
      width: auto;
      filter: brightness(0) invert(1);
    }

    .footer-desc {
      font-size: 0.85rem;
      color: var(--gray);
      font-weight: 300;
      line-height: 1.8;
    }

    .footer-col h4 {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 25px;
      font-weight: 500;
    }

    .footer-col a {
      display: block;
      color: var(--gray);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 300;
      margin-bottom: 14px;
      transition: color 0.3s;
    }

    .footer-col a:hover {
      color: var(--gold-light);
    }

    .footer-bottom {
      max-width: 1300px;
      margin: 0 auto;
      padding-top: 30px;
      border-top: 1px solid rgba(245, 240, 235, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-bottom p {
      font-size: 0.75rem;
      color: var(--gray);
      font-weight: 300;
    }

    .footer-social {
      display: flex;
      gap: 20px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border: 1px solid rgba(245, 240, 235, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray);
      text-decoration: none;
      font-size: 0.8rem;
      transition: all 0.3s;
    }

    .footer-social a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ── Animations ── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── Custom Cursor ── */
    .cursor {
      width: 20px;
      height: 20px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transition: all 0.15s ease;
      mix-blend-mode: difference;
    }

    .cursor.hover {
      width: 50px;
      height: 50px;
      background: rgba(201, 169, 110, 0.1);
    }

    /* ── Responsive ── */
    @media (max-width: 1200px) {
      .collection-cards { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 1024px) {
      nav { padding: 20px 30px; }
      .featured-grid { grid-template-columns: 1fr; gap: 60px; }
      .featured-info { padding-right: 0; }
      .heritage-grid { grid-template-columns: 1fr; gap: 30px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .featured, .collection, .heritage, .newsletter { padding: 80px 30px; }
    }

    @media (max-width: 768px) {
      .nav-links { 
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 999;
      }
      .nav-links.open { display: flex; }
      .nav-links a { font-size: 1rem; }
      .nav-hamburger { display: flex; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .collection-cards { grid-template-columns: 1fr; }
      .newsletter-form { flex-direction: column; }
      .newsletter-form input { border-right: 1px solid rgba(245, 240, 235, 0.1); }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
      .cursor { display: none; }
    }