@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Cormorant+Garamond:ital,wght@1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-deep: #050506;
    --color-bg-dark: #0a0a0c;
    --color-bg-card: #0e0e11;
    
    /* Gold/Bronze Brand Palette (Inspired by Logo) */
    --color-gold-light: #f5dda9;
    --color-gold-mid: #c5a059;
    --color-gold-base: #a98446;
    --color-gold-dark: #73541d;
    --color-gold-shadow: #3b2a0f;
    
    /* Gold Gradients */
    --grad-gold: linear-gradient(135deg, #f5dda9 0%, #c5a059 45%, #a98446 75%, #73541d 100%);
    --grad-gold-text: linear-gradient(135deg, #f5dda9 0%, #c5a059 50%, #a98446 100%);
    --grad-dark-glow: radial-gradient(circle, rgba(197, 160, 89, 0.1) 0%, rgba(5, 5, 6, 0) 70%);
    --grad-spotlight: radial-gradient(circle at 50% 30%, rgba(197, 160, 89, 0.12) 0%, rgba(5, 5, 6, 0) 60%);
    
    /* Functional Colors */
    --color-text-bright: #ffffff;
    --color-text-standard: #e4e4e7;
    --color-text-muted: #a1a1aa;
    --color-text-dark: #52525b;
    --color-success: #c5a059; /* Custom gold success state */
    --color-error: #ef4444;
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Details */
    --glass-bg: rgba(18, 18, 21, 0.75);
    --glass-border: 1px solid rgba(197, 160, 89, 0.15);
    --glass-border-hover: 1px solid rgba(197, 160, 89, 0.35);
    --glass-blur: blur(16px);
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-deep);
    color: var(--color-text-standard);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-image: var(--grad-dark-glow);
    background-repeat: no-repeat;
    background-position: top center;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-bg-deep);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-mid);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-bright);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

p {
    font-weight: 300;
    color: var(--color-text-muted);
}

/* ==========================================================================
   REUSABLE UTILITIES & EFFECTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gold-text-grad {
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.glow-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--color-bg-deep);
    background: var(--grad-gold);
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.25);
    transition: var(--transition-smooth);
    overflow: hidden;
    z-index: 1;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.glow-btn:hover {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.5);
    transform: translateY(-2px);
}

.glow-btn:hover::before {
    opacity: 0.15;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--color-text-bright);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.secondary-btn:hover {
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid var(--color-gold-mid);
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

/* Glassmorphism Card Base */
.glass-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border: var(--glass-border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(197, 160, 89, 0.05);
}

/* CriativoMax Style Customizations */
.italic-serif-gold {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    background: var(--grad-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    pointer-events: none;
    z-index: 0;
}

.backdrop-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(5, 5, 6, 0.35);
    pointer-events: none;
    z-index: 1;
}

.glass-panel {
    position: absolute;
    background: rgba(18, 18, 21, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-bright);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 30;
    transition: var(--transition-smooth);
}

.glass-panel svg {
    color: var(--color-gold-mid);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.glass-panel.pulse-slow {
    animation: pulse-slow 3.5s ease-in-out infinite;
}

.glass-panel.pulse-slow-delay {
    animation: pulse-slow 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse-slow {
    0% { transform: translateY(0) scale(1); opacity: 0.9; }
    50% { transform: translateY(-4px) scale(1.02); opacity: 1; border-color: rgba(197, 160, 89, 0.4); box-shadow: 0 15px 30px rgba(197, 160, 89, 0.15), 0 10px 25px rgba(0, 0, 0, 0.6); }
    100% { transform: translateY(0) scale(1); opacity: 0.9; }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Spacing */
section {
    padding: 7rem 0;
    position: relative;
}

/* Background Atmosphere overlays */
.atmosphere-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, rgba(7, 7, 8, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   NAVBAR PREMIUM
   ========================================================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(13, 13, 15, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    top: 10px;
    background: rgba(13, 13, 15, 0.8);
    border-color: rgba(197, 160, 89, 0.25);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.08), 0 10px 30px rgba(0, 0, 0, 0.7);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 2rem;
    transition: var(--transition-smooth);
}

.navbar.scrolled .container {
    height: 70px;
}

/* Image Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--color-text-bright);
}

.logo img {
    height: 52px;
    width: auto;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.logo img:hover {
    transform: scale(1.05);
    border-color: var(--color-gold-mid);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--grad-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold-light);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-actions .glow-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    border-radius: 30px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-text-bright);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* Open menu animation */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-gold-mid);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-gold-mid);
}

/* ==========================================================================
   HERO SECTION (Cinematográfica - Split Layout Mooca)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 5rem;
    background: var(--color-bg-deep);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 40%, rgba(197, 160, 89, 0.15) 0%, rgba(5, 5, 6, 0) 65%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-spotlight);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-media-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.25);
    width: 100%;
    aspect-ratio: 4 / 3;
    transition: var(--transition-smooth);
    z-index: 5;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(110%) brightness(95%);
    transition: var(--transition-smooth);
}

.hero-image-frame:hover {
    border-color: var(--color-gold-mid);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.95), 0 0 60px rgba(197, 160, 89, 0.25);
    transform: translateY(-5px);
}

.hero-image-frame:hover img {
    filter: grayscale(0%) contrast(105%) brightness(100%);
    transform: scale(1.03);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--color-gold-mid);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 0.5rem;
}

.hero-title {
    font-size: clamp(2.3rem, 4.2vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    margin-bottom: 3rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   CONFLITO / DESEJO (A Dor de Tatuar)
   ========================================================================== */
.conflict {
    background-color: var(--color-bg-deep);
    z-index: 2;
}

.conflict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.conflict-content {
    position: relative;
}

.section-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-gold-mid);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--grad-gold);
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.conflict-text {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--color-text-standard);
}

.conflict-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    list-style: none;
}

.conflict-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.conflict-bullets li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-gold-mid);
    margin-top: 4px;
}

.conflict-bullets span {
    font-weight: 500;
    color: var(--color-text-bright);
    display: block;
    margin-bottom: 0.25rem;
}

/* Offset Image for Anti-AI Look */
.conflict-image-container {
    position: relative;
    padding: 2rem;
}

.conflict-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 1px solid rgba(197, 160, 89, 0.2);
    z-index: 1;
    pointer-events: none;
    transform: translate(10px, 10px);
    transition: var(--transition-smooth);
}

.conflict-image-container:hover::before {
    transform: translate(-5px, -5px);
    border-color: var(--color-gold-mid);
}

.conflict-img {
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-sm);
    filter: grayscale(100%) contrast(110%);
    transition: var(--transition-smooth);
}

.conflict-img:hover {
    transform: scale(1.03) translateY(-5px);
    filter: grayscale(0%) contrast(105%);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85), 0 0 25px rgba(197, 160, 89, 0.25);
}

/* ==========================================================================
   SOLUÇÕES / ESTILOS
   ========================================================================== */
.services {
    background-color: var(--color-bg-dark);
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-header p {
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* Layout assimétrico anti-alinhado */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 480px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: var(--glass-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition-smooth);
    filter: grayscale(40%) brightness(55%);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 7, 8, 0) 40%, rgba(7, 7, 8, 0.95) 90%);
    z-index: 2;
}

.service-content {
    position: relative;
    z-index: 3;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.9rem;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--color-text-muted);
}

/* Asymmetry / Anti-IA adjustments per card */
.services-grid .service-card:nth-child(even) {
    transform: translateY(30px);
}

.service-card:hover {
    border-color: var(--color-gold-mid);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.1);
}

.service-card:hover .service-card-bg {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(60%);
}

.service-card:hover .service-content {
    transform: translateY(0);
}

.service-card:hover .service-desc {
    opacity: 1;
}

/* ==========================================================================
   BENEFÍCIOS / DIFERENCIAIS
   ========================================================================== */
.benefits {
    background-color: var(--color-bg-deep);
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.benefits-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    gap: 1.5rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-mid);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-text {
    font-size: 0.95rem;
}

/* ==========================================================================
   O PROCESSO (Editorial Journey)
   ========================================================================== */
.journey {
    background-color: var(--color-bg-dark);
}

.journey-header {
    text-align: center;
    margin-bottom: 6rem;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.journey-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, rgba(197, 160, 89, 0) 0%, rgba(197, 160, 89, 0.3) 50%, rgba(197, 160, 89, 0) 100%);
    z-index: 1;
}

.journey-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-gold-dark);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold-mid);
    position: relative;
    transition: var(--transition-smooth);
}

.journey-step:hover .step-number {
    border-color: var(--color-gold-light);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
    transform: scale(1.05);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-desc {
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0 auto;
}

/* ==========================================================================
   GALERIA / CARROSSEL INTERATIVO
   ========================================================================== */
.gallery {
    background-color: var(--color-bg-deep);
    overflow: hidden;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.gallery-nav {
    display: flex;
    gap: 1rem;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.gallery-nav-btn:hover {
    border-color: var(--color-gold-mid);
    color: var(--color-gold-light);
    background: rgba(197, 160, 89, 0.05);
}

.gallery-slider-wrapper {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
    width: 100%;
    margin-top: 1.5rem;
}

.gallery-grid-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border: var(--glass-border);
    transition: var(--transition-smooth);
}

.gallery-grid-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(5%) contrast(102%);
    transition: var(--transition-smooth);
}

.gallery-grid-item:hover {
    border-color: var(--color-gold-mid);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.12);
}

.gallery-grid-item:hover .gallery-grid-item-img {
    transform: scale(1.04);
}

/* ==========================================================================
   DEPOIMENTOS EDITORIAL
   ========================================================================== */
.testimonials {
    background-color: var(--color-bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    position: relative;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-text-standard);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '“';
    position: absolute;
    top: -30px;
    left: -15px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(197, 160, 89, 0.1);
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-gold-mid);
    object-fit: cover;
    background: var(--color-bg-card);
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-bright);
}

.author-title {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   CTA INTERMEDIÁRIO
   ========================================================================== */
.cta-banner {
    padding: 6rem 0;
    background-image: linear-gradient(to right, rgba(7, 7, 8, 0.95) 30%, rgba(7, 7, 8, 0.5) 100%), url('../assets/studio-interior.png');
    background-size: cover;
    background-position: center;
    position: relative;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 50%, rgba(197, 160, 89, 0.15) 0%, rgba(7, 7, 8, 0) 50%);
    pointer-events: none;
}

.cta-banner-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-banner-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-banner-text {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq {
    background-color: var(--color-bg-deep);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.faq-intro h2 {
    margin-bottom: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding-bottom: 1.25rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1rem 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-bright);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-gold-light);
}

.faq-icon-svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--color-gold-mid);
}

.faq-item.active .faq-icon-svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
    padding: 0.5rem 0 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FORMULÁRIO DE CONTATO / RESERVA
   ========================================================================== */
.booking {
    background-color: var(--color-bg-dark);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 5rem;
    align-items: center;
}

.booking-info h2 {
    margin-bottom: 1.5rem;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.booking-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.booking-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.20);
    background: rgba(197, 160, 89, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-mid);
    flex-shrink: 0;
}

.booking-detail-icon svg {
    width: 22px;
    height: 22px;
}

.booking-detail-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.booking-detail-value {
    font-size: 1.05rem;
    color: var(--color-text-bright);
    font-weight: 500;
}

/* Form Styles */
.booking-form-wrapper {
    position: relative;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-text-bright);
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--color-gold-mid);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.form-select option {
    background: var(--color-bg-card);
    color: var(--color-text-bright);
}

.form-error-msg {
    color: var(--color-error);
    font-size: 0.8rem;
    display: none;
}

/* Submit button within form */
.booking-form .glow-btn {
    width: 100%;
    padding: 1.1rem;
    margin-top: 1rem;
}

/* Loading, Success, Error overlays */
.form-status-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: var(--glass-border);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-status-overlay.active {
    display: flex;
    opacity: 1;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(197, 160, 89, 0.1);
    border-top: 3px solid var(--color-gold-mid);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--color-gold-mid);
    color: var(--color-gold-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.success-icon svg {
    width: 35px;
    height: 35px;
}

.status-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.status-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   FOOTER PREMIUM
   ========================================================================== */
.footer {
    background-color: var(--color-bg-deep);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    margin-bottom: 2rem;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--color-gold-mid);
    color: var(--color-gold-light);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--color-gold-mid);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-gold-light);
    padding-left: 5px;
}

.footer-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-dark);
}

.footer-copy {
    color: var(--color-text-muted);
}

.footer-terms {
    display: flex;
    gap: 2rem;
}

.footer-terms a:hover {
    color: var(--color-text-muted);
}

/* ==========================================================================
   WHATSAPP FLOATING WIDGET (Estilo Formulário CriativoMax)
   ========================================================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.4;
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(0.95); opacity: 0; }
}

/* Expanding Chat Box (Estilo Vidro CriativoMax) */
.wa-chat-box {
    width: 360px;
    background: rgba(18, 18, 21, 0.85);
    border: 1px solid rgba(197, 160, 89, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(197, 160, 89, 0.05);
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom right;
}

.wa-chat-box.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.wa-chat-header {
    background: linear-gradient(135deg, rgba(13, 13, 15, 0.95) 0%, rgba(197, 160, 89, 0.1) 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    text-align: left;
}

.wa-chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--color-gold-mid);
    object-fit: cover;
}

.wa-chat-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-bright);
    letter-spacing: 0.05em;
}

.wa-chat-status {
    display: block;
    font-size: 0.75rem;
    color: #25d366;
    margin-top: 2px;
}

.wa-chat-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-text-muted);
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-fast);
    line-height: 1;
}

.wa-chat-close:hover {
    color: var(--color-text-bright);
}

.wa-chat-body {
    padding: 1.5rem;
}

.wa-chat-welcome {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-align: left;
}

.wa-chat-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wa-chat-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

@media (max-width: 400px) {
    .wa-chat-box {
        width: calc(100vw - 40px);
    }
}

/* ==========================================================================
   RESULTADOS / CONTADORES (Nemerário)
   ========================================================================== */
.results-counters {
    background-color: var(--color-bg-dark);
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding: 3.5rem 0;
    position: relative;
    z-index: 10;
}

.results-counters .results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--color-text-bright);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.counter {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
}

.roulette-col {
    display: inline-block;
    overflow: hidden;
    height: 1.1em;
    line-height: 1.1em;
    vertical-align: bottom;
}

.roulette-col-inner {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

.roulette-col-inner span {
    display: block;
    height: 1.1em;
    line-height: 1.1em;
    text-align: center;
}

.roulette-symbol {
    display: inline-block;
    vertical-align: bottom;
    line-height: 1.1em;
}

.result-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    font-weight: 500;
}

@media (max-width: 900px) {
    .results-counters .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }
}

@media (max-width: 480px) {
    .results-counters .results-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   LOCALIZAÇÃO & MAPA
   ========================================================================== */
.location {
    background-color: var(--color-bg-deep);
    position: relative;
    z-index: 2;
}

.location-header {
    text-align: center;
    margin-bottom: 4rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 2.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
}

.location-map-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    min-height: 450px;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.9) contrast(1.1) brightness(0.8);
    transition: var(--transition-smooth);
}

.location-map-wrapper:hover iframe {
    filter: grayscale(0.5) invert(0.9) contrast(1.1) brightness(0.85);
}

.location-details-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-details-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-gold-light);
}

.location-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-details-list li {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-details-list .detail-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-gold-mid);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.location-details-list .detail-text {
    font-size: 1rem;
    color: var(--color-text-bright);
    line-height: 1.6;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET ADJUSTMENTS)
   ========================================================================== */

/* Tablet & Smaller (1024px) */
@media (max-width: 1024px) {
    .navbar .container {
        height: 80px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-grid .service-card:nth-child(even) {
        transform: translateY(0); /* remove translate for easier reading on tablet */
    }
    
    .conflict-grid {
        gap: 2.5rem;
    }
    
    .benefits-grid {
        gap: 3rem;
    }
    
    .booking-grid {
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Mobile & Tablet (768px) */
@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-image-col {
        order: -1;
    }
    
    .hero-logo-frame {
        max-width: 320px;
    }
    
    .hero-content-col {
        align-items: center;
        text-align: center;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .location-map-wrapper {
        min-height: 350px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-dark);
        border-left: var(--glass-border);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition-smooth);
        z-index: 1000;
        padding: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-actions {
        display: none; /* Hide top right buttons, place them in mobile menu */
    }
    
    .nav-menu .nav-btn-mobile {
        display: block;
        margin-top: 1rem;
    }
    
    .conflict-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .conflict-image-container {
        order: -1; /* image on top in mobile */
        max-width: 500px;
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .benefits-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .journey-steps {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .journey-steps::before {
        display: none; /* remove horizontal progress line */
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .booking-info {
        text-align: center;
    }
    
    .booking-details {
        align-items: center;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-ctas .glow-btn, .hero-ctas .secondary-btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        height: 400px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-terms {
        justify-content: center;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   CRIATIVOMAX ADDITIONS: GALLERY FILTERS & MICRO-INTERACTIONS
   ========================================================================== */
.gallery-filters .filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    transition: var(--transition-fast);
}

.gallery-filters .filter-btn:hover {
    border-color: var(--color-gold-mid) !important;
    color: var(--color-gold-light) !important;
    background: rgba(197, 160, 89, 0.05) !important;
}

.gallery-filters .filter-btn.active {
    border-color: var(--color-gold-mid) !important;
    color: var(--color-gold-light) !important;
    background: rgba(197, 160, 89, 0.15) !important;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
}

/* Accessible focus styling */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--color-gold-mid) !important;
    outline-offset: 4px;
}

/* Gallery filter animation states */
.gallery-grid-item {
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    opacity: 1;
    transform: scale(1);
    display: block;
}

.gallery-grid-item.hide {
    opacity: 0 !important;
    transform: scale(0.8) !important;
    display: none !important;
}

/* Glow-btn subtle pulser effect */
.glow-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: scale(1.2);
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-radius: inherit;
    z-index: -2;
}

.glow-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Spotlight sections with subtle backgrounds */
.conflict, .faq {
    position: relative;
}

.conflict::before, .faq::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.03) 0%, rgba(0,0,0,0) 80%);
    pointer-events: none;
    z-index: 0;
}
