:root {
  --petroleo: #00414A;
  --verde: #126363;
  --lima: #D8DE3E;
  --branco: #FFFFFF;
  --branco-72: rgba(255, 255, 255, .72);
  --branco-12: rgba(255, 255, 255, .12);
  --branco-08: rgba(255, 255, 255, .08);
  --card-solido: ; /* Fundo escuro 100% sólido sem transparência */
  --ink: #0b2d31;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #0b2d31;
}

body {
  font-family: 'Barlow', 'Lato', 'Noto Sans', Arial, sans-serif;
}

@page {
  size: 13.333333in 7.5in;
  margin: 0;
}

.deck {
  width: 1280px;
  margin: 0 auto;
}

.slide {
  position: relative;
  width: 1280px;
  height: 720px;
  overflow: hidden;
  color: var(--branco);
  background: var(--petroleo);
  break-after: page;
  page-break-after: always;
  padding: 64px 78px 54px;
  z-index: 0;
}

.slide:last-child {
  break-after: auto;
  page-break-after: auto;
}

/* Garante que o conteúdo fique acima da marca d'água e das imagens de fundo */
.slide > * {
  position: relative;
  z-index: 2;
}

/* Marca d'água */
.slide::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: -245px;
  bottom: 105px;
  background-image: url("../img/logo-embracon-branca.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.11;
  z-index: 0;
  pointer-events: none;
}

/* Linha verde-lima */
.slide::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 5px;
  left: 78px;
  bottom: 34px;
  background: var(--lima);
  z-index: 1;
  pointer-events: none;
}

/* Efeito de imagem com Fading à direita (Slides 01 e 09) */
.slide-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0) 100%);
}

.kicker {
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 24px;
  line-height: .95;
  letter-spacing: 1.6px;
  color: var(--lima);
  margin: 0 0 14px 0;
}

h1, h2, h3 {
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  margin: 0;
  font-weight: 400;
}

h1 {
  font-size: 105px;
  line-height: .88;
  letter-spacing: .3px;
}

h2 {
  font-size: 75px;
  line-height: .92;
  letter-spacing: .2px;
}

h3 {
  font-size: 38px;
  line-height: 1;
}

.title-long {
  font-size: 75px;
}

.accent {
  color: var(--lima);
}

.lead {
  font-size: 23px;
  line-height: 1.3;
  font-weight: 500;
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--branco);
}

.footer {
  position: absolute;
  right: 78px;
  bottom: 24px;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* Cover */
.cover {
  padding-top: 78px;
}

.cover .title-wrap {
  width: 780px;
  position: relative;
  z-index: 2;
}

.cover .objective {
  width: 750px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  margin-top: 36px;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  line-height: 1.4;
}

/* Grids e Cards Sólidos (Sem Transparência) */
.goal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.goal-card {
  background: var(--card-solido);
  border-top: 4px solid var(--lima);
  border-left: 1px solid rgba(216, 222, 62, 0.2);
  border-right: 1px solid rgba(216, 222, 62, 0.2);
  border-bottom: 1px solid rgba(216, 222, 62, 0.2);
  padding: 24px 22px;
  min-height: 215px;
}

.goal-card .num {
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 50px;
  color: var(--lima);
  line-height: 1;
  margin-bottom: 12px;
}

.goal-card h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.goal-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  color: var(--branco-72);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 30px;
}

.card {
  background: var(--verde);
  padding: 28px 30px;
  min-height: 300px;
  border-radius: 2px;
}

.card.light {
  background: var(--branco);
  color: var(--petroleo);
}

.card .eyebrow {
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 22px;
  letter-spacing: 1.4px;
  color: var(--lima);
  margin-bottom: 12px;
}

.card.light .eyebrow {
  color: var(--verde);
}

.card h3 {
  font-size: 42px;
  margin-bottom: 14px;
}

.card p {
  font-size: 19px;
  line-height: 1.4;
  margin: 0;
}

/* Bullets Customizados */
.card ul, .list-panel ul {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.card li, .list-panel li {
  position: relative;
  padding-left: 22px;
  font-size: 19px;
  line-height: 1.35;
  margin: 10px 0;
}

/* Novo estilo de Bullet (Quadrado Minimalista Verde-Lima) */
.card li::before, .list-panel li::before {
  content: '▪';
  font-size: 18px;
  color: var(--lima);
  position: absolute;
  left: 0;
  top: -2px;
}

.card.light li::before {
  color: var(--verde);
}

/* Exemplos */
.example-grid {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: stretch;
  margin-top: 36px;
}

.example-panel {
  background: var(--card-solido);
  border: 1px solid rgba(216, 222, 62, 0.25);
  padding: 30px;
  min-height: 280px;
}

.example-panel h3 {
  font-size: 38px;
  margin-bottom: 14px;
}

.example-panel p {
  margin: 0;
  font-size: 19px;
  line-height: 1.4;
}

.example-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.example-center .vs {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lima);
  color: var(--petroleo);
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 28px;
}

.tag {
  display: inline-block;
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--lima);
  margin-bottom: 10px;
}

/* Governança */
.governance {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.gov-card {
  min-height: 300px;
  border: 1px solid rgba(216, 222, 62, 0.25);
  padding: 24px 22px;
  position: relative;
  background: var(--card-solido);
}

.gov-card .index {
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 55px;
  color: var(--lima);
  line-height: .8;
  margin-bottom: 18px;
}

.gov-card h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.gov-card p {
  font-size: 17px;
  line-height: 1.38;
  margin: 0;
  color: var(--branco-72);
}

/* Leis / Regras */
.compare-label {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 24px;
  color: rgba(255, 255, 255, .35);
}

.rule-card strong {
  color: var(--lima);
  font-weight: 600;
}

.rule-card.light strong {
  color: var(--petroleo);
}

/* Ciclo Financeiro */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 36px;
  align-items: stretch;
}

.flow-step {
  min-height: 250px;
  background: var(--card-solido);
  padding: 22px 18px;
  border-top: 4px solid rgba(255, 255, 255, .3);
  border-left: 1px solid rgba(255, 255, 255, .1);
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.flow-step.active {
  border-top-color: var(--lima);
  background: var(--verde);
}

.flow-step .n {
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 46px;
  color: var(--lima);
  line-height: 1;
}

.flow-step h3 {
  font-size: 28px;
  margin: 10px 0 10px;
}

.flow-step p {
  font-size: 16px;
  line-height: 1.35;
  margin: 0;
  color: var(--branco-72);
}

/* Dica do Especialista */
.tip-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  margin-top: 28px;
  align-items: stretch;
}

.metric {
  background: var(--lima);
  color: var(--petroleo);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.metric .small-label {
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.metric .money {
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 68px;
  line-height: .95;
  margin: 4px 0 2px;
}

.metric .arrow {
  font-family: 'Bebas Neue', 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
  font-size: 22px;
  margin: 4px 0;
  opacity: .8;
}

.metric .money.big {
  font-size: 76px;
}

.tip-copy {
  background: var(--card-solido);
  border: 1px solid rgba(216, 222, 62, 0.25);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tip-copy p {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 14px;
}

.tip-copy .quote {
  font-size: 21px;
  font-weight: 600;
  color: var(--lima);
  margin: 0;
}

/* Slide Final */
.final {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 60px;
}

.final h2 {
  font-size: 90px;
  max-width: 950px;
}

.final .formula {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.final .pill {
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 12px 18px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.final .pill.accent-pill {
  background: var(--lima);
  color: var(--petroleo);
  border-color: var(--lima);
  font-weight: 700;
}

.final .summary {
  margin-top: 26px;
  width: 900px;
  font-size: 21px;
  line-height: 1.4;
  color: var(--branco-72);
}

@media print {
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 13.333333in;
    background: transparent;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .deck {
    width: 13.333333in !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .slide {
    width: 13.333333in !important;
    height: 7.5in !important;
    margin: 0 !important;
    break-after: page;
    page-break-after: always;
    break-inside: avoid;
    page-break-inside: avoid;
    overflow: hidden;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}