:root {
	--cor-ods-um: #a21c44;
	--cor-verde: #3cd23c;
	--shadow-dark: 0 2rem 6rem rgba(0, 0, 0, .3);
}

* {
	margin: 0;
	padding: 0;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
	font-family: "Dosis", sans-serif;
	font-weight: 400;
	scroll-behavior: smooth;
}

h1,
h2,
h3,
h4 {
	font-weight: 400;
}

h2 a {
	display: inline-block;
	color: #fff;
	padding: 5px 20px;
	margin: 5px;
	border-radius: 20px;
	background: var(--cor-verde);
	transition: .2s background-color;
}

h2 a:hover,
h2 a:focus {
	color: var(--cor-verde);
	background: #fff;
	border: 2px solid var(--cor-verde);
	padding: 3px 18px;
}

body {
	min-height: 100vh;
}

a {
	text-decoration: none;
}

.grelha {
	display: grid;
	grid-template-areas:
		"top          top     top"
		"body-left    body    body-right";
	grid-template-columns: 1fr 6fr 1fr;
	grid-template-rows: 100px auto;
}

@media screen and (min-width: 900px) {
	.grelha {
		grid-template-columns: 2fr 3fr 1fr;
		gap: 0 2rem;
	}
}

.g-body {
	grid-area: body;
	margin: 0 5% 80px;
	z-index: 0;
}

@media screen and (min-width: 900px) {
	.g-body {
		/* margin-bottom: 250px; */
		margin-top: 3em;
	}
}

.g-body .nickname {
	font-size: 2em;
	color: #a21c44;
	margin: 0;
}

@media screen and (min-width: 900px) {
	.g-body .nickname {
		font-size: 2em;
	}
}

.g-body__tit {
	font-size: 2.2rem;
	margin: .5rem 0;
	line-height: 1;
	width: 90vw;
}

@media screen and (min-width: 900px) {
	.g-body__tit {
		font-size: 2.5em;
		line-height: 1.2;
		width: auto;
	}
}

.g-body__data {
	font-size: 1.5rem;
	color: #aaa;
	padding: .5em 0 5rem 0;
}

@media screen and (min-width: 900px) {
	.g-body__data {
		font-size: 2em;
		color: #aaa;
		margin: .5em 0 2rem;
	}
}

.g-body h4 {
	font-size: 2rem;
	margin: 1.5em 0 .5em;
}

.g-body p {
	margin: 1em 0;
	font-size: 1.3em;
	color: #444;
	max-width: 520px;
}

.g-body ul {
	list-style: url("img/li-seta-fina.svg") outside;
	padding: 0;
	margin: 0;
}

.g-body li {
	font-size: 1.5em;
	margin: 1em 0;
	padding: 0;
	/*&:before {
            content: "\10132";
            margin: 0 0 3em 0;
        }*/
}

.g-body .logos-cofinancia {
	right: 1rem;
	top: 150px;
	width: 250px;
	height: 65px;
	background: center/contain no-repeat url("img/logos_co-financiamento-big.png");
}

@media screen and (min-width: 900px) {
	.g-body .logos-cofinancia {
		position: absolute;
		right: 1rem;
		top: 105px;
		width: 305px;
	}
}

.g-body__logo-monte {
	display: block;
	margin: 0 auto;
	height: 78px;
}

@media screen and (min-width: 900px) {
	.g-body__logo-monte {
		display: none;
	}
}

.g-body__pdf-actividades {
	display: block;
	width: auto;
	height: auto;
	margin: 60px auto 0 auto;
}

@media screen and (min-width: 900px) {
	.g-body__pdf-actividades {
		margin-top: 50px;
	}
}

.g-body-left {
	grid-area: body-left;
}

.g-body-right {
	grid-area: body-right;
}

.tit2-radio {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.botao-radio {
	display: block;
	margin: 0;
	width: 102px;
	height: auto;
	align-self: flex-end;
}

@media screen and (min-width: 900px) {
	.botao-radio {
		display: none;
	}
}

.g-top {
	grid-area: top;
	position: -webkit-sticky;
	position: sticky;
	top: -70px;
	background-color: #a21c44;
	z-index: 1;
}

@media screen and (min-width: 900px) {
	.g-top {
		top: -40px;
	}
}

.g-top__logo-leader {
	position: absolute;
	right: 0px;
	bottom: -7px;
	width: 150px;
	height: 60px;
	z-index: 1;
	display: block;
	background: url("img/Logo_IMLeader.svg") right bottom/contain no-repeat;
}

@media screen and (min-width: 900px) {
	.g-top__logo-leader {
		display: none;
	}
}

.g-top__logo-leader--big {
	position: absolute;
	right: 1rem;
	bottom: -10px;
	background: url("img/Logo_IMLeader.svg") right bottom/contain no-repeat;
	width: 213px;
	height: 55px;
	z-index: 1;
	display: none;
}

@media screen and (min-width: 900px) {
	.g-top__logo-leader--big {
		display: block;
	}
}

.g-top__logo-monte {
	position: absolute;
	display: none;
	left: 20px;
	top: 200px;
	width: 200px;
	height: 78px;
}

@media screen and (min-width: 900px) {
	.g-top__logo-monte {
		display: block;
	}
}

.g-top__rect {
	position: absolute;
	left: 8px;
	top: 10px;
	z-index: 0;
	width: 100px;
	height: 100px;
	transform: rotate(45deg);
	background-color: #a21c44;
}

@media screen and (min-width: 900px) {
	.g-top__rect {
		top: -80px;
		left: -20px;
		width: 200px;
		height: 200px;
	}
}

.g-top__barra-ods--small {
	position: absolute;
	background: left no-repeat url("img/ods_barra_white-small.png");
	width: 210px;
	height: 71px;
	top: 0;
	left: 10px;
	z-index: 3;
	display: block;
}

@media screen and (min-width: 900px) {
	.g-top__barra-ods--small {
		display: none;
	}
}

.g-top__barra-ods {
	position: absolute;
	background: url("img/ods_barra_white.png") #a21c44;
	width: 312px;
	height: 55px;
	top: 40px;
	left: 30px;
	z-index: 1;
	display: none;
}

@media screen and (min-width: 900px) {
	.g-top__barra-ods {
		display: block;
	}
}

.bk-radio {
	padding: 20px;
	margin: 50px 0 0 0;
	border-left: 5px solid var(--cor-verde);
}

@media screen and (min-width: 900px) {
	.bk-radio {
		display: none;
		border-left: 10px solid var(--cor-verde);
	}
}

.bk-radio__titulo {
	font-size: 2.5rem;
	color: var(--cor-verde);
	line-height: 1;
	margin: 0 0 20px 0;
}

.bk-radio__num {
	font-size: 1.5rem;
	color: #bbb;
}

.covid {
	font-size: 1.2rem;
	color: #FF0000;
}

.bk-radio__data {
	font-size: 1.3rem;
	margin: 2rem 0 0 0;
	color: var(--cor-verde);
}

.bk-radio__entrevistado {
	font-size: 1.5rem;
	border-bottom: 3px solid var(--cor-verde);
	display: inline-block;
}

.bk-radio__empresa {
	font-size: 1.3rem;
	margin: .3rem 0 1rem;
}

.bk-radio audio {
	margin: -10px 0 30px 0;
	/* width: 80%; */
	height: 25px;
}

.destaque {
	font-size: 2em;
	color: #a21c44;
	position: absolute;
	display: block;
	top: 110px;
	right: 10px;
}

@media screen and (min-width: 900px) {
	.destaque {
		top: 110px;
		right: 370px;
	}
}

.dois {
	display: none;
}

@media screen and (min-width: 900px) {
	.dois {
		position: relative;
		display: block;
		left: 0;
		top: 260px;
		padding: 20px 20px 400px 20px;
		margin: 0;
	}
}

.dois .bk-radio__titulo {
	font-size: 2.5rem;
	margin: -20px 0 20px 0;
}

.dois audio {
	margin: -.5rem 0 30px 0;
	width: 80%;
	max-width: 300px;
}

.bkg__img {
	width: 100%;
	top: 50px;
	text-align: center;
	background: white;
	margin: 10px 0px 0 0px;
	max-width: 660px;
}

@media screen and (min-width: 900px) {
	.bkg__img {
		margin: 0px -200px 0 0;
	}
}

.bkg__img img {
	width: 100%;
	height: auto;
	margin: 2rem 0 .5rem 0;
}

@media screen and (min-width: 900px) {
	/* .bkg__img img {
     height: 30vh; 
  }*/
}

.bkg__img__grad-branco {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(transparent 10%, white 80%);
	transform: translatey(-100px);
}

.space--bottom {
	display: block;
	margin-bottom: 200px;
}

.actividade_bloco {
	margin: 0;
}

.actividade_bloco::after {
	content: "";
	display: block;
	border-bottom: 10px solid var(--cor-verde);
	width: 100%;
	margin: 8rem 0 0;
	left: 0;
}

.actividade_bloco a {
	color: var(--cor-verde);
	text-decoration: underline;
}

.actividade_bloco h2 {
	font-size: 2rem;
	line-height: 1;
	margin: 1rem 0 1rem;
	color: var(--cor-ods-um);
	width: 90vw;
}

.actividade_bloco p {
	width: 90vw;
}

.actividade_bloco img {
	width: 100%;
	height: auto;
}

@media screen and (min-width: 900px) {
	.actividade_bloco h2 {
		width: auto;
	}

	.actividade_bloco p {
		width: auto;
	}

	.actividade_bloco img {
		max-width: 500px;
		height: auto;
	}
}

.actividade_bloco__data {
	font-size: 1.8rem;
	color: var(--cor-verde);
	margin: .5rem 0 1rem 0;
}

@media screen and (min-width: 900px) {
	.actividade_bloco__data {
		font-size: 2.2rem;
	}
}

.actividade_bloco__data.first {
	margin: 2rem 0 .7rem 0;
}