

    body{ color:#111; background:#fff; }
    a{ text-decoration:none; }
    .btn-brand{
      background:var(--brand);
      border-color:var(--brand);
      color:#fff;
    }
    .btn-brand:hover{ filter:brightness(.92); color:#fff; }

    /* Top bar */
    .topbar{
      border-bottom:1px solid var(--border);
      background:#fff;
    }
    .topbar .mini{
      font-size:.92rem;
      color:var(--muted);
    }

    /* Hero */
    .hero{
      padding: 28px 0 10px 0;
    }
    .hero h1{ letter-spacing:-.02em; }
    .hero .lead{ color:var(--muted); }
    .feature-row{
      gap:12px;
      flex-wrap:wrap;
    }
    .feature{
      border:1px solid var(--border);
      background:#fff;
      border-radius:14px;
      padding:12px 14px;
      display:flex;
      align-items:flex-start;
      gap:10px;
      min-width: 240px;
      box-shadow: 0 1px 0 rgba(0,0,0,.03);
    }
    .feature i{ font-size:1.15rem; }
    .feature .t{ font-weight:600; margin:0; }
    .feature .s{ margin:0; color:var(--muted); font-size:.95rem; }

    /* TOC */
    .toc-card{
      border:1px solid var(--border);
      background:#fff;
      border-radius:14px;
      padding:14px;
      box-shadow: 0 1px 0 rgba(0,0,0,.03);
    }
    .toc-title{
      font-weight:700;
      font-size: .95rem;
      margin-bottom: 10px;
    }
    .toc a{
      display:inline-block;
      padding:6px 10px;
      margin:4px 6px 0 0;
      border:1px solid var(--border);
      border-radius:999px;
      color:#111;
      font-size:.92rem;
      background:#fff;
    }
    .toc a:hover{ background:var(--soft); }

    /* Content */
    .content-wrap{
      padding: 8px 0 48px;
    }
    .section{
      padding: 18px 0;
      border-bottom:1px solid var(--border);
    }
    .section:last-child{ border-bottom:0; }
    .section h2{
      font-size:1.35rem;
      letter-spacing:-.01em;
      margin-bottom:10px;
    }
    .section p{ color:#111; margin:0; line-height:1.65; }
    .img-ph{
      width:100%;
      aspect-ratio: 16/8;
      border-radius:16px;
      border:1px solid var(--border);
      background: linear-gradient(135deg, #f3f4f6, #ffffff);
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--muted);
      font-weight:600;
      font-size:.95rem;
      margin: 14px 0 0;
    }

    /* Sticky side (optional) */
    @media (min-width: 992px){
      .sticky-col{
        position: sticky;
        top: 16px;
      }
    }

    /* Footer CTA */
    .cta{
      background: var(--soft);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
      margin-top: 18px;
    }
    .cta p{ color:var(--muted); }
    .footer{
      border-top:1px solid var(--border);
      color:var(--muted);
      padding: 16px 0;
      font-size: .92rem;
    }
	
	
	
	.object-fit-cover {
		object-fit: cover;
		width: 100%;
		height: 100%;
	}




	
	
.topic-illustration{
  max-width: 640px;
  margin: 24px auto 14px;
  padding: 0;
}

.topic-illustration img{
  width: 100%;
  height: auto;
  display: block;

  /* “cara de card” leve */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);

}

/* Melhor respiro no mobile */
@media (max-width: 480px){
  .topic-illustration{
    margin: 18px auto 12px;
    padding: 0 12px;
  }

  .topic-illustration img{
    border-radius: 14px;
  }
}













:root{
  --happy-gold:#C2A45C;
  --happy-black:#000000;
  --brand:#000000;
  --muted:#6b7280;
  --soft:#f5f5f5;
  --border:#e5e7eb;
}

.happy-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--happy-black);
  z-index: 9999;
  display: flex;
  align-items: center;
}

.happy-logo{
  height: 40px;
  width: auto;
}



.section h2,
.section h3,
.toc-title{
  color: var(--happy-gold);
}


.btn-brand{
  background: var(--happy-black);
  border-color: var(--happy-black);
  color:#fff;
}

.btn-brand:hover{
  background:#111;
  border-color:#111;
}


.feature i{
  color: var(--happy-gold);
}


ul{
  list-style:none;
  padding-left:0;
}

ul li{
  position:relative;
  padding-left:18px;
}

ul li::before{
  content:"•";
  position:absolute;
  left:0;
  color: var(--happy-gold);
  font-size:18px;
  line-height:1;
}



.cta{
  background:#fafafa;
  border:1px solid var(--border);
  border-left:4px solid var(--happy-gold);
  border-radius:18px;
  padding:22px;
}


.footer{
  border-top:1px solid var(--border);
  color:#777;
  padding:20px 0;
  font-size:.9rem;
}
