@import url('./reset.css');
@import url('./fonts.css');
@import url('./image.css');
@import url('./jumbotron.css');
@import url('./color.css');

@import url('./templates.css');
@import url('./contato.css');

html {
    scroll-behavior: smooth;
}

.list-edge {
    margin-left: 21px;
}

.list-edge li {
    list-style-type: disc;
    padding: 8px 0;
}

.list-edgeDecimal {
    margin-left: 21px;
}

.list-edgeDecimal li {
    list-style-type: decimal;
    padding: 8px 0;
}

.nav-bar {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    padding: 0 50px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #fff;
    background-color: #0606064a;
    backdrop-filter: blur(8px);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s;
}

.nav-bar-mobile{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 0px;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    color: #fff;
    background-color: #0606064a;
    backdrop-filter: blur(8px);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s;
}

.nav-items {
    display: flex;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 87%;
    text-decoration: none;
    padding: 0 7px;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}

.nav-item:hover {

    background-color: #00000014;
}

.nav-show {
    opacity: 1;
}

.container {
    width: 100%;
    color: #fff;
    /* background-color: #000; */
}

.container-text {
    width: 100%;
    padding: 0 60px;
}

.content-wellcome {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-image: url('../media/images/fundo2.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: height 0.5s;
}

.content-wellcome h5 {
    position: absolute;
    top: 60px;
    font-size: 2vw;
}

.content-wellcome img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    max-width: 120%;
}

.hide {
    opacity: 1;
}

.content-columns {
    display: flex;
    /* width: 100%; */
    color: #7d7d7d;
    background-color: rgb(255, 255, 255);
}

.content-columns .columns {
    width: 100%;
    padding: 40px 20px;
}

.content-columns .columns h2 {
    color: #858585;
    font-size: 28px;
    margin-bottom: 20px;
}

.content-columns .columns p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.title {
    width: 100%;
    min-height: 5px;
    text-align: center;
}

/* Adicionei um estilo para a lista de recursos */
.feature-list {
    list-style: none;
    padding: 0;
}

/* Estilizei os ícones na lista de recursos */
.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 10px;
    font-size: 24px;
}

.mobile {
    display: none !important;
}

#videoEdgeMobile1{
    display: none;        
}

#videoEdgeMobile2{
    display: none;        
}

@media only screen and (max-width: 767px) {
    .content-wellcome h5 {
        position: absolute;
        top: 60px;
        font-size: 7vw;
        text-align: center;
    }

    .content-columns {
        flex-wrap: wrap;
    }

    .content-columns .columns {
        width: 100%;
        padding: 5px 20px;
    }

    .container-text {
        padding: 0 0px;
    }

    .nomobile {
        display: none;
    }

    .mobile {
        display: contents;
    }

    .nav-bar{
        display: none;
    }

    .nav-bar-mobile{
        display: flex;
        justify-content: space-between;
    }

    #videoEdgeMobile1{
        display: initial;
    }

    #videoEdgeMobile2{
        display: initial;
    }

}