
/**
 * Texto
 */
.text-justify {
    text-align: justify;
}
.truncate-overflow-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.truncate-overflow-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.truncate-overflow-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.truncate-overflow-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/**
 * Animar
 */
.animar,
.list-animar>li>a,
.list-animar>li>a span:before,
.list-animar>li>a span:after {
    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s
}

.flutuar {
	animation-name: flutuando;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	transform: translate(0, 10px);
}
.d-1s { animation-duration: 1s; }
.d-2s { animation-duration: 2s; }
.d-3s { animation-duration: 3s; }
.d-4s { animation-duration: 4s; }
@keyframes flutuando {
	from {transform: translate(0, 10px);}
	to {transform: translate(0, -10px);}
}

/**
 * Overwrite de Estilos
 */
.form-floating {
    color: initial;
    font-weight: 600;
}
.form-control {
   border-color: #FFF;
}

/**
 * Extensões Bootstrap
 */
a, a:hover{ text-decoration: none }

.rounded-4 { border-radius: 10px }
.rounded-5 { border-radius: 20px }
.rounded-6 { border-radius: 30px }
.rounded-7 { border-radius: 40px }

@media(min-width: 768px) {
    .position-md-static {
        position: static !important;
    }
}

/* Medium Devices - md and lg */
@media (max-width: 991px) {
    .submenu {
        cursor: pointer;
        margin-bottom: 10px;
    }
    .subnav {
        display: none;
    }
}

/* Subir página */
.gotoTop:hover {
    color: var(--principal)
}

.gotoTop span {
    color: #FFF;
    background-color: var(--principal);
    border: 1px solid #FFF;
    border-radius: 200px;
}

.gotoTop:hover span {
    color: #FFF;
    background-color: var(--secundaria);
    border-color: var(--secundaria)
}

.gotoTop {
    cursor: pointer;
    height: auto;
    position: fixed;
    top: 85%;
    margin: 0;
    z-index: 10000;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    left: -70px
}

.gotoTop.off {
    opacity: 0;
    filter: alpha(opacity=0);
    left: -70px
}

.gotoTop.on {
    opacity: 1;
    filter: alpha(opacity=100);
    left: 25px
}

.gotoTop .hover {
    display: none
}

.gotoTop span {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 42px;
    text-decoration: none;
    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s
}

.gotoTop span i {
    font-size: 30px;
    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s
}

/**
 * Barra de rolagem
 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: white
}
::-webkit-scrollbar-thumb {
    background: var(--principal);
    border-radius: 200px
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--principal);
}

@media(max-width:767px) {
    .btn {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

:root { --container-width: 100%; }
@media (min-width: 576px) { :root { --container-width: 540px; /* Small screens */ }}
@media (min-width: 768px) { :root { --container-width: 720px; /* Medium screens */ }}
@media (min-width: 992px) { :root { --container-width: 960px; /* Large screens */ }}
@media (min-width: 1200px) { :root { --container-width: 1140px; /* Extra large screens */ }}
@media (min-width: 1400px) { :root { --container-width: 1320px; /* Extra extra large screens */ }}  