.text-justify {
    text-align: justify;
}
.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);}
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--secundaria);
}

.rounded-4 { border-radius: 10px }
.rounded-5 { border-radius: 20px }
a, a:hover{ text-decoration: none }
.btn {
    position: relative;
    border-radius: 7px !important;
    min-width: 130px;
}
a:hover {
    text-decoration: none;
}

._box_start_full,
._box_end_full,
._box_full {
    position: relative
}
._box_start_full:after {
    left: -100%;
    position: absolute;
    right: -15px;
    content: '';
    display: block;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    top: 0px;
    bottom: 0px;
    background-color: #e0e8ef;
    z-index: -1;
}
._box_end_full:after {
    right: -100%;
    position: absolute;
    left: -15px;
    content: '';
    display: block;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    top: 0px;
    bottom: 0px;
    background-color: #e0e8ef;
    z-index: -1;
}

.btn-primary {
    color: #FFF;
    background-color: var(--terciaria);
	border: 2px solid var(--terciaria);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    min-width: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
}

.text-bg-primary {
    color: #fff !important;
    background-color: var(--terciaria) !important;
}

.btn-secondary {
    color: #FFF;
    background: var(--secundaria);
    border: 2px solid var(--secundaria);
    font-size: 15px;
    text-align: center;
    display: inline-block;
    min-width: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
}

.btn-secondary i {
    color: var(--principal)
}
.btn-primary:hover,
.btn-primary:focus {
	color: #FFF;
    background-color: var(--secundaria);
	border: 2px solid var(--secundaria);
}

.btn-default {
    background: #e1e1e1;
    color: #4e4e4e
}

.flex-width>div,
.flex-width>li {
    flex-grow: 1;
    flex-basis: 0;
}

.form-control,
.form-select {
    border-radius: 4px
}
.form-floating {
    color: initial;
    font-weight: 600;
}

.form-floating>label,
.form-floating>.form-select~label {
    /* pointer-events: initial;*/
    color: var(--texto);
}

.owl-carousel .owl-item img {
    width: auto !important
}

.owl-carousel.owl-fluid .owl-item img {
   width: 100% !important
}


.video-overlay {
    position: absolute;
    display: flex;
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #FFF;
    font-size: 50px;
    justify-content: center;
    align-items: center;
    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, .2)
}

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.popup-container.showPopup {
    display: flex;
    opacity: 1;
}
.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}
.popup-content img {
    width: 100%;
    height: auto;
}
.closePopup-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    color: #FFF;
    border: 2px solid #FFF;
    background: 0 none;
    font-size: 24px;
    line-height: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
}

.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,
.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
}

hr {
    -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #f2f2f2;
    border-style: solid none;
    border-width: 1px 0;
    margin: 18px 0;
}

@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;
    }
}


/* Bot�o Subir p�gina */

.gotoTop:hover {
    color: var(--principal)
}

.gotoTop span {
    color: #FFF;
    background-color: transparent;
    border: 1px solid #FFF;
    border-radius: 200px;
}

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

.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
}

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--terciaria);
}
/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--principal);
}

._texto::-webkit-scrollbar-thumb:hover {
    background: var(--highlight);
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@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 */ }}  