@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    /* Paleta Premium Exclusiva */
    --bg-main: #0B0B0B;
    --bg-surface: #1A1A1A;
    --bg-surface-light: #242424;
    --bg-surface-hover: #2E2E2E;
    
    --gold-primary: #C9A227;
    --gold-light: #E8C142;
    --gold-dark: #9A7917;
    --gold-gradient: linear-gradient(135deg, #E8C142 0%, #C9A227 50%, #9A7917 100%);
    
    --text-main: #FFFFFF;
    --text-muted: #A3A3A3;
    --text-dark: #0B0B0B;
    
    --border-gold: rgba(201, 162, 39, 0.25);
    --border-gold-glow: rgba(201, 162, 39, 0.5);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --glass-bg: rgba(11, 11, 11, 0.85);
    --glass-blur: blur(16px);
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.8);
    --shadow-gold-glow: 0 0 25px rgba(201, 162, 39, 0.25);
    
    /* Tipografia */
    --font-title: 'Cinzel', 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Transições e Curvas */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--bg-main);
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: var(--text-main);
}

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

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

button {
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

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

/* Utilitários Globais */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gold {
    color: var(--gold-primary);
}

.bg-gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 7rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4.5rem 0;
    }
    .container {
        padding: 0 1.5rem;
    }
}
