/* DESENVOLVIDO POR: Velp Vp
CONTATO: velpvp5@gmail.com */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #FAFAFA;
    background-color: #000000;
    font-family: "Poppins", sans-serif;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    color: #FAFAFA;
    background-color: #000000;
    position: relative;
    min-width: 100%;
    min-height: 100vh;

}

.container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/textura-background.png");
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.conteudo {
    min-width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.hero {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.container-introducao {
    position: relative;
    width: 100%;
    min-height: 80vh;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.container-introducao::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgb(5, 5, 5) 100%),
        url('https://images.unsplash.com/photo-1436450412740-6b988f486c6b?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    z-index: -2;
}

.container-introducao::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/textura-background.png");
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

.mask-image-fade {
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    filter: brightness(0.95);
}

.container-introducao h1,
.professor-title {
    background: linear-gradient(to right, #fffb00, #ffef09);
    -webkit-background-clip: text;
    color: transparent;
}

.container-mentor {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    flex-direction: row;
    gap: 30px;
    padding: 40px;
}

.mentor-descricao h2 {
    font-size: 2.5rem
}

.mentor-descricao p {
    font-size: 0.9rem;
    color: #ebebeb;
}



.container-mentor-img {
    max-width: 30vw;
}

.container-mentor-img img {
    width: 100%;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    color: #535353bd;
}


.transicao {
    text-shadow: 0 0 8px #000000d3;
    transition: all 0.3s ease;
}

.transicao:hover {
    opacity: 0.8;
}