:root{
  --accent:#FCC500;
  --accentSoft:#FFE38A;   /* amarelo mais “branco” sem virar branco */
  --bg:#0b0c0f;
  --panel:#101114;
  --text:#ffffff;

  --maxStage: 1900px;
  --maxContent: 1320px;
  --gutter: 12px;

  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.06);
  --shadow: 0 26px 85px rgba(0,0,0,.60);
  --r: 44px;

  --personSize: clamp(760px, 62vh, 1040px);
  --personBottom: -90px;
  --personLeft: 45%;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 540px at 20% 10%, rgba(252,197,0,.10), transparent 60%),
    radial-gradient(900px 520px at 80% 0%, rgba(252,197,0,.08), transparent 55%),
    var(--bg);
}

a{ color:inherit; text-decoration:none; }
.page{ padding: 14px 0 34px; }

.container{
  width: min(var(--maxContent), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.skip{
  position:absolute; left:-999px; top:10px;
  background: var(--accent);
  color:#111;
  padding:10px 12px;
  border-radius: 12px;
  font-weight: 900;
}
.skip:focus{ left: 10px; }

.stage{
  width: min(var(--maxStage), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto 36px;
  border-radius: var(--r);
  border: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.stage::before{
  content:"";
  position:absolute; inset:0;
  border-radius: var(--r);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  pointer-events:none;
}

.stage__inner{
  width: min(var(--maxContent), 100%);
  margin: 0 auto;
  padding: 78px 0;
  position: relative;
}

/* HERO */
.stage--hero{
  min-height: 900px;
  background: var(--panel);
}

.stage--hero::before{
  content:"";
  position:absolute; inset:-22px;
  background:
    radial-gradient(1200px 520px at 20% 15%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.78)),
    url("../assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(6px) saturate(.88);
  opacity: .90;
}

.stage--hero::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(900px 600px at 50% 25%, rgba(0,0,0,.04), rgba(0,0,0,.66));
}

.stage--hero .stage__inner{
  position: relative;
  z-index: 1;
  min-height: 900px;
  padding: 78px 0;
}

/* watermark */
.watermark{
  position:absolute;
  inset:auto 0 0 0;
  padding: 0 0 18px;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(84px, 10vw, 175px);
  opacity: .06;
  pointer-events:none;
  user-select:none;
  white-space: nowrap;
}
.watermark--panel{ opacity: .05; }

.caret{
  display:inline-block;
  margin-left: 6px;
  opacity: .75;
  animation: blink 1s steps(2,end) infinite;
}
@keyframes blink{ 50%{ opacity: 0; } }

/* HERO GRID */
.hero{
  display:grid;
  grid-template-columns: 1.06fr 1.34fr .84fr;
  gap: 28px;
  align-items: center;
  min-height: 820px;
}

.hero__hello{
  margin: 0 0 10px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 14px;
}

.hero__headline{
  margin: 0 0 22px;
  text-transform: uppercase;
  line-height: .93;
  letter-spacing: -1.4px;
  font-weight: 900;
  font-size: clamp(36px, 3.8vw, 66px);
}
.hero__headlineStrong{ color:#fff; }
.hero__headline span:not(.hero__headlineStrong){ color: rgba(255,255,255,.44); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .12s ease, filter .12s ease;
  user-select:none;
}
.btn__icon{ font-weight: 900; }

/* ✅ BOTÃO DEGRADÊ NEON */
.btn--primary{
  background: linear-gradient(90deg, var(--accent) 0%, #FFD84A 45%, var(--accentSoft) 100%);
  color:#111;
  border: 1px solid rgba(0,0,0,.25);
  box-shadow:
    0 18px 50px rgba(252,197,0,.18),
    0 0 0 1px rgba(252,197,0,.18) inset;
}
.btn--primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.05) saturate(1.05);
}
.btn--sm{ padding: 12px 18px; }

/* CENTRO (foto - desktop) */
.hero__center{
  position: relative;
  min-height: 820px;
  overflow: visible;
}

.hero__person{
  position: absolute;
  left: var(--personLeft);
  bottom: var(--personBottom);
  transform: translateX(-50%) translateY(10px);
  height: var(--personSize);
  width: auto;
  max-width: none;
  object-fit: contain;
  z-index: 2;
  filter: grayscale(1) contrast(1.12) drop-shadow(0 40px 95px rgba(0,0,0,.55));
}

/* RIGHT */
.hero__right{ position: relative; z-index: 3; }

.hero__brand{
  display:flex;
  justify-content:flex-start;
  margin-bottom: 12px;
}
.hero__logo{
  height: 46px;
  width:auto;
  filter: grayscale(1);
  opacity: .92;
}
.hero__brand--mobile{ display:none; }

.meter{ display:grid; gap: 18px; margin-top: 10px; }
.meter__item{ display:grid; gap: 8px; }

.meter__top{
  display:flex;
  align-items:center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-weight: 700;
  font-size: 13px;
}
.meter__line{
  height: 1px;
  flex: 1;
  background: rgba(255,255,255,.16);
}
.meter__value{
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: -1px;
  display:flex;
  align-items:baseline;
  gap: 10px;
  color: var(--accent);
  font-size: clamp(30px, 2.2vw, 46px);
}
.meter__value--plain{
  color: var(--accent);
  font-size: clamp(34px, 2.8vw, 56px);
}
.meter__prefix{ opacity: .98; font-size: .92em; }
.meter__num{ font-variant-numeric: tabular-nums; }

/* FAIXA (OFF) */
.hero__strip{ display:none !important; }

/* SECTIONS */
.section{ padding: 18px 0 26px; }
.section--projects{
  padding-top: 54px;
  padding-bottom: 76px;
}

/* TITLES */
.sectionTitle{
  text-align:center;
  margin: 0 0 24px;
}
.sectionTitle__h2{
  margin: 0 0 8px;
  font-size: clamp(26px, 2.4vw, 46px);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 900;
}
.sectionTitle__dim{ color: rgba(255,255,255,.55); }
.sectionTitle__accent{ color: var(--accent); }
.sectionTitle__p{
  margin: 0;
  color: rgba(255,255,255,.70);
  max-width: 72ch;
  margin-inline: auto;
  line-height: 1.55;
  font-weight: 600;
}

/* ==========================
   FORMAÇÃO COMPLETA (3 cards)
   ========================== */
.section--projects .container{
  width: min(1500px, calc(100% - (var(--gutter) * 2)));
}

.bannerRow{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 26px;
  align-items: stretch;
}

.banner{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  transform: translateY(0);
  transition: transform .12s ease, filter .12s ease;
}

.banner__img{
  position:absolute; inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  display:block;
  filter: contrast(1.05) saturate(.95);
}

.banner__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 420px at 18% 8%, rgba(0,0,0,.10), rgba(0,0,0,.78));
}

.banner__cta{
  position:absolute;
  left: 18px;
  bottom: 16px;
  display:inline-flex;
  gap: 8px;
  align-items:center;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  z-index: 1;
}

.banner:hover{
  transform: translateY(-3px);
  filter: brightness(1.03);
}

/* PAINEL 2 CARDS */
.stage--panel{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  margin-top: 20px;
}

.bigCards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  padding-top: 8px;
}

.bigCard{
  position: relative;
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  min-height: 420px;
  padding: 26px;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bigCard__overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 360px at 15% 85%, rgba(0,0,0,.10), rgba(0,0,0,.80));
}
.bigCard > *{ position: relative; z-index: 1; }

.bigCard__kicker{
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
}
.bigCard__title{
  margin: 0 0 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.6px;
  line-height: 1.05;
  font-size: clamp(22px, 1.7vw, 32px);
  max-width: 30ch;
}
.bigCard__btn{ width: 100%; padding: 16px 22px; }

.bigCard--train{
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    url("../assets/treinamentosp.png");
}
.bigCard--talk{
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    url("../assets/baixemidia.png");
}

/* ASSESSORIA */
.bigHeading{
  text-align:center;
  margin: 8px 0 22px;
  font-size: clamp(30px, 3vw, 56px);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.assist{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.assist__label{
  margin: 0 0 12px;
  color: rgba(255,255,255,.60);
  font-weight: 700;
}

.assistList{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 18px;
}

.assistList li{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  color: rgba(255,255,255,.86);
  font-weight: 700;
  line-height: 1.45;
}

.assistList__n{
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .05em;
}

.whatsCard{
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 28px;
  min-height: 240px;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 14px;
  text-align:center;
}

/* WHATSAPP */
.whatsIcon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(37,211,102,.14);
  border: 1px solid rgba(37,211,102,.40);
  box-shadow:
    inset 0 0 0 1px rgba(37,211,102,.18),
    0 0 24px rgba(37,211,102,.22),
    0 12px 30px rgba(0,0,0,.35);
}

.whatsIcon__svg{
  width: 32px;
  height: 32px;
  fill: #25D366;
  filter: drop-shadow(0 0 10px rgba(37,211,102,.35));
}

.whatsCard__title{
  margin: 0;
  font-weight: 800;
  color: rgba(255,255,255,.80);
}

/* FOOTER */
.stage--footer{
  margin-top: 26px;
  background: rgba(255,255,255,.03);
}

.footerBar{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap: 12px;
}

.footerBar__left p,
.footerBar__right p{
  margin: 0;
  color: rgba(255,255,255,.68);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
}
.footerBar__right{ text-align:right; }

.footerBar__center img{
  height: clamp(44px, 3vw, 64px);
  width:auto;
  opacity: .94;
  filter: grayscale(1);
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  .btn{ transition:none !important; }
  .banner:hover{ transform:none; }
  .caret{ animation:none !important; opacity:.75; }
}

/* ==========================
   RESPONSIVO
   ========================== */
@media (max-width: 1200px){
  .stage__inner{ padding: 58px 0; }
  .bannerRow{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 1020px){
  .stage__inner{ padding: 42px 0; }
  .stage--hero{ min-height: auto; }
  .stage--hero .stage__inner{ min-height: auto; }

  .hero{
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }

  /* MOBILE: sem foto por enquanto */
  .hero__center{ display:none !important; }

  /* some a logo do lado direito no mobile */
  .hero__right .hero__brand{ display:none !important; }

  /* logo abaixo do botão (mobile) */
  .hero__brand--mobile{
    display:flex;
    justify-content:flex-start;
    margin-top: 14px;
    opacity: .92;
  }
  .hero__brand--mobile .hero__logo{
    height: 40px;
    width: auto;
  }

  /* enxuga box no mobile */
  .stage--hero .stage__inner{
    padding: 34px 0 20px !important;
  }
  .hero__headline{ margin-bottom: 14px !important; }
  .meter{ margin-top: 6px !important; gap: 14px !important; }

  /* Formação: 1 coluna */
  .bannerRow{ grid-template-columns: 1fr; }
  .banner{
    width: min(820px, 100%);
    margin: 0 auto;
    aspect-ratio: 16 / 9;
  }

  .bigCards{ grid-template-columns: 1fr; }
  .assist{ grid-template-columns: 1fr; max-width: 720px; }

  .footerBar{
    grid-template-columns: 1fr;
    text-align:center;
  }
  .footerBar__right{ text-align:center; }
}

/* PC: hero mais baixo */
@media (min-width: 1021px){
  .stage--hero .stage__inner{
    padding-top: 44px !important;
    padding-bottom: 14px !important;
    min-height: auto !important;
  }
  .stage--hero{ min-height: 760px !important; }
  .hero{ min-height: 620px !important; }
  .hero__center{ min-height: 620px !important; }
}
