*,*::after,*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

:root{
    --color-primary: #0A0E19;
    --color-segundary: #EF0E3D;
}
html{
    scroll-behavior: smooth;
}
body{
    background-color: var(--color-primary);

}
/*CABEÇALHO - HEADER*/
.header{    
    background-color: #0a0e19c2;
    height: .1em;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem;
    position: fixed;
    z-index: 3;
    box-shadow: 0px 0px 20px 10px #0a0e199c;
}

.header img{
    height: 3em;
}

.menu ul,li,a{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all .10s;
    display: flex;
    gap: 2em;
    list-style:none;
    text-decoration: none;
    color: white;
    font-size: 17px;
}

.menu a:hover, li:hover{
    color: var(--color-segundary);
}


/*PARTE ONDE FICA O LETREIRO DA AVENGERS*/
.capa{
    background-image: url(imgs/fundo.jpg);
    background-attachment: fixed;
	background-size: cover;
    margin: 0 auto;
    padding: 2em;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capa img{
    height: 20rem;
    display: flex;
    margin: 10px auto;
    transition: all .5s;
}

/*SOBRE OS AVENGERS*/
.sobre{
    background-color: var(--color-primary);
    color: white;
    padding: 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}

.sobre h1{
    color: var(--color-segundary);
    font-family: 'Poppins', sans-serif;
    font-size: 29px;
    text-align: center;
}

.sobre p{
    margin: 1em;
    font-size: 18px;
}

.fonte{
    text-decoration: underline;
    color: #EF0E3D;
}



/*SLIDER*/

.sobre-imgs{
    display: flex;
    width:70%;
    height: 560px;
    }
    
.sobre-imgs img{
    width: 0px;
    flex-grow:1;
    object-fit: cover;
    opacity: .8;
    transition: .5s ease;
    filter: contrast(80%);
}
    
.sobre-imgs img:hover{
    cursor: crosshair;
    width: 250px;
    opacity: 1;
    filter: contrast(120%);
}
/*FIM SLIDER*/


/* TRAILERS */
.sobre-trailers{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.sobre-trailers h1{
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.trailers{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;

    gap: 3rem;
}

.trailers iframe{
    width: 560px;
    height: 315px;
}

.trailers h3{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;

    transition: all .5s ease-in-out;
}
.trailers h3:hover{
    color: #EF0E3D;
    cursor: pointer;
}











/*PRSONAGENS - HERÓIS*/
.main{
    background-image: url(imgs/fundo2.jpg);
    background-size: cover;
    height: auto;
    background-attachment: fixed;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 7em;
    margin: 0;
}




/* CARDS DOS HERÓIS */
.card-image {
	display: block;
	min-height: 20rem; 
	background: #fff center center no-repeat;
	background-size: cover;
	filter: blur(5px); /* DESFOQUE NAS IMAGENS */
}

.card-image > img {
	display: block;
	width: 100%;
	opacity: 0; 
}

.card-image.is-loaded {
	filter: blur(0px);
    transition: all .50s;
}
.card-image.is-loaded:hover {
    transition: all .50s;
	filter: none; /* RETIRA O DESFOQUE DA IMAGEM */
}

.card-list {
	display: block;
	margin: 1rem auto;
	padding: 0;
	font-size: 0;
	text-align: center;
	list-style: none;
}

.card-list h2{
    color: #EF0E3D;
    font-family: 'Marvel', sans-serif;
    font-size: 30px;
}

.card {
    background-color: #0A0E19;
    height: 30em;
	display: inline-block;
	width: 90%;
	max-width: 20rem;
	margin: 1rem;
	font-size: 1rem;
	text-decoration: none;
	overflow: hidden;
	box-shadow: 0 0 3rem -1rem rgba(0,0,0,0.5);
	transition: transform 0.1s ease-in-out, box-shadow 0.1s;
}

.card:hover {
	transform: translateY(-0.5rem) scale(1.0125);
	box-shadow: 0 0.5em 3rem 1rem #0a0e196b;
}

.card-description {
	display: block;
	padding: 1em 0.5em;
	color: white;
	text-decoration: none;
}

.card-description > h2 {
	margin: 0 0 0.2em;
}

.card-description > p {
	margin: 0;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

