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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0A0A0A;
    color: #F5F5F5;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Arte de fundo dourada unificada */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;

    /* Padrão geométrico sofisticado */
    background-image:
        /* Linhas diagonais sutis */
        repeating-linear-gradient(45deg,
            rgba(198, 167, 94, 0.02) 0px,
            rgba(198, 167, 94, 0.02) 2px,
            transparent 2px,
            transparent 30px),

        /* Linhas horizontais elegantes */
        repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 40px,
            rgba(198, 167, 94, 0.015) 40px,
            rgba(198, 167, 94, 0.015) 41px,
            transparent 41px,
            transparent 80px),

        /* Linhas verticais */
        repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 40px,
            rgba(198, 167, 94, 0.015) 40px,
            rgba(198, 167, 94, 0.015) 41px,
            transparent 41px,
            transparent 80px),

        /* Gradiente radial para profundidade */
        radial-gradient(circle at 30% 50%,
            rgba(198, 167, 94, 0.03) 0%,
            transparent 50%),

        /* Gradiente radial secundário */
        radial-gradient(circle at 70% 80%,
            rgba(198, 167, 94, 0.03) 0%,
            transparent 50%);
}

/* Overlay para suavizar */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, #0A0A0A 100%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

/* Garantir que o conteúdo fique acima do fundo */
header,
section,
footer {
    position: relative;
    z-index: 1;
}

/* ===== TIPOGRAFIA ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: rgba(245, 245, 245, 0.85);
}

@media (max-width: 480px) {
    p {
        font-size: 1rem;
    }
}

/* ===== CORES & ACENTOS ===== */
:root {
    --primary-dark: #0A0A0A;
    --primary-gold: #C6A75E;
    --gold-light: #E5D4A3;
    --gold-dark: #9E8B4C;
    --text-light: #F5F5F5;
    --gray-dark: #2A2A2A;
}

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

.light-text {
    font-weight: 300;
    color: rgba(245, 245, 245, 0.9);
}

.bold-gold {
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Montserrat', serif;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

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