/* ============================================================
   ROYALE WATCHES — Folha de estilos
   Tema: luxo / relojoaria (preto profundo + dourado)
   ============================================================ */

:root {
  --bg:        #0c0c0e;
  --bg-alt:    #131318;
  --surface:   #17171d;
  --line:      rgba(201, 168, 106, 0.18);
  --gold:      #c9a86a;
  --gold-soft: #e6d3a6;
  --text:      #ece9e3;
  --muted:     #a7a39a;
  --radius:    14px;
  --max:       1140px;
  --serif:     "Cormorant Garamond", Georgia, serif;
  --sans:      "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-soft); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.center { text-align: center; }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #1a1407;
  font-weight: 600;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,106,.25); color: #1a1407; }
.btn--ghost {
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12,12,14,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong { letter-spacing: .18em; font-size: 1rem; font-weight: 600; }
.brand__text small { letter-spacing: .35em; font-size: .62rem; color: var(--gold); }

.nav { display: flex; gap: 30px; }
.nav a { font-size: .9rem; color: var(--muted); }
.nav a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 130px 0 120px;
  background:
    radial-gradient(900px 500px at 70% -10%, rgba(201,168,106,.14), transparent 60%),
    linear-gradient(180deg, #0c0c0e 0%, #101015 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero__inner { max-width: 760px; }
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  margin: 8px 0 22px;
}
.hero__title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero__lead { font-size: 1.15rem; color: var(--muted); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section__title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 22px; }
.section p { color: var(--muted); margin-bottom: 16px; }
.section strong { color: var(--text); font-weight: 500; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

/* ---------- Fatos (sobre) ---------- */
.facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.facts li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  color: var(--muted);
  font-size: .9rem;
}
.facts span {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

/* ---------- Missão ---------- */
.mission { max-width: 860px; margin: 0 auto 60px; text-align: center; }
.mission__quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--gold-soft);
}
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  text-align: center;
  padding: 34px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.015);
}
.value h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 10px; }
.value p { color: var(--muted); margin: 0; }

/* ---------- Cards (coleções) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.card {
  padding: 34px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); }
.card h3 { font-size: 1.45rem; margin-bottom: 12px; color: var(--text); }
.card p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- Contato ---------- */
.contact-list { list-style: none; margin-top: 26px; }
.contact-list li {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list__label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-list a { font-size: 1.1rem; color: var(--text); }
.contact-list a:hover { color: var(--gold-soft); }

.address-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
}
.address-card h3 { color: var(--gold); font-size: 1.5rem; margin-bottom: 16px; }
.address-card address { font-style: normal; color: var(--muted); line-height: 1.9; margin-bottom: 24px; }
.company-data {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.company-data p { color: var(--muted); font-size: .9rem; margin-bottom: 6px; }
.company-data strong { color: var(--text); }

/* ---------- Footer ---------- */
.footer { background: #08080a; border-top: 1px solid var(--line); padding-top: 64px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand strong { letter-spacing: .14em; }
.footer__brand p { color: var(--muted); font-size: .85rem; margin: 4px 0 0; }
.footer__col h4 { color: var(--gold); font-family: var(--sans); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col p { color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bottom p { color: var(--muted); font-size: .82rem; text-align: center; }

/* ---------- Página de privacidade ---------- */
.legal { padding: 80px 0; max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 8px; }
.legal h2 { font-size: 1.6rem; color: var(--gold); margin: 38px 0 12px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 14px; }
.legal ul { padding-left: 22px; }
.legal .updated { color: var(--gold); font-size: .85rem; letter-spacing: .1em; margin-bottom: 30px; }
.back-link { display: inline-block; margin-top: 40px; color: var(--gold); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .hero { padding: 90px 0 80px; }
  .section { padding: 70px 0; }
  .values { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .nav__cta { display: none; }
}
