:root{
  --bgc: #ffffff;           /* fundo principal */
  --bgc-alt: #ededed;       /* fundo alternativo / seções */
  --cardc: #e4e4e4;         /* cor de cartões */
  --dark: #212529;         /* cor de texto principal / escuro */
  --mutedc: #474c4a;        /* texto secundário */
  --brand: #5d486e;        /* roxo médio (marca) */
  --brand-dark: #411268;   /* roxo escuro (destaque) */
  --accent: #cdb7df;       /* lilás claro (CTA) */
  --text-light: #f8f9fa;   /* branco suave para textos sobre fundo escuro */
  --radiusc: 18px;          /* border-radius comum */
  --shadow: 0 6px 20px rgba(33,37,41,0.08);
  --container-max: 1100px;
  --mobile-break: 900px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
  font-size:16px;               /* body 16px */
  line-height:1.5;              /* body line-height ~24px */
  color:var(--dark);
  background:var(--bgc);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.container{
  width:min(var(--container-max), 92%);
  margin:0 auto;
}
a{color:var(--brand-dark); text-decoration:none; font-weight:600}
a:hover{text-decoration:none}
.hero{
  padding:80px 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color:var(--text-light);
  text-align:center;
}
.hero .container{display:flex;flex-direction:column;align-items:center;gap:12px}
.hero h1{
  margin:0;
  font-weight:600;
  font-size:clamp(28px, 4vw, 38.4px); /* H1 = 38.4px conforme Stylify */
  line-height:1.05;
  color:var(--text-light);
}
.hero p{margin:0;color:rgba(248,249,250,0.88);font-size:18px;max-width:820px}
.section{padding:64px 0}
.section h2{
  margin:0 0 8px;
  font-size:32px;                /* H2 = 32px (Stylify) */
  color:var(--brand-dark);
  text-align:center;
}
.section p.lead{
  margin:0 auto 28px;
  color:var(--mutedc);
  max-width:720px;
  text-align:center;
}
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:20px;
  margin-top:18px;
}
.card{
  background:var(--bgc-alt);
  border-radius:var(--radiusc);
  padding:18px;
  box-shadow:var(--shadow);
  border:1px solid rgba(33,37,41,0.04);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.card h3{margin:0;color:var(--brand-dark);font-size:18px}
.card p{margin:0;color:var(--mutedc);font-size:15px}
.card img{width:100%;height:160px;object-fit:cover;border-radius:12px;display:block}
.pill{
  display:inline-block;
  background:var(--cardc);
  padding:8px 12px;
  border-radius:999px;
  color:var(--mutedc);
  font-size:13px;
  border:1px solid rgba(33,37,41,0.03);
}
.carousel{
  display:flex;
  gap:12px;
  overflow:auto;
  padding-bottom:6px;
  scroll-snap-type:x mandatory;
}
.carousel::-webkit-scrollbar{height:8px}
.carousel::-webkit-scrollbar-thumb{background:rgba(33,37,41,0.08);border-radius:999px}
.shot{
  flex:0 0 260px;
  scroll-snap-align:start;
  border-radius:14px;
  overflow:hidden;
  background:var(--cardc);
  border:1px solid rgba(33,37,41,0.04);
}
.shot img{width:100%;height:160px;object-fit:cover;display:block}
.shot .cap{padding:10px;background:var(--dark);color:var(--text-light);font-size:14px}
.bullet{display:flex;gap:12px;align-items:flex-start;background:transparent;padding:8px 0}
.bullet strong{display:block;color:var(--brand-dark)}
.jobs .toolbar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-start;
  margin-bottom:20px;
}
.jobs input[type="search"],
.jobs select{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #dcdcdc;
  background:#fff;
  min-width:200px;
  font-size:14px;
  color:var(--dark);
}
.jobs table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px; 
}
.jobs thead th{
  text-align:left;
  font-size:12px;
  color:var(--brand-dark);
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-weight:700;
  padding:8px 12px;
}
.jobs tbody tr{
  background:var(--bgc-alt);
  border-radius:12px;
  box-shadow:var(--shadow);
  transition:transform .12s ease;
}
.jobs tbody tr:hover{transform:translateY(-3px)}
.jobs td{
  padding:12px 14px;
  vertical-align:middle;
  color:var(--dark);
  font-size:15px;
}
.jobs tbody tr td:first-child{border-top-left-radius:12px;border-bottom-left-radius:12px}
.jobs tbody tr td:last-child{border-top-right-radius:12px;border-bottom-right-radius:12px;text-align:right}
.tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(33,37,41,0.06);
  color:var(--mutedc);
  font-size:13px;
}
.container .card .btn-outline-light {
    background-color: rgb(65 18 104 / 80%);
    border: 1px solid #251632;
    color: #fff;
    height: 70px;
    font-size: 26px;
    min-width: 100px;
}
.container .card .content-button {
    padding-top: 25px;
    text-align: end;
}
.btn-sm{
  display:inline-block;
  padding:8px 12px;
  border-radius:10px;
  background:var(--brand-dark);
  color: #fff !important;
  font-weight:700;
  text-decoration:none;
  border:0;
  transition:opacity .12s;
}
.btn-sm:hover{opacity:0.92}
.muted{color:var(--mutedc)}
.center{text-align:center}
@media (max-width: 900px){
  .hero{padding:56px 0}
  .hero p{font-size:16px}
  .card img{height:140px}
  .shot img{height:140px}
  .jobs thead{display:none} /* simplificar tabela em mobile */
  .jobs table{border-spacing:0}
  .jobs tbody tr{display:block;padding:12px;border-radius:12px}
  .jobs tbody tr td{display:flex;justify-content:space-between;padding:10px 12px;border-bottom:1px dashed rgba(33,37,41,0.04)}
  .jobs tbody tr td:last-child{border-bottom:0}
}