/* ARQUIVO: style.css (REFINADO + ADVISOR MELHORADO) */

:root{
  --bg-0: #050505;
  --bg-1: #0b0b0b;
  --bg-2: #0f0f0f;

  --gold: #d4af37;
  --gold-bright: #f3e5ab;
  --gold-glow: rgba(212, 175, 55, 0.32);

  --text: rgba(255,255,255,0.94);
  --text-2: rgba(255,255,255,0.84);
  --muted: rgba(255,255,255,0.66);

  --line: rgba(255,255,255,0.10);

  --glass: rgba(22, 22, 22, 0.72);
  --glass-2: rgba(18, 18, 18, 0.58);

  --shadow: 0 18px 70px rgba(0,0,0,0.55);
}

/* Base */
html { scroll-behavior: smooth; }

body{
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  margin: 0;
  overflow-x: hidden;

  background:
    radial-gradient(1100px 900px at 12% 8%, rgba(212,175,55,0.11), transparent 55%),
    radial-gradient(900px 700px at 85% 22%, rgba(243,229,171,0.06), transparent 60%),
    radial-gradient(1200px 900px at 50% 120%, rgba(255,255,255,0.03), transparent 55%),
    linear-gradient(-45deg, var(--bg-0), #0a0a0a, #121212, #0b0b0b);
  background-size: 100% 100%, 100% 100%, 100% 100%, 300% 300%;
  animation: gradientBG 28s ease-in-out infinite;
}

/* Noise overlay (bem sutil) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .20;
}

/* Conteúdo acima do noise */
body > * { position: relative; z-index: 1; }

@keyframes gradientBG{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Tipografia */
h1, h2, h3, .serif{
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
}

p, li{
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-2);
}

strong, b{
  color: #fff;
  font-weight: 600;
}

/* Kicker / tracking */
.luxury-tracking{
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

/* Cards */
.glass-luxury{
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 3rem;
  box-shadow: var(--shadow);
  border-radius: 12px;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.glass-luxury:hover{
  background: rgba(28,28,28,0.78);
  border-color: rgba(212,175,55,0.42);
  transform: translateY(-4px);
  box-shadow: 0 28px 90px rgba(0,0,0,0.65);
}

/* Botões */
.btn-divoc{
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.78);
  padding: 1rem 2.3rem;
  color: #ffffff;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px;
}

.btn-divoc:hover{
  background: rgba(212,175,55,0.95);
  color: #060606;
  border-color: rgba(212,175,55,0.95);
  box-shadow: 0 0 26px var(--gold-glow);
  transform: translateY(-1px);
}

/* Linha dourada */
.gold-line{
  height: 2px;
  background: var(--gold);
  width: 72px;
  box-shadow: 0 0 14px rgba(212,175,55,0.55);
}

/* Spotlights */
.spotlight{
  position: absolute;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(212,175,55,0.10) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

/* Imagens */
img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== ADVISOR REFINADO ===== */
.advisor-wrap{
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.18);
  border-radius: 16px;
  padding: 22px;
}

@media (min-width: 1024px){
  .advisor-wrap{ padding: 28px; }
}

.advisor-photo{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 12px;
}

.advisor-photo-frame{
  width: min(420px, 100%);  /* foto menor */
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(212,175,55,.32);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
  background: rgba(255,255,255,.03);
}

.advisor-img{
  width:100%;
  height:100%;
  object-fit: cover;
  filter: none;            /* sem cinza */
  transform: scale(1.02);
}

.advisor-caption{
  width: min(420px, 100%);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 10px 12px;
  text-align:left;
}

.advisor-caption-title{
  display:block;
  color: rgba(255,255,255,.95);
  font-weight: 600;
  letter-spacing: .02em;
  font-size: 1.0rem;   /* mais legível */
}

.advisor-caption-sub{
  display:block;
  color: rgba(255,255,255,.72);
  font-size: .92rem;   /* mais legível */
  margin-top: 2px;
}

.advisor-lead{
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hl{
  color: rgba(255,255,255,.95);
  font-weight: 600;
  text-shadow: 0 0 18px rgba(212,175,55,.10);
}

.advisor-card{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 14px 14px;
}

.advisor-meta{
  color: rgba(255,255,255,.74);
  font-size: .95rem;
  line-height: 1.6;
}

/* Acessibilidade: reduzir animações */
@media (prefers-reduced-motion: reduce){
  body{ animation: none !important; }
  *{ transition: none !important; scroll-behavior: auto !important; }
}
