:root{
  --font-title: "Playfair", serif;
  --font-body: "Pontano Sans", sans-serif;
  --font-main: "Inter", sans-serif;
  --color-green-deep: #10200d;
  --color-green: #253719;
  --color-gold: #d6a533;
  --color-gold-light: #f2ca62;
  --color-cream: #fff8e7;
  --color-ink: #263122;
  --color-footer: #f4dfb9;
  --color-white: #ffffff;
}

*{
  box-sizing: border-box;
}

html,
body{
  margin: 0;
  min-height: 100%;
  background: var(--color-green-deep);
}

body{
  color: var(--color-white);
  font-family: var(--font-body);
}

img{
  display: block;
  max-width: 100%;
}

a{
  color: inherit;
}

.mainNR01{
  min-height: 100vh;
  background: var(--color-green-deep);
}

.heroNR01{
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(12, 24, 9, .92) 0%, rgba(18, 32, 13, .7) 32%, rgba(18, 32, 13, .18) 62%, rgba(18, 32, 13, 0) 100%),
    url("../img/cursos/fundoMainNR01.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center -70px;
}

.conteudoHeroNR01{
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 48px));
  padding: clamp(34px, 5vw, 58px) 0 36px clamp(24px, 5vw, 76px);
}

.imgMobileMainNR01{
  display: none;
}

.seloCursoNR01{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 24px;
  padding: 6px 14px;
  color: var(--color-gold);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1px solid rgba(214, 165, 51, .72);
  border-radius: 7px;
  background: rgba(24, 42, 16, .58);
}

.seloCursoNR01 img{
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.heroNR01 h1{
  max-width: 690px;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 800;
  line-height: .92;
  text-transform: uppercase;
}

.heroNR01 h1 span{
  display: block;
}

.heroNR01 h1 strong{
  color: var(--color-gold);
  font-weight: 900;
}

.subtituloNR01{
  margin: 12px 0 8px;
  color: var(--color-gold);
  font-family: var(--font-title);
  font-size: clamp(21px, 2.1vw, 29px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.linhaDouradaNR01{
  display: block;
  width: min(330px, 100%);
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, rgba(214, 165, 51, .88), rgba(214, 165, 51, .88) 46%, transparent 46%, transparent 48%, rgba(214, 165, 51, .88) 48%, rgba(214, 165, 51, .88));
}

.linhaDouradaNR01::after{
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin: -2px auto 0;
  border-radius: 50%;
  background: var(--color-gold);
}

.textoHeroNR01{
  max-width: 425px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-main);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.45;
}

.textoHeroNR01 strong{
  color: var(--color-gold-light);
  font-weight: 700;
}

.beneficiosHeroNR01{
  display: grid;
  grid-template-columns: repeat(4, minmax(76px, 1fr));
  max-width: 500px;
  margin: 0 0 28px;
}

.beneficioHeroNR01{
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 80px;
  padding: 0 12px;
  text-align: center;
  border-right: 1px solid rgba(214, 165, 51, .35);
}

.beneficioHeroNR01:last-child{
  border-right: 0;
}

.beneficioHeroNR01 img{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.beneficioHeroNR01 span{
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.botaoNR01{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(455px, 100%);
  min-height: 66px;
  margin-bottom: 24px;
  padding: 14px 28px;
  color: #16200f;
  font-family: var(--font-main);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 10px;
  background: linear-gradient(135deg, #f5c85d 0%, #dca93c 48%, #f6d46f 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .25), inset 0 0 0 1px rgba(255, 242, 185, .55);
  transition: transform .2s ease, box-shadow .2s ease;
}

.botaoNR01:hover,
.botaoNR01:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, .32), inset 0 0 0 1px rgba(255, 242, 185, .75);
}

.botaoNR01 img{
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.recursosNR01{
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  gap: 0;
  color: var(--color-white);
}

.recursoNR01{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  padding: 0 24px;
  border-right: 1px solid rgba(214, 165, 51, .45);
}

.recursoNR01:first-child{
  padding-left: 0;
}

.recursoNR01:last-child{
  border-right: 0;
}

.recursoNR01 img{
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.recursoNR01 span{
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.fraseHeroNR01{
  position: absolute;
  right: clamp(26px, 9vw, 235px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  width: min(365px, calc(100% - 48px));
  margin: 0;
  padding: 18px 22px;
  color: var(--color-white);
  background: rgba(29, 47, 24, .88);
  border: 1px solid rgba(214, 165, 51, .28);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .26);
}

.fraseHeroNR01 > span{
  color: var(--color-gold-light);
  font-family: Georgia, serif;
  font-size: 50px;
  line-height: .75;
}

.fraseHeroNR01 p{
  margin: 0;
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.35;
}

.fraseHeroNR01 strong{
  color: var(--color-gold-light);
  font-weight: 700;
}

.s1NR01{
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 5vw, 78px) clamp(18px, 5vw, 72px);
  color: var(--color-ink);
  background-image: url("../img/cursos/fundoS1NR01.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}

.conteudoS1NR01{
  display: grid;
  grid-template-columns: minmax(320px, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  width: min(1360px, 100%);
  margin: 0 auto;
}

.colunaProblemaNR01{
  max-width: 560px;
}

.etiquetaS1NR01{
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold);
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.colunaProblemaNR01 h2{
  max-width: 530px;
  margin: 0 0 22px;
  color: #1f291d;
  font-family: var(--font-title);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: .96;
  text-transform: uppercase;
}

.introS1NR01,
.textoChecklistS1NR01{
  max-width: 490px;
  margin: 0 0 11px;
  color: #394136;
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.35;
}

.textoChecklistS1NR01 strong{
  color: #17240f;
  font-weight: 800;
}

.checklistS1NR01{
  display: grid;
  gap: 7px;
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
}

.checklistS1NR01 li{
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 9px;
  color: #2a3327;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.25;
}

.checklistS1NR01 img{
  width: 15px;
  height: 15px;
  margin-top: 1px;
  object-fit: contain;
}

.cardVerdadeS1NR01{
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  margin: 0;
  padding: 18px 20px;
  background: rgba(255, 251, 241, .8);
  border: 1px solid rgba(214, 165, 51, .58);
  border-radius: 7px;
}

.cardVerdadeS1NR01 img{
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.cardVerdadeS1NR01 p{
  margin: 0;
  color: #23311f;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.3;
}

.cardVerdadeS1NR01 strong{
  display: block;
  color: #10200d;
  font-weight: 800;
}

.colunaConsequenciasNR01{
  max-width: 650px;
  justify-self: center;
}

.colunaConsequenciasNR01 h3{
  max-width: 410px;
  margin: 0 auto 20px;
  color: #17240f;
  font-family: var(--font-main);
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

.gridConsequenciasNR01{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cardConsequenciaNR01{
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 192px;
  padding: 22px 16px 18px;
  text-align: center;
  background: rgba(255, 251, 241, .88);
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(87, 68, 32, .12);
}

.cardConsequenciaNR01 img{
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  object-fit: contain;
}

.cardConsequenciaNR01 h4{
  min-height: 36px;
  margin: 0 0 9px;
  color: #6b4517;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.cardConsequenciaNR01 p{
  margin: 0;
  color: #4c5548;
  font-family: var(--font-main);
  font-size: 11px;
  line-height: 1.25;
}

.rodapeS1NR01{
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: center;
  gap: 14px;
  width: min(560px, 100%);
  margin: 22px 0 0 auto;
  padding: 13px 24px;
  color: var(--color-white);
  background: #203b23;
  border-radius: 7px;
  box-shadow: 0 13px 24px rgba(32, 59, 35, .28);
}

.rodapeS1NR01 img{
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.rodapeS1NR01 p{
  margin: 0;
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.35;
}

.rodapeS1NR01 strong{
  color: var(--color-gold-light);
  font-weight: 800;
}

.s2NR01{
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 5vw, 76px) clamp(18px, 5vw, 72px);
  color: var(--color-ink);
  background-image: url("../img/cursos/fundoS2NR01.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}

.conteudoS2NR01{
  width: min(1260px, 100%);
  margin: 0 auto;
}

.cabecalhoS2NR01{
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.cabecalhoS2NR01 > span{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--color-gold);
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cabecalhoS2NR01 > span::before,
.cabecalhoS2NR01 > span::after{
  content: "";
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 165, 51, .72));
}

.cabecalhoS2NR01 > span::after{
  background: linear-gradient(90deg, rgba(214, 165, 51, .72), transparent);
}

.cabecalhoS2NR01 h2{
  margin: 0 0 14px;
  color: #1b2618;
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.cabecalhoS2NR01 h2 strong{
  color: #5f3f14;
  font-weight: 900;
}

.cabecalhoS2NR01 p{
  max-width: 650px;
  margin: 0 auto;
  color: #354133;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.45;
}

.gridMetodoS2NR01{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 38px);
  align-items: stretch;
}

.cardMetodoS2NR01{
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  justify-items: center;
  padding: 28px 26px 24px;
  text-align: center;
  background: rgba(255, 251, 241, .78);
  border: 1px solid rgba(214, 165, 51, .22);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(84, 70, 42, .09);
}

.iconeMetodoS2NR01{
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #18361d;
}

.iconeMetodoS2NR01 img{
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.cardMetodoS2NR01 h3{
  margin: 0;
  color: #6b4517;
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.cardMetodoS2NR01 > span{
  display: block;
  margin: 5px 0 18px;
  color: #1c2b19;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.cardMetodoS2NR01 ul{
  display: grid;
  gap: 9px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 0;
  list-style: none;
}

.cardMetodoS2NR01 li{
  display: grid;
  grid-template-columns: 16px minmax(0, auto);
  align-items: start;
  justify-content: start;
  gap: 8px;
  color: #334030;
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
}

.cardMetodoS2NR01 li img{
  width: 14px;
  height: 14px;
  margin-top: 1px;
  object-fit: contain;
}

.cardMetodoS2NR01 aside{
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: 12px;
  min-height: 76px;
  margin: 0;
  padding: 13px 14px;
  text-align: center;
  background: rgba(255, 248, 231, .84);
  border: 1px solid rgba(214, 165, 51, .38);
  border-radius: 7px;
}

.cardMetodoS2NR01 aside img{
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.cardMetodoS2NR01 aside p{
  margin: 0;
  color: #344031;
  font-family: var(--font-main);
  font-size: 11px;
  line-height: 1.28;
}

.rodapeS2NR01{
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 16px;
  width: min(720px, 100%);
  margin: 30px auto 0;
  padding: 16px 28px;
  color: var(--color-white);
  background: #1d3c21;
  border-radius: 7px;
  box-shadow: 0 15px 30px rgba(29, 60, 33, .26);
}

.rodapeS2NR01 img{
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.rodapeS2NR01 p{
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.35;
}

.rodapeS2NR01 strong{
  color: var(--color-gold-light);
  font-weight: 800;
}

.s3NR01{
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 5vw, 72px);
  color: var(--color-ink);
  background-image: url("../img/cursos/fundoS3NR01.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}

.conteudoS3NR01{
  width: min(1360px, 100%);
  margin: 0 auto;
}

.cabecalhoS3NR01{
  max-width: 640px;
  margin: 0 0 28px;
  text-align: left;
}

.etiquetaS3NR01{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #a87622;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.etiquetaS3NR01 img{
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.cabecalhoS3NR01 h2{
  max-width: 620px;
  margin: 0;
  color: #1d2a1a;
  font-family: var(--font-title);
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 800;
  line-height: .98;
  text-transform: uppercase;
}

.linhaS3NR01{
  display: block;
  width: min(410px, 100%);
  height: 1px;
  margin: 16px 0 18px;
  background: linear-gradient(90deg, rgba(214, 165, 51, .9), rgba(214, 165, 51, .9) 46%, transparent 46%, transparent 48%, rgba(214, 165, 51, .9) 48%, rgba(214, 165, 51, .9));
}

.linhaS3NR01::after{
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: -3px auto 0;
  border-radius: 50%;
  background: var(--color-gold);
}

.cabecalhoS3NR01 p{
  max-width: 560px;
  margin: 0 0 14px;
  color: #344031;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.45;
}

.seloModulosS3NR01{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 6px 14px;
  color: #fff8e9;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  background: #284226;
  border-radius: 999px;
}

.seloModulosS3NR01 img{
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.carrosselModulosNR01{
  position: relative;
  display: grid;
  align-items: center;
  margin: 0 0 24px;
  padding: clamp(24px, 3vw, 42px);
  background: rgba(255, 251, 241, .62);
  border: 1px solid rgba(214, 165, 51, .24);
  border-radius: 18px;
  box-shadow: inset 0 0 28px rgba(214, 165, 51, .08);
}

.trilhoModulosNR01{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(182px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.trilhoModulosNR01::-webkit-scrollbar{
  display: none;
}

.cardModuloNR01{
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 250px;
  padding: 22px 18px 20px;
  text-align: center;
  background: rgba(255, 251, 243, .94);
  border-radius: 8px;
  border: 1px solid rgba(214, 165, 51, .18);
  box-shadow: 0 13px 24px rgba(80, 64, 36, .11);
  scroll-snap-align: start;
}

.cardModuloNR01 > span{
  position: absolute;
  left: 14px;
  top: 12px;
  color: #9c6e24;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
}

.cardModuloNR01 img{
  width: 64px;
  height: 64px;
  margin: 22px 0 16px;
  object-fit: contain;
}

.cardModuloNR01 h3{
  min-height: 39px;
  margin: 0 0 11px;
  color: #31412d;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.cardModuloNR01 p{
  margin: 0;
  color: #4a5547;
  font-family: var(--font-main);
  font-size: 11px;
  line-height: 1.35;
}

.setaModuloNR01{
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--color-gold-light);
  border: 0;
  border-radius: 50%;
  background: #17351b;
  box-shadow: 0 12px 22px rgba(23, 53, 27, .25);
  cursor: pointer;
  transform: translateY(-50%);
}

.setaModuloNR01 span{
  display: block;
  margin-top: -2px;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.setaModuloAnteriorNR01{
  left: 8px;
}

.setaModuloProximoNR01{
  right: 8px;
}

.rodapeS3NR01{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  color: #fff8e9;
  background: #19381d;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(25, 56, 29, .24);
}

.rodapeS3NR01 div{
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 14px 22px;
  border-right: 1px solid rgba(214, 165, 51, .35);
}

.rodapeS3NR01 div:last-child{
  border-right: 0;
}

.rodapeS3NR01 img{
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.rodapeS3NR01 span{
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.28;
}

.s4NR01{
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 5vw, 76px) clamp(20px, 5vw, 72px);
  color: var(--color-ink);
  background-image: url("../img/cursos/fundoS4NR01.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
}

.conteudoS4NR01,
.conteudoS5NR01{
  width: min(1360px, 100%);
  margin: 0 auto;
}

.cabecalhoS4NR01{
  max-width: 760px;
  margin-bottom: 28px;
}

.cabecalhoS4NR01 > span,
.cabecalhoS5NR01 > span{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #a87622;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cabecalhoS4NR01 > span::before,
.cabecalhoS5NR01 > span::before,
.cabecalhoS5NR01 > span::after{
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(214, 165, 51, .75);
}

.cabecalhoS4NR01 h2,
.cabecalhoS5NR01 h2{
  margin: 0;
  color: #1d2a1a;
  font-family: var(--font-title);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.cabecalhoS4NR01 h2 strong,
.cabecalhoS5NR01 h2 strong{
  color: #a87622;
  font-weight: 900;
}

.linhaS4NR01,
.linhaS5NR01{
  display: block;
  width: min(260px, 100%);
  height: 1px;
  margin: 18px 0 20px;
  background: linear-gradient(90deg, rgba(214, 165, 51, .9), rgba(214, 165, 51, .9) 44%, transparent 44%, transparent 49%, rgba(214, 165, 51, .9) 49%, rgba(214, 165, 51, .9));
}

.linhaS4NR01::after,
.linhaS5NR01::after{
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: -3px auto 0;
  border-radius: 50%;
  background: var(--color-gold);
}

.cabecalhoS4NR01 p{
  max-width: 610px;
  margin: 0;
  color: #344031;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.45;
}

.layoutS4NR01{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 250px);
  gap: 18px;
  align-items: stretch;
}

.gridPublicoS4NR01{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gridPublicoS4NR01 article{
  min-height: 154px;
  padding: 18px 16px 16px;
  text-align: center;
  background: rgba(255, 251, 241, .88);
  border: 1px solid rgba(214, 165, 51, .18);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(84, 70, 42, .08);
}

.gridPublicoS4NR01 img{
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.gridPublicoS4NR01 h3{
  min-height: 34px;
  margin: 0 0 8px;
  color: #35402f;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.gridPublicoS4NR01 p{
  margin: 0;
  color: #4b5548;
  font-family: var(--font-main);
  font-size: 11px;
  line-height: 1.3;
}

.cardLateralS4NR01{
  display: grid;
  align-content: center;
  gap: 12px;
  margin: 0;
  padding: 28px 24px;
  color: #fff8e9;
  background:
    radial-gradient(circle at right bottom, rgba(214, 165, 51, .28), transparent 42%),
    linear-gradient(145deg, #18371d, #102811);
  border: 1px solid rgba(214, 165, 51, .42);
  border-radius: 10px;
}

.cardLateralS4NR01 p,
.cardLateralS4NR01 span{
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.35;
}

.cardLateralS4NR01 strong{
  color: var(--color-gold-light);
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1.08;
}

.rodapeS4NR01{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  color: #fff8e9;
  background: #19381d;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(25, 56, 29, .24);
}

.rodapeS4NR01 div{
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  padding: 16px 34px;
  border-right: 1px solid rgba(214, 165, 51, .35);
}

.rodapeS4NR01 div:last-child{
  grid-template-columns: 1fr;
  border-right: 0;
}

.rodapeS4NR01 div:last-child p{
  max-width: 760px;
}

.rodapeS4NR01 img{
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.rodapeS4NR01 p{
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.35;
}

.rodapeS4NR01 strong{
  color: var(--color-gold-light);
}

.s5NR01{
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 5vw, 76px) clamp(20px, 5vw, 72px);
  color: var(--color-ink);
  background-image: url("../img/cursos/fundoS5NR01.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

.imgMobileS5NR01{
  display: none;
}

.conteudoS5NR01{
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(420px, 1fr);
  column-gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.cabecalhoS5NR01,
.textoS5NR01,
.gridCredenciaisS5NR01,
.cardReflexaoS5NR01,
.rodapeS5NR01{
  grid-column: 2;
}

.cabecalhoS5NR01{
  margin-bottom: 18px;
}

.textoS5NR01{
  max-width: 770px;
}

.textoS5NR01 p{
  margin: 0 0 12px;
  color: #344031;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.45;
}

.gridCredenciaisS5NR01{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 24px;
}

.gridCredenciaisS5NR01 article{
  text-align: center;
}

.gridCredenciaisS5NR01 img{
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.gridCredenciaisS5NR01 h3{
  margin: 0 0 6px;
  color: #6b4517;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gridCredenciaisS5NR01 p{
  margin: 0;
  color: #4b5548;
  font-family: var(--font-main);
  font-size: 11px;
  line-height: 1.3;
}

.cardReflexaoS5NR01{
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  margin: 0 0 18px;
  padding: 18px 28px;
  color: #fff8e9;
  background: #19381d;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(25, 56, 29, .24);
}

.cardReflexaoS5NR01 img{
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.cardReflexaoS5NR01 p{
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.4;
}

.cardReflexaoS5NR01 strong{
  color: var(--color-gold-light);
}

.rodapeS5NR01{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 251, 241, .82);
  border: 1px solid rgba(214, 165, 51, .26);
  border-radius: 8px;
}

.rodapeS5NR01 div{
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 13px 18px;
  border-right: 1px solid rgba(214, 165, 51, .28);
}

.rodapeS5NR01 div:last-child{
  border-right: 0;
}

.rodapeS5NR01 img{
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.rodapeS5NR01 span{
  color: #364331;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.s6NR01{
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 5vw, 78px) clamp(20px, 5vw, 72px);
  color: var(--color-ink);
  background-image: url("../img/cursos/fundoS6NR01.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

.s6NR01::before{
  content: "";
  display: none;
}

.conteudoS6NR01{
  position: relative;
  z-index: 1;
  width: min(1360px, 100%);
  margin: 0 auto;
}

.cabecalhoS6NR01{
  max-width: 750px;
  margin: 0 0 30px auto;
  text-align: center;
}

.cabecalhoS6NR01 > span{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #a87622;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cabecalhoS6NR01 > span::before,
.cabecalhoS6NR01 > span::after{
  content: "";
  width: 54px;
  height: 1px;
  background: rgba(214, 165, 51, .75);
}

.cabecalhoS6NR01 h2{
  margin: 0;
  color: #1d2a1a;
  font-family: var(--font-title);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.cabecalhoS6NR01 h2 strong{
  color: #a87622;
  font-weight: 900;
}

.linhaS6NR01{
  display: block;
  width: min(300px, 100%);
  height: 1px;
  margin: 18px auto 20px;
  background: linear-gradient(90deg, rgba(214, 165, 51, .9), rgba(214, 165, 51, .9) 44%, transparent 44%, transparent 49%, rgba(214, 165, 51, .9) 49%, rgba(214, 165, 51, .9));
}

.linhaS6NR01::after{
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: -3px auto 0;
  border-radius: 50%;
  background: var(--color-gold);
}

.cabecalhoS6NR01 p{
  max-width: 680px;
  margin: 0 auto;
  color: #344031;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.45;
}

.gridResultadosS6NR01{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(860px, 100%);
  margin: 0 0 26px auto;
}

.gridResultadosS6NR01 article{
  min-height: 210px;
  padding: 22px 18px 18px;
  text-align: center;
  background: rgba(255, 251, 241, .88);
  border: 1px solid rgba(214, 165, 51, .18);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(84, 70, 42, .08);
}

.gridResultadosS6NR01 img{
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.gridResultadosS6NR01 h3,
.gridBeneficiosS6NR01 h3{
  margin: 0 0 8px;
  color: #35402f;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.gridResultadosS6NR01 p,
.gridBeneficiosS6NR01 p{
  margin: 0;
  color: #4b5548;
  font-family: var(--font-main);
  font-size: 11px;
  line-height: 1.32;
}

.beneficiosS6NR01{
  padding: 18px 20px 20px;
  color: #fff8e9;
  background: rgba(14, 38, 17, .94);
  border: 1px solid rgba(214, 165, 51, .48);
  border-radius: 8px;
}

.tituloBeneficiosS6NR01{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #fff8e9;
  font-family: var(--font-title);
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}

.tituloBeneficiosS6NR01 span{
  height: 1px;
  background: rgba(214, 165, 51, .54);
}

.gridBeneficiosS6NR01{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.gridBeneficiosS6NR01 article{
  min-height: 136px;
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid rgba(214, 165, 51, .28);
}

.gridBeneficiosS6NR01 article:last-child{
  border-right: 0;
}

.gridBeneficiosS6NR01 img{
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.gridBeneficiosS6NR01 h3{
  color: #fff8e9;
}

.gridBeneficiosS6NR01 p{
  color: rgba(255, 248, 233, .78);
}

.fraseS6NR01{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 24px 0 0;
  color: #fff8e9;
  text-align: center;
}

.fraseS6NR01 span{
  color: var(--color-gold-light);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.fraseS6NR01 p{
  margin: 0;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.35;
}

.fraseS6NR01 strong{
  color: var(--color-gold-light);
}

.s7NR01{
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4vw, 56px) clamp(20px, 5vw, 72px) clamp(24px, 3vw, 40px);
  color: var(--color-white);
  background-image: url("../img/cursos/fundoS7NR01.png");
  background-repeat: no-repeat;
  background-position: left -70px;
  background-size: cover;
}

.s7NR01::before{
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 58%;
  pointer-events: none;
  background: linear-gradient(
    0deg,
    #02140A 0%,
    rgba(2, 20, 10, .96) 38%,
    rgba(2, 20, 10, .72) 68%,
    rgba(2, 20, 10, 0) 100%
  );
}

.imgMobileS7NR01{
  display: none;
}

.conteudoS7NR01{
  position: relative;
  z-index: 1;
  width: min(1360px, 100%);
  margin: 0 auto;
}

.cabecalhoS7NR01{
  max-width: 780px;
  margin: 0 0 52px auto;
  text-align: center;
}

.cabecalhoS7NR01 > span{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--color-gold-light);
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cabecalhoS7NR01 > span::before,
.cabecalhoS7NR01 > span::after{
  content: "";
  width: 54px;
  height: 1px;
  background: rgba(214, 165, 51, .68);
}

.cabecalhoS7NR01 h2{
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: clamp(30px, 3.05vw, 48px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.cabecalhoS7NR01 h2 strong{
  color: var(--color-gold-light);
  font-weight: 900;
}

.linhaS7NR01{
  display: block;
  width: min(310px, 100%);
  height: 1px;
  margin: 16px auto 18px;
  background: linear-gradient(90deg, rgba(214, 165, 51, .9), rgba(214, 165, 51, .9) 44%, transparent 44%, transparent 49%, rgba(214, 165, 51, .9) 49%, rgba(214, 165, 51, .9));
}

.linhaS7NR01::after{
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: -3px auto 0;
  border-radius: 50%;
  background: var(--color-gold);
}

.cabecalhoS7NR01 p{
  max-width: 670px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.45;
}

.cabecalhoS7NR01 p strong{
  color: var(--color-gold-light);
}

.cardPrecoS7NR01{
  display: grid;
  justify-items: center;
  width: min(430px, 100%);
  margin: 0 min(9vw, 130px) 130px auto;
  padding: 30px 34px 28px;
  color: #fff8e9;
  text-align: center;
  border: 1px solid rgba(214, 165, 51, .6);
  border-radius: 10px;
  background: rgba(14, 38, 17, .72);
}

.cardPrecoS7NR01 span{
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-size: 16px;
  text-transform: uppercase;
}

.cardPrecoS7NR01 strong{
  color: var(--color-gold-light);
  font-family: var(--font-title);
  font-size: clamp(44px, 3.7vw, 62px);
  line-height: 1;
}

.cardPrecoS7NR01 p{
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .86);
  font-family: var(--font-main);
  font-size: 12px;
}

.botaoCompraS7NR01{
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(430px, 100%);
  min-height: 58px;
  margin: -104px min(9vw, 130px) 112px auto;
  padding: 14px 28px;
  color: #102014;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  background: linear-gradient(135deg, #f5c85d 0%, #dca93c 48%, #f6d46f 100%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255, 242, 185, .56);
  transition: transform .2s ease, box-shadow .2s ease;
}

.botaoCompraS7NR01:hover,
.botaoCompraS7NR01:focus-visible{
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, .32), inset 0 0 0 1px rgba(255, 242, 185, .74);
}

.impactoS7NR01{
  margin-top: 80px;
}

.impactoS7NR01 h3{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 0 0 34px;
  color: #fff8e9;
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.impactoS7NR01 h3::before,
.impactoS7NR01 h3::after{
  content: "";
  height: 1px;
  background: rgba(214, 165, 51, .45);
}

.gridImpactoS7NR01{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(214, 165, 51, .36);
  border-bottom: 1px solid rgba(214, 165, 51, .36);
}

.gridImpactoS7NR01 article{
  min-height: 128px;
  padding: 14px 14px;
  text-align: center;
  border-right: 1px solid rgba(214, 165, 51, .3);
}

.gridImpactoS7NR01 article:last-child{
  border-right: 0;
}

.gridImpactoS7NR01 img{
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.gridImpactoS7NR01 h4{
  margin: 0 0 7px;
  color: #fff8e9;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.gridImpactoS7NR01 p{
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-family: var(--font-main);
  font-size: 9.5px;
  line-height: 1.3;
}

.rodapeS7NR01{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 54px;
  color: #fff8e9;
  border: 1px solid rgba(214, 165, 51, .54);
  border-radius: 8px;
  background: rgba(14, 38, 17, .72);
}

.rodapeS7NR01 div{
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 12px 30px;
  border-right: 1px solid rgba(214, 165, 51, .36);
}

.rodapeS7NR01 div:last-child{
  border-right: 0;
}

.rodapeS7NR01 img{
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.rodapeS7NR01 p{
  margin: 0;
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 1.35;
}

.rodapeS7NR01 strong{
  display: block;
  color: var(--color-gold-light);
  font-size: 14px;
  text-transform: uppercase;
}

.fraseS7NR01{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: #fff8e9;
  font-family: var(--font-main);
  font-size: 13px;
  text-align: center;
}

.fraseS7NR01 img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}

footer{
  color: #fff7e4;
  background: #10180d url("../img/assetsRodape/fundoRodape.png") center/cover no-repeat;
}

.rodapeMentoria{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.logoRodapeMentoria{
  width: 200px;
  height: auto;
  margin-top: 1.4rem;
}

.rodapeMentoria h2{
  margin: 0;
  padding-bottom: 20px;
  color: var(--color-footer);
  font-family: var(--font-title);
  font-size: 34px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.linhaRodapeMentoria{
  width: min(480px, 100%);
  height: 2px;
  object-fit: cover;
  opacity: .75;
}

.menuRodapeMentoria,
.redesRodapeMentoria{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.5rem;
}

.menuRodapeMentoria span,
.redesRodapeMentoria a{
  color: var(--color-footer);
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
}

.redesRodapeMentoria a{
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 20px;
  text-decoration: none;
}

.redesRodapeMentoria img{
  width: 26px;
  height: 26px;
  object-fit: contain;
}

footer .direitosReservados{
  padding: 2.2rem 0 1.2rem;
  color: var(--color-footer);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
}

footer .direitosReservados a{
  color: var(--color-white);
  font-size: 14px;
}

@media (max-width: 1050px){
  .heroNR01{
    min-height: 760px;
    background-position: 60% top;
  }

  .conteudoHeroNR01{
    width: min(650px, calc(100% - 40px));
    padding-left: 24px;
  }

  .fraseHeroNR01{
    right: 24px;
  }

  .conteudoS1NR01{
    grid-template-columns: 1fr;
  }

  .colunaProblemaNR01,
  .colunaConsequenciasNR01{
    max-width: 760px;
  }

  .rodapeS1NR01{
    margin-left: 0;
  }

  .gridMetodoS2NR01{
    grid-template-columns: 1fr;
  }

  .cardMetodoS2NR01{
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .rodapeS3NR01{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rodapeS3NR01 div:nth-child(2){
    border-right: 0;
  }

  .layoutS4NR01{
    grid-template-columns: 1fr;
  }

  .gridPublicoS4NR01{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cardLateralS4NR01{
    text-align: center;
  }

  .conteudoS5NR01{
    grid-template-columns: 1fr;
  }

  .cabecalhoS5NR01,
  .textoS5NR01,
  .gridCredenciaisS5NR01,
  .cardReflexaoS5NR01,
  .rodapeS5NR01{
    grid-column: 1;
  }

  .cabecalhoS6NR01,
  .gridResultadosS6NR01{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .gridResultadosS6NR01{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gridBeneficiosS6NR01{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .gridBeneficiosS6NR01 article:nth-child(2n){
    border-right: 0;
  }

  .cabecalhoS7NR01,
  .cardPrecoS7NR01{
    margin-left: auto;
    margin-right: auto;
  }

  .gridImpactoS7NR01{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gridImpactoS7NR01 article:nth-child(3n){
    border-right: 0;
  }
}

@media (max-width: 760px){
  .heroNR01{
    min-height: auto;
    background-image: linear-gradient(180deg, rgba(12, 24, 9, .98) 0%, rgba(12, 24, 9, .9) 100%);
  }

  .conteudoHeroNR01{
    width: 100%;
    display: grid;
    justify-items: center;
    padding: 0 20px 44px;
    text-align: center;
  }

  .imgMobileMainNR01{
    display: block;
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw) 22px;
  }

  .seloCursoNR01{
    justify-self: center;
  }

  .heroNR01 h1{
    max-width: 540px;
    margin-inline: auto;
    font-size: clamp(42px, 12vw, 58px);
  }

  .subtituloNR01,
  .linhaDouradaNR01{
    margin-left: auto;
    margin-right: auto;
  }

  .textoHeroNR01{
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .beneficiosHeroNR01{
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 18px 0;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .beneficioHeroNR01:nth-child(2){
    border-right: 0;
  }

  .botaoNR01{
    width: 100%;
  }

  .recursosNR01{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
  }

  .recursoNR01{
    justify-content: center;
    padding: 0 8px;
    border-right: 1px solid rgba(214, 165, 51, .45);
  }

  .recursoNR01:first-child{
    padding-left: 8px;
  }

  .recursoNR01:last-child{
    border-right: 0;
  }

  .recursoNR01 span{
    font-size: 10px;
  }

  .fraseHeroNR01{
    position: static;
    width: min(420px, 100%);
    margin: 18px auto 0;
    text-align: left;
  }

  .s1NR01{
    padding: 44px 18px;
  }

  .s2NR01{
    padding: 44px 18px;
    text-align: center;
  }

  .s3NR01{
    padding: 44px;
    text-align: center;
    background-color: #F4E7D6;
    background-position: 80% -60px;
  }

  .s3NR01 .cabecalhoS3NR01 p{
    color: var(--color-white);
  }

  .s4NR01{
    padding: 44px 18px;
    text-align: center;
  }

  .cabecalhoS4NR01 h2 strong{
    color: var(--color-gold-light);
    text-shadow: 0 2px 14px rgba(16, 32, 13, .35);
  }

  .cabecalhoS4NR01 p{
    color: var(--color-white);
  }

  .s5NR01{
    padding: 0 18px 44px;
    text-align: center;
    background-color: #F4E7D6;
    background-image: none;
  }

  .s6NR01{
    padding: 44px 18px;
    text-align: center;
    background-color: #06180c;
    background-image: none;
  }

  .s7NR01{
    padding: 0 18px 44px;
    text-align: center;
    background-color: #102014;
    background-image: none;
  }

  .s6NR01::before{
    display: none;
  }

  .s6NR01 .cabecalhoS6NR01 h2,
  .s6NR01 .cabecalhoS6NR01 p{
    color: var(--color-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .42);
  }

  .s6NR01 .cabecalhoS6NR01 > span,
  .s6NR01 .cabecalhoS6NR01 h2 strong{
    color: var(--color-gold-light);
  }

  .imgMobileS5NR01{
    display: block;
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw) 28px;
  }

  .imgMobileS7NR01{
    display: block;
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw) 30px;
  }

  .colunaProblemaNR01,
  .colunaConsequenciasNR01,
  .colunaProblemaNR01 h2,
  .cabecalhoS4NR01,
  .cabecalhoS4NR01 p,
  .cabecalhoS5NR01,
  .cabecalhoS6NR01,
  .cabecalhoS6NR01 p,
  .cabecalhoS7NR01,
  .cabecalhoS7NR01 p,
  .textoS5NR01,
  .introS1NR01,
  .textoChecklistS1NR01,
  .cardVerdadeS1NR01,
  .cabecalhoS2NR01,
  .cabecalhoS2NR01 p,
  .cabecalhoS3NR01,
  .cabecalhoS3NR01 p{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .checklistS1NR01 li{
    grid-template-columns: 18px minmax(0, auto);
    justify-content: center;
    text-align: center;
  }

  .cardVerdadeS1NR01,
  .rodapeS1NR01,
  .rodapeS2NR01,
  .rodapeS4NR01,
  .cardReflexaoS5NR01{
    justify-items: center;
    text-align: center;
  }

  .gridConsequenciasNR01{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .cardConsequenciaNR01{
    min-height: 176px;
  }

  .linhaS4NR01,
  .linhaS5NR01{
    margin-left: auto;
    margin-right: auto;
  }

  .gridCredenciaisS5NR01,
  .rodapeS5NR01{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .beneficiosS6NR01{
    padding: 18px;
  }

  .cardPrecoS7NR01{
    padding: 22px 20px;
  }

  .botaoCompraS7NR01{
    width: min(430px, 100%);
    margin: -104px auto 104px;
  }

  .impactoS7NR01 h3{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .impactoS7NR01 h3::before,
  .impactoS7NR01 h3::after{
    width: 120px;
    margin: 0 auto;
  }

  .rodapeS7NR01{
    grid-template-columns: 1fr;
  }

  .rodapeS7NR01 div{
    border-right: 0;
    border-bottom: 1px solid rgba(214, 165, 51, .36);
  }

  .rodapeS7NR01 div:last-child{
    border-bottom: 0;
  }

  .gridBeneficiosS6NR01 article:nth-child(5){
    grid-column: 1 / -1;
    width: min(220px, 100%);
    justify-self: center;
  }

  .trilhoModulosNR01{
    grid-auto-columns: minmax(170px, 74%);
  }

  .carrosselModulosNR01{
    padding: 24px;
  }

  .menuRodapeMentoria,
  .redesRodapeMentoria{
    flex-wrap: wrap;
    gap: 1rem 1.8rem;
  }
}

@media (max-width: 430px){
  .conteudoHeroNR01{
    padding-inline: 16px;
  }

  .seloCursoNR01{
    font-size: 12px;
  }

  .subtituloNR01{
    line-height: 1.1;
  }

  .beneficiosHeroNR01{
    grid-template-columns: 1fr 1fr;
  }

  .beneficioHeroNR01{
    padding-inline: 8px;
  }

  .botaoNR01{
    gap: 10px;
    padding-inline: 16px;
    font-size: 16px;
  }

  .fraseHeroNR01{
    grid-template-columns: 28px 1fr;
    padding: 16px;
  }

  .fraseHeroNR01 > span{
    font-size: 42px;
  }

  .gridConsequenciasNR01{
    grid-template-columns: 1fr;
  }

  .gridPublicoS4NR01,
  .gridCredenciaisS5NR01,
  .rodapeS4NR01,
  .rodapeS5NR01,
  .gridResultadosS6NR01,
  .gridBeneficiosS6NR01,
  .gridImpactoS7NR01{
    grid-template-columns: 1fr;
  }

  .cardVerdadeS1NR01,
  .rodapeS1NR01,
  .rodapeS2NR01,
  .rodapeS4NR01 div,
  .cardReflexaoS5NR01,
  .rodapeS5NR01 div,
  .rodapeS7NR01 div,
  .cardMetodoS2NR01 aside{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .cabecalhoS2NR01 > span::before,
  .cabecalhoS2NR01 > span::after{
    width: 46px;
  }

  .rodapeS3NR01{
    grid-template-columns: 1fr;
  }

  .rodapeS3NR01 div,
  .rodapeS3NR01 div:nth-child(2){
    border-right: 0;
    border-bottom: 1px solid rgba(214, 165, 51, .35);
    justify-items: center;
    text-align: center;
  }

  .rodapeS3NR01 div:last-child{
    border-bottom: 0;
  }

  .rodapeS4NR01 div,
  .rodapeS5NR01 div{
    border-right: 0;
    border-bottom: 1px solid rgba(214, 165, 51, .28);
  }

  .rodapeS4NR01 div:last-child,
  .rodapeS5NR01 div:last-child{
    border-bottom: 0;
  }

  .gridBeneficiosS6NR01 article,
  .gridBeneficiosS6NR01 article:nth-child(2n){
    border-right: 0;
    border-bottom: 1px solid rgba(214, 165, 51, .28);
    padding: 0 0 18px;
  }

  .gridBeneficiosS6NR01 article:last-child{
    border-bottom: 0;
  }

  .cabecalhoS6NR01 > span::before,
  .cabecalhoS6NR01 > span::after,
  .cabecalhoS7NR01 > span::before,
  .cabecalhoS7NR01 > span::after{
    width: 34px;
  }

  .gridImpactoS7NR01 article,
  .gridImpactoS7NR01 article:nth-child(3n){
    border-right: 0;
    border-bottom: 1px solid rgba(214, 165, 51, .3);
  }

  .gridImpactoS7NR01 article:last-child{
    border-bottom: 0;
  }

  .fraseS7NR01{
    align-items: flex-start;
  }

  .logoRodapeMentoria{
    width: 128px;
  }

  .rodapeMentoria h2{
    font-size: 24px;
  }
}
