body{
    padding: 0;
    margin: 0;
}

#banner{
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-bottom: 10px solid var(--verde);
}

#bannerContent{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
}

#videoBanner{
    width: 100%;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 164px;
    h2{
        color: var(--verde);
        text-align: center;
        text-wrap: balance;
    }
    img{
        margin-top: 64px;
    }
}

.contactP{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--verde);
    font-size: 0.9rem;
    align-self: start;
    cursor: pointer;
    width: 100%;
    p{
        text-decoration: underline;
    }
}

.mainImg{
    width: auto;
    height: 250px;
}

@media(max-width:900px){
    #videoBanner{
        width: auto;
    }
}