@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DURRIY STUDIO - LUXURY LANDING PAGE STYLES
   Design System & Components
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Montserrat', Arial, sans-serif;

    /* Color Palette */
    --bg-dark: #07090E;
    --bg-card: rgba(14, 18, 25, 0.55);
    --gold-primary: #D4AF37;
    --gold-light: #F7E7BE;
    --gold-dark: #9A7019;
    --gold-gradient: linear-gradient(135deg, #F7E7BE 0%, #D4AF37 50%, #A3791B 100%);
    --gold-gradient-text: linear-gradient(135deg, #FFF3D1 0%, #E2C05E 40%, #B8891D 100%);
    --gold-glow: rgba(212, 175, 55, 0.4);

    --text-white: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.68);
    --text-dim: rgba(255, 255, 255, 0.45);

    /* Layout & Spacing */
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-pill: 50px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ANIME.JS REVEAL ANIMATIONS */
.hero-title span, .hero-subtitle, .hero-actions, .logo-slot-frame, .levitation-wrapper {
    will-change: transform, opacity;
}

.reveal-element {
    opacity: 0;
    transform: translateY(40px);
}

/* --------------------------------------------------------------------------
   2. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(7, 9, 14, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.site-header.scrolled {
    background: rgba(5, 7, 10, 0.92);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.header-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo - Fully Left Aligned */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
    transition: transform var(--transition-fast);
    text-decoration: none;
}

.brand-logo:hover {
    transform: translateY(-1px);
}

.navbar-brand-img {
    height: 120px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.45));
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo:hover .navbar-brand-img {
    transform: scale(1.06);
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.8));
}

.brand-icon {
    width: 34px;
    height: 34px;
}

.brand-icon svg {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    color: #D4AF37;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.char-jump {
    display: inline-block;
    position: relative;
    will-change: transform;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav Menu */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 8px 0;
    transition: color var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-link:hover {
    color: var(--text-white);
}

/* =========================================================
   HOLOFOTE / FEIXE DE LUZ TRAPEZOIDAL (DOWNLIGHT SPOTLIGHT)
   ========================================================= */
.nav-item {
    position: relative;
}

.nav-item.active .nav-link {
    color: #FFFFFF;
    text-shadow: 0 0 12px rgba(255, 243, 209, 0.8), 0 0 24px rgba(212, 175, 55, 0.5);
}

/* Fenda / Lâmpada LED Embutida no Topo da Header */
.nav-item.active::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width:100px;
    height: 5px;
    background: #ffb73a;
    border-radius: 0 0 0px 0px;
    box-shadow: 
        0 0 8px #FFFFFF,
        0 0 16px rgba(212, 175, 55, 0.9),
        0 0 28px rgba(212, 175, 55, 0.7);
    z-index: 1002;
    animation: spotlightLampGlow 2.5s ease-in-out infinite alternate;
}

/* Feixe de Luz Trapezoidal Desvanecente */
.nav-item.active::after {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    height: 80px;
    background: linear-gradient(
        to bottom, 
        rgba(255, 245, 215, 0.5) 0%, 
        rgba(212, 175, 55, 0.25) 14%,
        rgba(212, 175, 55, 0.08) 45%, 
        transparent 100%
    );
    clip-path: polygon(100%, 100%, 100% 100%);
    pointer-events: none;
    z-index: 1001;
    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.35));
    animation: spotlightBeamPulse 3s ease-in-out infinite alternate;
}

@keyframes spotlightLampGlow {
    0% { opacity: 0.85; box-shadow: 0 0 6px #FFFFFF, 0 0 12px rgba(212, 175, 55, 0.8); }
    100% { opacity: 1; box-shadow: 0 0 10px #FFFFFF, 0 0 20px rgba(212, 175, 55, 1); }
}

@keyframes spotlightBeamPulse {
    0% { opacity: 0.85; transform: translateX(-50%) scaleX(0.95); }
    100% { opacity: 1; transform: translateX(-50%) scaleX(1.05); }
}

/* Mobile Toggle (Hamburger Button) */
.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: all 0.2s ease;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--gold-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-toggle:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #D4AF37;
}

/* Mobile Drawer Backdrop & Menu */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 7, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1005;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    height: 100%;
    background: rgba(10, 14, 22, 0.96);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1010;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.85);
}

.nav-drawer.is-open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-close-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFF;
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.drawer-close-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    color: #D4AF37;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    padding: 6px 0;
}
.drawer-link:hover {
    color: #D4AF37;
    transform: translateX(6px);
}

/* --------------------------------------------------------------------------
   3. HERO 2-LAYER CINEMATIC 3D PARALLAX STAGE
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #020408;
}

/* 2-Layer Stage with 30px Bleed so borders never clip */
.hero-parallax-stage {
    position: absolute;
    inset: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    transition: transform 0.15s cubic-bezier(0.1, 0.9, 0.2, 1);
}

/* Layer 0 (Back): Deep Starry Cosmic Sky */
.layer-back {
    z-index: 1;
}

.sky-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.12); /* Scaled so parallax movement never reveals edge */
    filter: brightness(0.95) contrast(1.1);
}

/* Layer 1 (Front): Sand Dunes, Lake with Concentric Ripples & Monumental DURRIY */
.layer-front {
    z-index: 2;
    align-items: flex-end;
}

.dunes-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.06); /* Seamless edge protection */
    filter: brightness(0.98) contrast(1.05);
}

/* Atmospheric Overlays */
.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 85%),
                linear-gradient(to bottom, rgba(4, 7, 12, 0.3) 0%, rgba(4, 7, 12, 0.0) 60%, rgba(4, 7, 12, 0.85) 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-reflection-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 250px;
    background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.16) 0%, transparent 70%);
    pointer-events: none;
    z-index: 3;
}

/* Hero Content Layout: 2 Columns framing the Horizon */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 40px 80px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   3A. LEFT COLUMN: BADGE, HEADLINE & SUBTITLE
   -------------------------------------------------------------------------- */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    pointer-events: auto;
}

/* Main Hero Title */
.hero-title {
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line-1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 2px;
}

.title-line-2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1.5px;
}

.title-line-2 em {
    font-style: italic;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 6px;
}

.title-line-3 {
    font-size: 3.8rem;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 3px;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.25));
}

/* Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 440px;
    margin-bottom: 32px;
}

/* BOTao DO HERO */
.cta-group {
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  align-items: center;
}

/* MOTOR DA BORDA GIRATÓRIA (BEAM BORDER) */
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes spin { to { --angle: 360deg; } }

.beam-border { position: relative; isolation: isolate; }
.beam-border::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 2px;
  background: conic-gradient(from var(--angle), transparent 0%, transparent 60%, rgba(212, 175, 55, 0.9) 80%, #fff 88%, rgba(212, 175, 55, 0.9) 96%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin 3s linear infinite; pointer-events: none;
}

/* 1. Explore: Vidro Midnight + Borda Animada (Beam Border) */
.btn-commission {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 20px; border-radius: 999px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, rgba(4, 8, 16, 0.65) 80%);
  border: 1px solid rgba(212, 175, 55, 0.25) !important; /* Borda dourada bem fina */
  color: #FFF !important; font-family: Arial, sans-serif !important; font-size: 12px !important; font-weight: 700 !important;
  letter-spacing: 0.5px !important; text-decoration: none; text-transform: uppercase;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); white-space: nowrap;
}

.btn-commission:hover {
  transform: translateY(-2px);
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(4, 8, 16, 0.8) 80%);
  border-color: #ffd3ac !important; color: var(--gold) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25), inset 0 0 20px rgba(212, 175, 55, 0.15);
}

.hero-right {
    pointer-events: auto;
    max-width: 480px;
}

.logo-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
}

.central-3d-logo {
    width: 170px;
    height: 170px;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: var(--transition-normal);
}

.logo-slot-overlay {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 9, 14, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    opacity: 0.85;
    transition: var(--transition-fast);
}

.logo-slot-wrapper:hover .logo-slot-overlay {
    opacity: 1;
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--gold-primary);
}

.upload-icon {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.upload-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-light);
}

.custom-logo-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.7));
}

.hidden {
    display: none !important;
}

.hidden-file-input {
    display: none;
}

/* PALCO DO CARTÃO 3D */
.card-stage { 
  display: flex; justify-content: center; align-items: center; width: 100%; perspective: 1000px; position: relative;
  border-radius: 30px; padding: 40px 15px; overflow: visible;
}
.levitation-wrapper { width: min(420px, 100%); animation: levitate 5s ease-in-out infinite; position: relative; z-index: 2; }
@keyframes levitate { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }

.window-card {
  --x: 50%; --y: 50%; position: relative; width: 100%; min-height: 415px;
  transform-style: preserve-3d;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.window-card.is-flipped {
  transform: perspective(1000px) rotateY(180deg) !important;
}

.card-face {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(10, 14, 20, 0.75));
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(212, 175, 55, 0.08);
}

/* Subtle internal spotlight on card face (never bleeds outside card) */
.card-face::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 220px at var(--x) var(--y), rgba(212, 175, 55, 0.15), transparent 75%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.8;
}

.card-face.card-back {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Só a face visível deve receber cliques/hover.
   Sem isso, a face escondida intercepta cliques que deveriam
   ir para a face visível (inputs do VIP pass "não respondem"). */
.card-face.card-front {
  pointer-events: auto;
}
.window-card.is-flipped .card-face.card-front {
  pointer-events: none;
}
.card-face.card-back {
  pointer-events: none;
}
.window-card.is-flipped .card-face.card-back {
  pointer-events: auto;
}

/*Barra de nav do card (frente)*/
.titlebar { 
  height: 52px; 
  display: flex; 
  align-items: center; 
  gap: 14px;
  padding: 0 22px; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
  position: relative; 
  z-index: 5; 
  background: rgba(7, 9, 14, 0.35);
}

.dots { display: flex; gap: 8px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.navy { background: #3b69a1; } .dot.yellow { background: #cead68; } .dot.green { background: #5fae6b; }
.url { position: absolute; left: 50%; transform: translateX(-50%); color: var(--text-dim); font-size: 11px; letter-spacing: 1px; font-weight: 500; }

/* Flip Trigger Button in Titlebar */
.btn-flip-trigger {
  margin-left: auto;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F7E7BE;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  white-space: nowrap;
}

.btn-flip-trigger:hover {
  background: rgba(212, 175, 55, 0.35);
  border-color: #D4AF37;
  transform: scale(1.05);
}

/* VIP Action Button on Front Face */
.btn-vip-action {
  background: var(--gold-gradient);
  color: #07090E;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.25s ease;
  pointer-events: auto;
}

.btn-vip-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.5);
}

.btn-vip-action .arrow {
  transition: transform 0.2s ease;
}

.btn-vip-action:hover .arrow {
  transform: translateX(3px);
}

.card-body { padding: 32px 28px; position: relative; z-index: 3; pointer-events: none; }
.card-nav { display: flex; gap: 16px; margin-bottom: 24px; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.card-nav span { color: var(--text-dim); } .card-nav span.active { color: var(--gold-primary); border-bottom: 1px solid var(--gold-primary); padding-bottom: 2px; }
.card-content h2 { 
  font-family: 'Plus Jakarta Sans', sans-serif; 
  font-size: clamp(30px, 3.8vw, 42px); 
  line-height: 1.05; 
  color: rgba(255, 255, 255, 0.45); 
  letter-spacing: 0; 
  font-weight: 800; 
}

/* Card Text Anime.js Roll Animation */
.roll-word-line {
  display: block;
  letter-spacing: 0;
}

.roll-word-line.gold {
  color: var(--gold-primary);
  letter-spacing: -0.5px;
}

.roll-char-box {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1.15em;
  line-height: 1.15em;
  vertical-align: bottom;
}

.roll-char-inner {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.char-top, .char-bottom {
  display: block;
  height: 1.15em;
  line-height: 1.15em;
  white-space: nowrap;
}

.gold-char .char-top, .gold-char .char-bottom {
  color: var(--gold-primary);
}

.card-content p { font-size: 15px; color: var(--text-white); margin-top: 8px; margin-bottom: 24px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 16px; }
.tags { display: flex; gap: 8px; }
.tag { border: 1px solid rgba(212, 175, 55, 0.4); color: var(--gold-primary); font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 4px; }
.meta { font-size: 12px; color: var(--text-dim); text-align: right; line-height: 1.3; } .meta b { color: var(--text-white); }

/* VIP Form Styles (Back Face) */
.vip-body {
  padding: 24px 28px 28px 28px !important;
  pointer-events: auto !important;
}

.vip-header {
  margin-bottom: 5px;
  text-align: left;
}

.vip-badge {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #D4AF37;
  display: inline-block;
  margin-bottom: 4px;
}

.vip-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #FFFFFF;
}

.vip-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.vip-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vip-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vip-field label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.vip-field input {
  width: 100%;
  background: rgba(7, 9, 14, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s ease;
}

.vip-field input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.vip-submit {
  margin-top: 8px;
  padding: 12px 20px;
  font-size: 0.75rem;
}

/* Form Controls */
.audit-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-white);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.form-input:focus ~ .input-line {
    width: 100%;
}

.form-input:focus {
    border-bottom-color: transparent;
}

/* Golden CTA Pill Button */
.btn-gold-pill {
    width: 100%;
    margin-top: 10px;
    padding: 15px 24px;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--gold-gradient);
    color: #080B10;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
    transition: var(--transition-normal);
}

.btn-gold-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    filter: brightness(1.08);
}

.btn-gold-pill:active {
    transform: translateY(0);
}

.arrow-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(8, 11, 16, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.btn-gold-pill:hover .arrow-icon {
    transform: translateX(4px);
    background: rgba(8, 11, 16, 0.25);
}

.form-status {
    margin-top: 16px;
    font-size: 0.8rem;
    text-align: center;
    color: var(--gold-light);
    min-height: 20px;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.scroll-link:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 2px;
    animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 12px); opacity: 0; }
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   4. PROJECTS SHOWCASE SECTION
   -------------------------------------------------------------------------- */
.section-projects {
    padding: 120px 40px;
    background: linear-gradient(to bottom, #07090E 0%, #0B0E15 100%);
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.project-card {
    background: rgba(14, 18, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.project-img-box {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-info {
    padding: 28px;
}

.project-category {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-primary);
    display: block;
    margin-bottom: 8px;
}

.project-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.project-details {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.project-link {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-light);
    transition: color var(--transition-fast);
}

.project-link:hover {
    color: var(--gold-primary);
}

/* Project Actions & Live Demo Button */
.project-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
}

.btn-launch-demo {
    background: var(--gold-gradient);
    color: #07090E;
    border: none;
    border-radius: var(--radius-pill);
    padding: 8px 14px;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.25s ease;
}

.btn-launch-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.5);
}

/* LIVE DEMO MODAL VIEWER */
.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.demo-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 6, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.demo-modal-container {
    position: relative;
    z-index: 2;
    width: min(1240px, 94vw);
    height: min(850px, 88vh);
    background: #0B0E15;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.25, 0.64, 1);
}

.demo-modal.is-open .demo-modal-container {
    transform: scale(1);
}

.demo-modal-header {
    height: 60px;
    padding: 0 24px;
    background: rgba(14, 18, 25, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: #D4AF37;
    letter-spacing: 2px;
    display: block;
}

.demo-modal-title h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.demo-modal-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-device {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-device.active, .btn-device:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    color: #FFFFFF;
}

.btn-open-tab {
    font-size: 0.72rem;
    font-weight: 600;
    color: #D4AF37;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.2s ease;
}

.btn-open-tab:hover {
    background: rgba(212, 175, 55, 0.15);
}

.btn-close-modal {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-close-modal:hover {
    background: rgba(255, 50, 50, 0.3);
    color: #FF6B6B;
}

.demo-modal-body {
    flex: 1;
    width: 100%;
    height: calc(100% - 60px);
    background: #000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.demo-modal-body.mobile-view {
    max-width: 395px;
    max-height: 740px;
    margin: 20px auto;
    border-radius: 32px;
    border: 8px solid #1A1F2C;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    overflow: hidden;
}

.demo-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --------------------------------------------------------------------------
   5. DESIGN PILLARS SECTION
   -------------------------------------------------------------------------- */
.section-pillars {
    padding: 100px 40px;
    background: #07090E;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pillar-card {
    padding: 36px 30px;
    background: rgba(14, 18, 25, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.pillar-card:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 16px;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.pillar-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* DISCREET DEVELOPER BAIT CARD (PORTAL TO FORGE) */
.dev-bait-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(10, 14, 20, 0.85) 100%);
    border: 1px dashed rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 40px;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.dev-bait-card:hover {
    border-color: #D4AF37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(10, 14, 20, 0.92) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.dev-bait-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #D4AF37;
    display: block;
    margin-bottom: 6px;
}

.dev-bait-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.dev-bait-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 650px;
}

.dev-forge-btn {
    white-space: nowrap;
    padding: 12px 24px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* --------------------------------------------------------------------------
   EXECUTIVE CONTACT & COMMISSION SECTION
   -------------------------------------------------------------------------- */
.section-contact {
    padding: 120px 40px;
    background: linear-gradient(to bottom, #07090E 0%, #05070B 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-centered-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.contact-form-box {
    background: rgba(14, 18, 25, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.08);
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.contact-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 30px;
}

.commission-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.form-field input, .form-select, .form-field textarea {
    width: 100%;
    background: rgba(7, 9, 14, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-field input:focus, .form-select:focus, .form-field textarea:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.form-select option {
    background: #0B0E15;
    color: #FFF;
}

.submit-commission-btn {
    margin-top: 10px;
}

/* Contact Info Box & Direct Channels */
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(14, 18, 25, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    padding: 24px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.06);
    transform: translateY(-2px);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.channel-icon {
    font-size: 0.9rem;
}

.info-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #D4AF37;
    display: block;
}

.info-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.info-val a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-val a:hover {
    color: #D4AF37;
}

.info-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

/* --------------------------------------------------------------------------
   6. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    padding: 60px 40px 40px 40px;
    background: #040508;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand, .footer-nav a, .footer-quick-contacts a, .footer-copy {
    will-change: transform, opacity;
}

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

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--gold-primary);
}

.footer-quick-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
}

.quick-contact-link {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.quick-contact-link:hover {
    color: var(--gold-primary);
    transform: translateY(-1px);
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   7. LOGO CONTROLLER WIDGET (REMOVED)
   -------------------------------------------------------------------------- */
.logo-control-bar {
    display: none !important;
}

/* --------------------------------------------------------------------------
   8. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 36px;
    }

    .hero-left {
        order: 1;
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .hero-center {
        order: 2;
        width: 100%;
        margin-bottom: 0;
        display: flex;
        justify-content: center;
    }

    .hero-right {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .title-line-1, .title-line-2 {
        font-size: 2.4rem;
    }

    .title-line-3 {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .header-container {
        padding: 0 16px;
        width: 100%;
        justify-content: space-between;
    }

    .brand-logo {
        margin-right: auto;
    }

    .navbar-brand-img {
        height: 60px;
        max-width: 180px;
    }

    .main-nav {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
    }

    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        padding: 100px 20px 60px 20px;
        text-align: center;
    }

    .hero-left {
        order: 1;
        width: 100%;
        align-items: center;
    }

    .hero-center {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-right {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .title-line-1, .title-line-2 {
        font-size: 2.1rem;
    }

    .title-line-3 {
        font-size: 2.5rem;
    }

    .logo-slot-wrapper {
        width: 220px;
        height: 220px;
    }
}

/* =========================================================
   HAMBURGER MENU (MOBILE ONLY)
   ========================================================= */

/* Estilo base do botão (Hambúrguer com 3 linhas) */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 999;
}

/* Estilo das linhas do hambúrguer (Douradas) */
.hamburger-btn .bar {
  width: 100%;
  height: 2px;
  background-color: #D4AF37; /* O teu dourado premium */
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}

/* REGRA DE OURO: Esconder em ecrãs de PC (Maiores que 768px) */
@media (min-width: 768px) {
  .hamburger-btn {
    display: none !important;
  }
}
/* =========================================================
   CARD 3D — AJUSTES PARA TELEMÓVEL (VIEW MOBILE)
   ========================================================= */
@media (max-width: 600px) {
  /* Botões "VIP PASS" (frente) e "BACK" (verso) menores */
  .btn-flip-trigger {
    font-size: 0.56rem;
    padding: 4px 9px;
    border-radius: 10px;
  }

  /* Selos BETA / 2030 GEN menores */
  .tag {
    font-size: 8px;
    padding: 3px 6px;
  }

  /* Botão "REQUEST VIP PASS" (frente) menor */
  .btn-vip-action {
    padding: 6px 12px;
    font-size: 0.62rem;
    gap: 4px;
  }
  .btn-vip-action .arrow {
    font-size: 0.8em;
  }

  /* Botão "RESERVE VIP CONSULTATION" (verso) menor */
  .vip-submit {
    padding: 9px 16px;
    font-size: 0.68rem;
  }

  /* Move o botão BACK para fora da titlebar do verso, flutuando entre
     ela e o texto "PRIVATE AUDIT", em vez de ficar espremido ao lado
     da URL. */
/* =========================================================
   HERO & CARD 3D — MOBILE VIEWPORT OPTIMIZATION (< 768px)
   ========================================================= */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 10px);
    padding-bottom: 50px;
    align-items: flex-start;
  }

  /* Reveal the monumental DURRIY clearly in the mobile view */
  .hero-parallax-stage {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .sky-img {
    object-position: center top;
    transform: scale(1.0);
  }

  .dunes-img {
    object-fit: cover;
    object-position: center 32%; /* Positions monumental DURRIY in the upper third */
    transform: scale(1.0);
    width: 100%;
    height: 100%;
  }

  .hero-content-wrapper {
    flex-direction: column;
    padding: 10px 16px 40px 16px;
    gap: 24px;
  }

  .hero-left {
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin-bottom: 6px;
  }

  .title-line-1, .title-line-2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .title-line-3 {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-right {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .card-stage {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .dev-bait-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 28px 20px;
    gap: 20px;
    margin-top: 30px;
  }

  .dev-bait-content {
    width: 100%;
    max-width: 100%;
  }

  .dev-bait-title {
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .dev-bait-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.7);
  }

  .dev-forge-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    font-size: 0.82rem;
    text-align: center;
  }

  /* Hide floating logo controller widget everywhere */
  .logo-control-bar {
    display: none !important;
  }
}