/* css by publisitio 025.07.28 */
/* font weight 100 400 500 700 */
@import url('https://fonts.cdnfonts.com/css/pp-neue-montreal');
@import url('https://fonts.googleapis.com/css2?family=Victor+Mono:ital,wght@0,100..700;1,100..700&display=swap');

:root{
	--main-color: #fff;
	--second-color: #00cfe6 /*#ff6748 #ebff00 - #f98a8a */;
	--bkgrd-color: #201E1E /* #31312f */;
	--bkgrd-image: url(../04/img/noise.jpg);
	--fw-normal: 100;
	--txt-indent: 15vw;
	}
*{
	margin: 0;
	padding: 0;
}
@view-transition {
  navigation: auto;
}
html{
	scroll-behavior: smooth;
}
body{
	background: var(--bkgrd-color) var(--bkgrd-image) repeat center;
	color: var(--main-color);
	padding: 50px;
	font: normal var(--fw-normal) 23px/1.3 Victor Mono, sans-serif;
	letter-spacing: -0.5px;
}

	@media screen and (max-width: 801px){
		body{
			/*font: normal var(--fw-normal) 23px/1.35 PP Neue Montreal, sans-serif;*/
		font: normal var(--fw-normal) 18px/1.35 Victor Mono, sans-serif;
		letter-spacing: 0;
		padding: 25px 0;
		}
	}

.plum-line{
	background-color: var(--second-color);
  width: 1px;
  height: 100%;
  position: fixed;
  inset: 0 0% 0 50%;
  /*transform: translate(-50%);*/
  z-index: -1;
  opacity: .5;
}

h1,h2,h3,h4,h5{
	font-weight: var(--fw-normal);
	line-height: 1;
	margin: 0;
}
a{
	color: var(--second-color);
	text-decoration: underline;
	text-underline-offset: .5rem;
	outline: none;
	transition: all .3s ease-in-out;
	text-wrap: nowrap;

	&:hover{
		color: #fff;
	}
}
a.disabled {
  color: rgba(255, 255, 255, .2) !important;
  pointer-events: none;
  cursor: default;
}
ul{
	list-style: none;
  padding: 0;
}
.second-color{
	color: var(--second-color);
}
.container{
	margin: 0;
}
/* menu */
/*styling open close button*/
.button {
	position: fixed;
	right: 50px;
	top: 50px;
	z-index: 9999;
}

	@media screen and (max-width: 801px){
		.button {
			right: 25px;
			top: 25px;
		}
	}
.button a {
	text-decoration:none;
	display: block;
}
.menu-open span{
	display: block;
	width: 50px;
  height: 5px;
  background-color: var(--second-color);
  margin: 10px 0;
  transition: 0.4s;
  border-radius: 3px;
}
.menu-open:hover span{
	background-color: var(--main-color);	
}
.menu-close {
	border-radius: 30px;
	padding: 0px 0px;
}
.menu-close span{
	display: block;
	width: 50px;
  height: 5px;
  background-color: var(--second-color);
  margin: 6px 0;
  transition: 0.4s;
  border-radius: 3px;
}
	.menu-close span:first-child{
		transform: translate(0, 11px) rotate(-45deg);
	}
	.menu-close span:nth-child(2){
		opacity: 0;
	}
	.menu-close span:last-child{
		transform: translate(0, -11px) rotate(45deg);
	}
.menu-close:hover span{
	background-color: var(--main-color); 
}
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	overflow: auto;
	z-index: 99;
	backdrop-filter: blur(5px);
}
.wrap{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	padding: 50px;
	background: rgba(32, 30, 30, .9);

	@media screen and (max-width: 801px){
		padding: 25px;
	}

	div{
		width: 100%;

		@media screen and (max-width: 801px){
			width: 100%;
		}
	}
}
ul.main-nav{
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;

	 li{
		position: relative;

		a{
			font-size: 7vw;
			text-decoration: none;
			text-transform: uppercase;
			color: #fff;
			display: block;

			@media screen and (max-width: 801px){
				font-size: 2.9rem;
			}

			&:hover{
				color: var(--second-color);
				margin-left: 2rem;
			}
		}
	}
}
/* footer menu */
ul.footer-menu{
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;

	 li{
		position: relative;
		border: solid rgba(0, 207, 230, 0.35);
		border-width: 0 0 1px 0;
		padding: 1rem 0;
		overflow: hidden;

		&:nth-last-child(-n+3) a{
			color: var(--main-color);
			font-size: 1.5rem;
		}

		&:last-child{
			border-width: 0;
			padding-bottom: 0;
		}

		a{
			font-size: 2rem;
			text-decoration: none;
			text-transform: uppercase;
			color: var(--second-color);
			display: block;
			position: relative;
			z-index: 1;

			@media screen and (max-width: 801px){
				font-size: 1.8rem;
			}

			&::before {
			  content: attr(data-nav);
			  position: absolute;
			  left: 0;
			  color: currentColor;
			  transition: all .6s ease-in-out;
			  z-index: -1;
			}

			&::after {
			  content: '\2192';
			  position: absolute;
			  right: 0;
			}

			&:hover{
				color: #fff;

				&::before{
					left: 50%;
					opacity: 0;
				}
			}
		}
	}
}

.footer ul.main-nav a {
  /*font-size: 2rem;*/
}
	@media screen and (max-width: 801px){
		.footer ul.footer-menu {
			margin-bottom: 10rem;
		}
	}
.home-pic {
	/* noise texture */
  border-radius: 0vw;
  background: var(--bkgrd-image);

  img{
  	mix-blend-mode: lighten;
  }
}
/* MAIN HEADER */
.header{
	margin-bottom: 55px;

	h2{
		text-transform: uppercase;
	}

	span{
		color: var(--second-color);
	}
	.page-title{
		font-size: 10vw;
	  line-height: 1;
	  margin: 5% 0;
	  text-align: left;
	  text-transform: uppercase;
	}
}
@media screen and (max-width: 801px){
	.header{
		margin-bottom: 100px;
	}
}

.introducao{
	text-indent: var(--txt-indent);
	text-align: justify;
  text-justify: inter-word;
  text-wrap-style: balance;
  background: var(--bkgrd-color) url(../04/img/noise.jpg) repeat center;
  padding: 5rem 0;

	p{
    --fsize: 26px;
		margin-bottom: 1em;
    font-size: var(--fsize);
    line-height: calc(var(--fsize) + 15px);

		a{
			text-wrap: wrap;
		}
	}
}
	@media screen and (max-width: 801px){
		.introducao{
			text-indent: 0;
			text-align: left;

			p{
				--fsize: 18px;
				font-size: var(--fsize);
	    	line-height: calc(var(--fsize) + 15px);
			}
		}
	}
.introducao-xl{
	font-size: 3.85rem;
  text-wrap: balance;
  margin: 5rem 0;
  padding: 5rem 0;
  /*text-indent: var(--txt-indent);*/
  letter-spacing: -0.044vw;
  word-spacing: -15px;
  text-align: justify;
  text-transform: uppercase;
  line-height: 1.25;
  background: var(--bkgrd-color) url(../04/img/noise.jpg) repeat center;

	span{
		font-weight: 100;
		color: var(--second-color);
	}
}
@media screen and (max-width: 801px){
		.introducao-xl{
			font-size: 2.15rem;
			text-align: left;
		}
	}
.promovido{
	background: var(--bkgrd-image);
	color: var(--second-color);
	padding: 5rem 0;
	text-transform: uppercase;

  p{
  	text-align: justify;
  	text-indent: var(--txt-indent);
		font-size: 1.1rem;
		line-height: 1.5;
  }

  a{
  	text-underline-offset: .3rem;
  	text-wrap: wrap;
  }
}

.dia{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 50px;

	h1{
		font-size: 4vw;
		line-height: 1;
		color: #fff;

		@media screen and (max-width: 801px){
			font-size: 3rem;
			margin-bottom: 1rem;
		}

		span{
		color: var(--second-color);
		}
	}
}
.programa{

	li{
		border-top: 1px solid rgba(0, 207, 230, 0.35);
		margin-bottom: 50px;
		padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    @media screen and (max-width: 801px){
    	display: block;
    	padding: 25px 0;
    }
	}
}
.local {

  span{
  	color: var(--second-color);
  }
}
.calendar{
	width: 100%;
	margin-bottom: 50px;
	color: var(--second-color);

  @media screen and (max-width: 801px){
  	display: flex;
  	flex-direction: column;
  	width: 100%;
  }

	.hora{
		font-size: 2rem;
		color: #fff;

		&::before{
			content: '\2198';
			margin-right: 0.5rem;
      color: var(--second-color);
		}

		@media screen and (max-width: 801px){
			font-size: 1.5rem;
	  }
	}
	.convidado{
		font-size: 3rem;
		line-height: 1.1;
		text-wrap: balance;
		text-transform: uppercase;

		@media screen and (max-width: 801px){
	  	font-size: 2.5rem;
	  	margin-bottom: 25px;
	  }
	}

	a{
    --w: 40px;
		text-decoration: none;
    font-size: 2rem;
    border: 2px solid currentColor;
    border-radius: 50%;
    width: var(--w);
    display: flex;
    aspect-ratio: 1;
    height: var(--w);
    align-items: center;
    justify-content: center;
	}
}
.resumo{
	width: 55%;
	margin-left: auto;

	@media screen and (max-width: 801px){
  	width: 100%;
  }
	
	h1{
		font-size: 3rem;
		line-height: 1.1;
		text-transform: uppercase;
		text-wrap: balance;
		margin-bottom: 25px;

		@media screen and (max-width: 801px){
	  	font-size: 2rem;
	  }
	}

	 p{
	 	text-indent: var(--txt-indent);
	 }
}
.film-container{
	width: 55%;
	margin-left: auto;

	@media screen and (max-width: 801px){
		width: 100%;
	}
}
.film-container p{
	text-align: justify !important;
	hyphens: auto;
	padding-bottom: 2vh;
}
.film-title{
	font-size: 2.5em;
	line-height: 1;
	padding: 10px 0;
	text-transform: uppercase;
	text-wrap: balance;
}
.filme-still{
	margin: 2rem 0;
	position: relative;
}
.ficha-tec{
	font-size: .7em;
	padding: 10px 0;
	margin-bottom: 4px;
}
	.ficha-tec b{
		color: var(--second-color);
	}
	@media screen and (max-width: 801px){
		.film-container p{
			font-size: 18px;
		}
	}
.foto-credits,
.frame-credits{
	font-size: .6rem;
	padding: 5px 10px;
	color: #fff;
	position: absolute;
	bottom: 0;
	right: 0;
	background: #1c1919;
}
	.foto-credits:before{
		content: 'fotografia: ';
		display: inline;
	}
/* participantes */
.participante{
	margin-bottom: 10vw;
	scroll-snap-align: start;
  scroll-margin-top: 150px;
}
.bio{
	position: relative;
}
.notaBio{
  
	h1{
		margin: 0;
		
		line-height: 1;
		margin-bottom: 10vh;
		text-wrap: balance;
		text-transform: uppercase;

		span{
			color: var(--second-color);
		}
	}
	p{
		line-height: 1.4;
		text-align: justify;
	  word-wrap: break-word;
	  overflow-wrap: break-word;
	  hyphens: auto;
	  margin: 0;
	  text-indent: var(--txt-indent);
	}
	.link {
		display: block;
		text-decoration: none;
	 	text-indent: 0;
	  color: var(--second-color);
	  margin-top: 1rem;

	  &:hover{
	  	color: color-mix(in srgb, var(--second-color), #fff 50%);
	  }
	}
}
.bio-image{
	position: relative;
	height: 100%;
}
	@media screen and (max-width: 801px){
		.notaBio{
			padding: 2rem 0;

			p{
				text-indent: 0;
				text-align: left;
			}
		}
		.notaBio h1{
			font-size: 3rem;
			margin-bottom: 2vh;

			span{
				display: block;
			}
		}
	}
.bio-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
	mix-blend-mode: lighten /*difference*/;

	@media screen and (max-width: 801px){
		position: relative;
	}
}
.bio-image .credits{
	position: absolute;
	color: #000;
  font-size: 50%;
  z-index: 1;
  padding: 10px;
  bottom: 0;
  right: 0;
}
.intrevencao{
	border-top: 1px solid var(--second-color);
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	width: fit-content;
	text-transform: uppercase;

	span{
		color: var(--second-color);
	}
}
.inscricao{
	span{
		color: var(--second-color);
	}
	h1{
		text-transform: uppercase;
		margin-bottom: 2rem;
	}
	ul{
		margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

		li{
			border: 1px solid var(--second-color);
      padding: 0.75rem 1.25rem;

      &:last-child{
      	
      }
		}
	}
	img {
	  max-width: 100%;
	  mix-blend-mode: lighten;
	}
}
/* footer */
.footer{
	margin-top: 15rem;
	padding-top: 5rem;
	background: var(--bkgrd-color) var(--bkgrd-image) repeat center;

	span{
		color: var(--second-color);
	}
}
.contacts{
	padding: 0;
}

	.contacts li{
		margin-top: 1rem;

		@media screen and (max-width: 801px){
			margin-top: 1rem;
		}
	
		span{
			font-size: 12px;
	    display: block;

			@media screen and (max-width: 801px){
				display: block;
			}
		}
	}

	/* organizacao / parceiros */
	.organizacao{
		display: flex;
		justify-content: space-between;
		margin-top: 5rem;

		li{

			h5{
				color: var(--second-color);
		  	font-size: 10px;
		  	margin-bottom: 10px;
			}

			a{
				display: block;

				&:hover{
					filter: drop-shadow(0px 0px 10px var(--second-color));
				}
			}
		}
	}

.invert{
	filter: invert(1);
}
/* credits */
.credits{
	font-size: 12px;
	margin-top: 5rem;
}

[href^="https://www.publisitio.eu"] {
  color: var(--second-color);

	&:hover {
		color: #fff;
	}
}
/* custom scrollbar */
* {
  scrollbar-color: var(--second-color) transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: transparent; 
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--second-color); 
  border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555555; 
}