/* ===== SHARED STYLES – DAS INTERIOR ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: #0a0a0f; color: #e8e8e8; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-grad: linear-gradient(135deg, #c9a84c, #f0d080);
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #1a1a24;
  --dark4: #22222e;
  --text: #e8e8e8;
  --text-muted: #9999aa;
  --border: rgba(201,168,76,0.2);
  --radius: 12px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --transition: all 0.3s ease;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold-text { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section { padding: 100px 0; }
.section-tag { display: inline-block; background: rgba(201,168,76,0.1); border: 1px solid var(--border); color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 16px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.section-desc { color: var(--text-muted); font-size: 16px; max-width: 500px; margin: 0 auto; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 8px; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
.btn-gold { background: var(--gold-grad); color: #111; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.btn-full { width: 100%; justify-content: center; }
