@charset "utf-8";

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@media screen and (min-width: 1145px) {
    #introducao {
        height: 100vh;
        /* background-image: url(../../imagens/floresta.jpg); */
        background-position: center;
        background-size: cover;
    }
    
    #intro {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
    }

    #intro::before {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    #intro > h1 {
        text-align: center;
        margin-bottom: 20px;
        width: fit-content;
        font-size: clamp(2em, 5em, 6em);
        color: rgb(255, 255, 255);
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.685);
        z-index: 2;
        backdrop-filter: blur(3px);
        background-color: rgba(0, 0, 0, 0.203);
        padding: 15px;
        border-radius: 20px;
    }

    #introspan {
        color: rgb(247, 218, 156);
        text-decoration: underline;
    }

    #video {
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
        top: 0;
        background-color: rgb(0, 105, 122);
    }

    video {
        position: relative;
    }

    #down-button {
        background-color: rgba(35, 35, 35, 0.37);
        height: 60px;
        width: 120px;
        border-radius: 15px;
        overflow: hidden;
        z-index: 2;
    }

    #down-button:hover {
        cursor: pointer;
        user-select: none;
        background-color: rgba(26, 112, 112, 0.884);
    }

    #down-button:hover p {
        color: rgb(247, 218, 156);
        margin-top: 5px;
    }

    #down-button > p {
        text-align: center;
        color: rgb(255, 255, 255);
        font-size: 60px;
        rotate: 90deg;
        transition: 0.3s;
    }

    #vector {
        background-image: url(../../imagens/vector-equipe.svg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 70vh;
        height: 70vh;
        position: absolute;
        top: 30.1vh;
    }

    #fotos {
        position: relative;
        border-radius: 20px;
        border-top-right-radius: 200px;
        background-color: rgb(242, 242, 242);
        box-shadow: 0px 0px 8px black;
        margin: auto;
        margin-top: 20px;
        margin-bottom: 20px;
        width: fit-content;
        max-width: 90em;
    }

    #bg {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40em;
    }

    #bg-container {
        width: 90vw;
        height: 90%;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    #portrait {
        position: relative;
        overflow: hidden;
        border: 6px solid rgb(35, 98, 121);
        border-radius: 40px 10px;
        height: 90%;
        width: 22em;
    }

    #img-list {
        position: absolute;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        width: fit-content;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-20em, -50%);
        transition: 1.5s;
    }

    .portrait-img {
        width: 40em;
        height: 100%;
        background-position: bottom;
        background-repeat: no-repeat;
        filter: drop-shadow(-10px 5px 4px rgba(0, 0, 0, 0.399));
        text-align: center;
    }

    #portrait-buttons {
        position: relative;
        display: flex;
        height: 100%;
        justify-content: space-between;
        align-items: center;
        font-size: 50px;
        z-index: 2;
    }

    .portrait-button {
        width: 30px;
        height: 60px;
        text-align: center;
    }

    .portrait-button:hover {
        cursor: pointer;
        user-select: none;
        color: rgb(207, 170, 38);
    }

    #portrait-cargo {
        position: absolute;
        display: flex;
        align-items: center;
        background-image: linear-gradient(to right, rgba(179, 143, 25, 0.778) 65%, transparent);
        bottom: 50px;
        width: 90%;
        height: 4em;
        z-index: 3;
    }

    #portrait-cargo > p {
        color: rgb(255, 255, 255);
        text-shadow: 0px 0px 4px black;
        font-size: 30px;
        width: 100%;
        text-indent: 15px;
    }

    #info {
        text-align: center;
        /* border: 1px solid black; */
        width: 40em;
        height: 90%;
    }

    main h3 {
        font-size: 40px;
        color: rgb(0, 105, 122);
        text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.434);
    }

    main h4 {
        color: rgb(171, 107, 55);
        position: relative;
        top: -8px;
    }

    main p {
        font-size: 20px;
        text-align: justify;
        color: black;
    }
}