/*
Theme Name: Vantrix Brasil
Theme URI: https://www.vantrix.com.br
Author: Vantrix Brasil
Description: Tema institucional oficial da Vantrix Brasil — holding de curadoria premium. Luxo silencioso: preto, dourado e marfim.
Version: 1.0
Text Domain: vantrix-brasil
*/

/* ===== Tokens ===== */
:root{
  --vx-black: #0B0B0A;
  --vx-black-elevated: #141311;
  --vx-black-line: #262420;
  --vx-gold: #C9A961;
  --vx-gold-deep: #A9874F;
  --vx-ivory: #F4EFE6;
  --vx-stone: #8C8579;

  --vx-font-display: "Fraunces", serif;
  --vx-font-body: "Inter", system-ui, sans-serif;

  --vx-container: 1180px;
  --vx-gap: clamp(1.25rem, 4vw, 3rem);
  --vx-radius: 2px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--vx-black);
  color: var(--vx-ivory);
  font-family: var(--vx-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }

img, svg{ display: block; max-width: 100%; }

:focus-visible{
  outline: 1px solid var(--vx-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ===== Buttons ===== */
.vx-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  font-family: var(--vx-font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--vx-radius);
  border: 1px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.vx-btn--primary{ background: var(--vx-gold); color: var(--vx-black); }
.vx-btn--primary:hover{ background: var(--vx-gold-deep); }

.vx-btn--outline{ border-color: var(--vx-stone); color: var(--vx-ivory); }
.vx-btn--outline:hover{ border-color: var(--vx-gold); color: var(--vx-gold); }

.vx-btn--ghost{ padding: 0; border: 0; color: var(--vx-gold); letter-spacing: .08em; }
.vx-btn--ghost:hover{ color: var(--vx-ivory); }

.vx-btn--pill{ border-radius: 999px; border-color: var(--vx-gold); color: var(--vx-gold); padding: .55rem 1.25rem; font-size: .72rem; }
.vx-btn--pill:hover{ background: var(--vx-gold); color: var(--vx-black); }

.vx-btn--block{ width: 100%; }

/* ===== Header ===== */
.vx-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,10,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--vx-black-line);
}
.vx-header__inner{
  max-width: var(--vx-container);
  margin: 0 auto;
  padding: 1rem var(--vx-gap);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.vx-header__brand{
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-right: auto;
  color: var(--vx-gold);
}
.vx-header__mark{ width: 20px; height: 20px; }
.vx-header__wordmark{
  font-family: var(--vx-font-display);
  font-size: 1.05rem;
  letter-spacing: .06em;
  color: var(--vx-ivory);
}
.vx-header__wordmark em{ font-style: normal; color: var(--vx-gold); }

.vx-header__nav{
  display: none;
  gap: 1.75rem;
  font-size: .82rem;
  letter-spacing: .04em;
}
.vx-header__nav a:hover{ color: var(--vx-gold); }

.vx-header__toggle{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 24px; height: 24px;
  background: none; border: 0; padding: 0; cursor: pointer;
}
.vx-header__toggle span{ height: 1px; background: var(--vx-ivory); width: 100%; }

.vx-mobile-nav{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem var(--vx-gap) 1.5rem;
  border-top: 1px solid var(--vx-black-line);
}
.vx-mobile-nav a:not(.vx-btn){ font-size: .95rem; }

@media (min-width: 860px){
  .vx-header__nav{ display: flex; }
  .vx-header .vx-btn--pill{ display: inline-flex; }
  .vx-header__toggle, .vx-mobile-nav{ display: none; }
}

/* ===== Hero ===== */
.vx-hero{
  padding: clamp(4rem, 12vw, 8rem) var(--vx-gap) clamp(3rem, 8vw, 5rem);
  border-bottom: 1px solid var(--vx-black-line);
}
.vx-hero__inner{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.vx-eyebrow{
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vx-gold);
  border: 1px solid var(--vx-black-line);
  border-radius: 999px;
  padding: .4rem 1rem;
  margin-bottom: 1.75rem;
}
.vx-hero__title{
  font-family: var(--vx-font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 1.5rem;
  color: var(--vx-ivory);
}
.vx-hero__title em{ font-style: italic; font-weight: 400; color: var(--vx-gold); }
.vx-hero__body{
  color: var(--vx-stone);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
}
.vx-hero__tagline{
  font-family: var(--vx-font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--vx-gold-deep);
  margin: 0 0 2.25rem;
}
.vx-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== Sections ===== */
.vx-section{ padding: clamp(3.5rem, 9vw, 6rem) var(--vx-gap); }
.vx-section__head{
  max-width: var(--vx-container);
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  display: flex;
  gap: 1.25rem;
  align-items: baseline;
}
.vx-section__number{
  font-family: var(--vx-font-display);
  color: var(--vx-gold-deep);
  font-size: .85rem;
}
.vx-section__title{
  font-family: var(--vx-font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0 0 .5rem;
}
.vx-section__sub{ color: var(--vx-stone); margin: 0; max-width: 520px; }

/* ===== Brand cards ===== */
.vx-brands__grid{
  max-width: var(--vx-container);
  margin: 0 auto;
  display: grid;
  gap: var(--vx-gap);
  grid-template-columns: 1fr;
}
@media (min-width: 800px){
  .vx-brands__grid{ grid-template-columns: 1.2fr 1fr; }
}

.vx-brand-card{
  background: var(--vx-black-elevated);
  border: 1px solid var(--vx-black-line);
  border-radius: var(--vx-radius);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.vx-brand-card__eyebrow{
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--vx-stone);
  margin-bottom: 1.25rem;
}
.vx-brand-card__showcase{
  background: var(--vx-ivory);
  color: var(--vx-black);
  border-radius: var(--vx-radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.vx-brand-card__label{
  display: block;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vx-gold-deep);
  margin-bottom: .75rem;
}
.vx-brand-card__wordmark{
  font-family: "Bodoni Moda", var(--vx-font-display);
  font-size: 2.4rem;
  margin: 0 0 .4rem;
  letter-spacing: .04em;
}
.vx-brand-card__caption{ font-size: .75rem; color: var(--vx-stone); }
.vx-brand-card__desc{ color: var(--vx-stone); font-size: .92rem; margin: 0 0 1.5rem; }

.vx-brand-card--reserved{ display: flex; flex-direction: column; justify-content: center; opacity: .55; }
.vx-brand-card__showcase--empty{
  background: transparent;
  border: 1px dashed var(--vx-black-line);
  color: var(--vx-stone);
}
.vx-brand-card__placeholder{ font-family: var(--vx-font-display); font-style: italic; font-size: 1.2rem; margin: 0 0 .4rem; }

/* ===== Footer ===== */
.vx-footer{ border-top: 1px solid var(--vx-black-line); padding: clamp(3rem, 7vw, 4rem) var(--vx-gap) 1.5rem; }
.vx-footer__inner{
  max-width: var(--vx-container);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px){
  .vx-footer__inner{ grid-template-columns: 1.5fr repeat(3, 1fr); }
}
.vx-footer__mark{ width: 22px; height: 22px; color: var(--vx-gold); margin-bottom: 1rem; }
.vx-footer__wordmark{ font-family: var(--vx-font-display); letter-spacing: .06em; margin: 0 0 .6rem; }
.vx-footer__tagline{ color: var(--vx-stone); font-size: .85rem; max-width: 320px; margin: 0; }

.vx-footer__col{ display: flex; flex-direction: column; gap: .65rem; }
.vx-footer__col h3{
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vx-gold-deep);
  margin: 0 0 .35rem;
}
.vx-footer__col a{ color: var(--vx-stone); font-size: .88rem; }
.vx-footer__col a:hover{ color: var(--vx-gold); }

.vx-footer__bottom{
  max-width: var(--vx-container);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vx-black-line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--vx-stone);
}
.vx-footer__social{ display: flex; gap: 1.25rem; }
.vx-footer__social a:hover{ color: var(--vx-gold); }

/* ===== Conteúdo padrão de página (index.php) ===== */
.vx-page-content{
  max-width: 720px;
  margin: 1.5rem auto 0;
  color: var(--vx-stone);
}
.vx-page-content p{ margin: 0 0 1.25rem; }
