/* Hero */
:root { --seg-bg-h:150px; --seg-underlay-h:220px; }
.seg-hero { position: relative; overflow:hidden; }
/* Barra com degradê da esquerda (claro) para a direita (escuro) */
.seg-hero__bg { height:var(--seg-bg-h); background: linear-gradient(90deg, #0F3553 0%, #2E69C6 25%, #089EF4 60%); box-shadow: 0 2px 0 rgba(0,0,0,.12) inset; }
.seg-hero__shade { display:none; }
/* Plano de fundo invertido para o bloco de texto (de escuro para claro) */
.seg-hero__underlay { height: var(--seg-underlay-h); background: linear-gradient(90deg, #0F3553 0%, #0F3553 40%, #2E69C6 70%, #089EF4 100%); }
/* Título centralizado verticalmente na barra */
.seg-hero__content { position:absolute; z-index:2; top:0; left:50%; transform:translateX(-50%); width:100%; max-width:1170px; height:var(--seg-bg-h); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; text-align:center; padding:0 24px; box-sizing:border-box; }
.seg-hero__title { margin:0; color:#fff; font-family:'Poppins', Arial, sans-serif; font-weight:900; letter-spacing:1px; font-size:44px; text-transform:uppercase; line-height:1; }
.seg-hero__subtitle { margin:0; color:#0f3553; text-align:center; font-family:'Poppins', Arial, sans-serif; font-weight:900; text-transform:uppercase; font-size:44px; letter-spacing:1px; line-height:1; }
.seg-hero__subtitle--in-hero { color:#fff; text-align:center; }
.seg-hero__content-under { position:absolute; z-index:2; top:var(--seg-bg-h); left:50%; transform:translateX(-50%); width:100%; max-width:1170px; height:var(--seg-underlay-h); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; text-align:center; margin:0; padding:0 24px; box-sizing:border-box; }
.seg-hero__lead { color:#fff; max-width:920px; margin:12px auto; line-height:1.6; }
.seg-hero__lead--last { margin-bottom: 12px; }
.seg-hero__diag--bottom { display:none; }

/* Lista */
.seg-list { position:relative; background:#fff; padding:44px 0 60px; overflow:hidden; }
.seg-list .container { position:relative; z-index:2; }
.seg-section__title { color:#0f3553; text-transform:uppercase; font-family:'Poppins', Arial, sans-serif; font-weight:900; font-size:28px; margin:0 0 22px; }
.seg-section__title span { color:#2e6fc6; }
.seg-items { display:grid; grid-template-columns: 1fr; gap:18px 44px; justify-items:start; max-width:560px; }
.seg-item { text-align:left; }
.seg-item h3 { color:#2e6fc6; margin:0 0 6px; font-size:18px; font-weight:800; }
.seg-item p { color:#11324a; margin:0; line-height:1.6; }
.seg-cta { text-align:center; margin-top:20px; }
.seg-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0 20px;
  height: 48px;
  border-radius: 0;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg,
    var(--brandBlueDark, #0e3b62) 0%,
    var(--brandBlueMid, #0c619a) 50%,
    var(--brandBlueLight, #069cf1) 100%);
  border: 0;
  line-height: 1;
  white-space: nowrap;
}
.seg-cta__btn:hover { filter: brightness(1.05); }
.seg-list__diag { position:absolute; inset:0; background: linear-gradient(225deg, #2d7cc3 0%, #0b3a5a 100%); clip-path: polygon(45% 100%, 100% 32%, 100% 100%); z-index:1; pointer-events:none; filter: saturate(1.05); }

@media (max-width: 920px) {
  :root { --seg-bg-h:120px; --seg-underlay-h:200px; }
  .seg-hero__content { padding:0 18px; }
  .seg-hero__content-under { padding:0 18px; }
  .seg-items { grid-template-columns: 1fr; }
  .seg-list__diag { clip-path: polygon(60% 100%, 100% 48%, 100% 100%); }
}

@media (max-width: 560px) {
  .seg-hero__title { font-size:28px; }
  .seg-hero__subtitle { font-size:28px; }
  /* Mais respiro lateral e vertical no mobile */
  :root { --seg-bg-h:200px; --seg-underlay-h:400px; }
  .seg-hero__content { padding:12px 20px; }
  .seg-hero__content-under { padding:36px 20px; }
}

