/* =============================================
   ELITE WATCH CLUB — Stylesheet
   Edite as variáveis em :root para mudar cores
   ============================================= */

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

/* === VARIÁVEIS — edite aqui para mudar o visual === */
:root {
  --bg:          #0a0a0a;
  --bg-card:     #111111;
  --gold:        #c9a96e;
  --gold-light:  #dfc08a;
  --gold-dark:   #9e7d4e;
  --text:        #ede9e0;
  --text-muted:  #7a7670;
  --border:      #222222;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }

/* === UTILITÁRIOS === */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-gold    { color: var(--gold); }
.text-muted   { color: var(--text-muted); }
.font-display { font-family: var(--font-display); }
.italic       { font-style: italic; }
.label        { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar__logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.navbar__logo:hover .navbar__logo-img { opacity: 0.85; }
.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.navbar__links a {
  padding: 0.5rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--text); }
.navbar__links a.active { color: var(--gold); }
.navbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar__instagram {
  color: var(--text-muted);
  transition: color 0.3s;
}
.navbar__instagram:hover { color: var(--gold); }
.navbar__instagram svg { width: 20px; height: 20px; }

/* Hamburger */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 0.25rem;
}
.navbar__toggle svg { width: 24px; height: 24px; }

/* Mobile menu */
.navbar__mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.97);
}
.navbar__mobile.open { display: block; }
.navbar__mobile ul { list-style: none; padding: 1rem 2rem 1.5rem; }
.navbar__mobile a {
  display: block;
  padding: 0.85rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile a:hover { color: var(--gold); }

@media (max-width: 1024px) {
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.45) 50%, rgba(10,10,10,1) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
  animation: fadeUp 1s ease-out;
}
.hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  font-size: 1rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }

/* === BOTÕES === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn svg { width: 16px; height: 16px; }

/* === SEÇÃO MARCAS === */
.brands-section {
  padding: 6rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .label { margin-bottom: 1rem; display: block; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.brand-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.4s;
  cursor: pointer;
  display: block;
}
.brand-card:hover { border-color: rgba(201,169,110,0.35); }
.brand-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.brand-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.brand-card:hover .brand-card__img img { transform: scale(1.06); }
.brand-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.1) 55%, transparent 100%);
  pointer-events: none;
}
.brand-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.brand-card__origin {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.brand-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.brand-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.brand-card__cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.brand-card__cta svg { width: 12px; height: 12px; }
.brand-card:hover .brand-card__cta { opacity: 1; transform: translateY(0); }

/* === SEÇÃO SOBRE === */
.about-section {
  padding: 6rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .label { margin-bottom: 1rem; display: block; }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.about-body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-cta { margin-top: 2rem; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.value-card {
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.value-card:hover { border-color: rgba(201,169,110,0.3); }
.value-card__icon {
  width: 20px; height: 20px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-card__icon svg { width: 100%; height: 100%; }
.value-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.value-card__desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* === CTA SECTION === */
.cta-section {
  padding: 8rem 0;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.cta-text {
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-img {
  height: 72px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-instagram:hover { color: var(--gold); }
.footer-instagram svg { width: 16px; height: 16px; }
.footer-section-title {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.footer-links {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--text); }
.footer-contact-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-bottom {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   BRAND PAGE STYLES
   ============================================= */

/* Brand Hero */
.brand-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.brand-hero__bg {
  position: absolute;
  inset: 0;
}
.brand-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.brand-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.25) 100%);
}
.brand-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  animation: fadeUp 0.8s ease-out;
}
.brand-hero__eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.brand-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.brand-hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(201,169,110,0.75);
}

/* Brand Info */
.brand-info {
  padding: 5rem 0;
}
.brand-info__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}
.brand-info__label { display: block; margin-bottom: 1rem; }
.brand-info__text {
  font-size: 1rem;
  color: rgba(237,233,224,0.85);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.brand-highlights { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.brand-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.brand-highlights li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.brand-stats { display: flex; flex-direction: column; gap: 1.25rem; }
.stat-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.stat-card__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.stat-card__label svg { width: 14px; height: 14px; color: var(--gold); }
.stat-card__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .brand-info__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Brand Models */
.brand-models {
  padding: 5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}
.model-card {
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  text-align: center;
  transition: border-color 0.3s, color 0.3s;
}
.model-card:hover { border-color: rgba(201,169,110,0.35); color: var(--gold); }
.model-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.models-footer {
  text-align: center;
  margin-top: 3rem;
}
.models-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gold);
  transition: color 0.3s;
}
.models-footer a:hover { color: var(--gold-light); }
.models-footer svg { width: 14px; height: 14px; }

/* Brand CTA */
.brand-cta {
  padding: 6rem 0;
  text-align: center;
}
.brand-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.brand-cta__text {
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* Brand Nav (prev/next) */
.brand-nav {
  padding: 0 0 5rem;
}
.brand-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.brand-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.brand-nav__link:hover { color: var(--text); }
.brand-nav__link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.brand-nav__link--prev:hover svg { transform: translateX(-4px); }
.brand-nav__link--next { text-align: right; }
.brand-nav__link--next:hover svg { transform: translateX(4px); }
.brand-nav__eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.25rem;
}
.brand-nav__name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
}

/* === ANIMAÇÕES === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* === RESPONSIVO GERAL === */
@media (max-width: 600px) {
  .brands-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
}