/* HOME — Sou novo por aqui? */
.home-newcomer-wrap{
  padding:24px 0 4px;
}
.home-newcomer{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:22px;
  align-items:center;
  padding:24px 28px;
  border:1px solid #e2e7eb;
  border-left:4px solid #b8862f;
  border-radius:8px;
  background:
    radial-gradient(circle at 92% 0,rgba(184,134,47,.10),transparent 24%),
    #f8fafb;
  color:#173050;
}
.home-newcomer-icon{
  width:52px;height:52px;
  display:grid;place-items:center;
  border:1px solid rgba(184,134,47,.38);
  border-radius:50%;
  color:#b8862f;
}
.home-newcomer-icon svg{
  width:29px;height:29px;
  fill:none;stroke:currentColor;stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round;
}
.home-newcomer-kicker{
  margin:0 0 3px;
  color:#a87517;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.home-newcomer h2{
  margin:0 0 5px;
  font:700 26px/1.08 Georgia,serif;
  color:#173050;
}
.home-newcomer-copy>p:last-child{
  margin:0;
  max-width:710px;
  color:#667284;
  font-size:14px;
  line-height:1.5;
}
.home-newcomer-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  white-space:nowrap;
  color:#173050;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
}
.home-newcomer-link span{color:#b8862f;font-size:20px;transition:transform .18s ease}
.home-newcomer-link:hover span{transform:translateX(3px)}

/* Acessos rápidos: quatro entradas equilibradas */
.quick{grid-template-columns:repeat(4,1fr)}

@media(max-width:900px){
  .home-newcomer{grid-template-columns:auto 1fr}
  .home-newcomer-link{grid-column:2}
  .quick{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:560px){
  .home-newcomer-wrap{padding-top:18px}
  .home-newcomer{
    grid-template-columns:1fr;
    gap:12px;
    padding:22px 20px;
  }
  .home-newcomer-icon{width:46px;height:46px}
  .home-newcomer h2{font-size:24px}
  .home-newcomer-link{grid-column:auto;margin-top:2px}
  .quick{grid-template-columns:1fr}
}


/* =========================================================
   V3 — ACESSOS RÁPIDOS COM ICONOGRAFIA
   ========================================================= */
.quick{
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.quick .quick-card{
  position:relative;
  min-height:132px;
  display:grid;
  grid-template-columns:44px 1fr auto;
  gap:15px;
  align-items:start;
  padding:24px 20px;
  border:1px solid #dfe5ea;
  border-radius:8px;
  background:#fff;
  color:#173050;
  text-decoration:none;
  transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease;
}

.quick .quick-card:hover{
  border-color:rgba(184,134,47,.62);
  box-shadow:0 8px 24px rgba(16,48,78,.07);
  transform:translateY(-2px);
}

.quick-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#b8862f;
}

.quick-icon svg{
  width:39px;
  height:39px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.quick-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.quick .quick-copy b{
  margin:1px 0 6px;
  color:#173050;
  font-size:17px;
  line-height:1.15;
}

.quick .quick-copy > span{
  color:#6b6f73;
  font-size:14px;
  line-height:1.4;
}

.quick-arrow{
  align-self:center;
  color:#b8862f;
  font-size:19px;
  line-height:1;
  transition:transform .18s ease;
}

.quick-card:hover .quick-arrow{
  transform:translateX(3px);
}

@media(max-width:900px){
  .quick{grid-template-columns:repeat(2,1fr)}
}

@media(max-width:560px){
  .quick{grid-template-columns:1fr}
  .quick .quick-card{
    min-height:0;
    grid-template-columns:40px 1fr auto;
    padding:20px 18px;
  }
  .quick-icon{width:40px;height:40px}
  .quick-icon svg{width:36px;height:36px}
}
