/* DEFAULT */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

/* MENU */
.menu {
    background-color: var(--color-cabecalho) !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  /*  padding: .8rem 5rem;*/
    font-size: 0.9rem;
}
.home{ cursor:pointer}
.navbar-dark .navbar-brand, .nav-link {
    color:  var(--color-fonte-cabecalho) !important;
}
.requerJavascript{
    position: absolute; bottom: 1%;
    width: 90%;
    text-align: center
}
.navbar .navbar-brand img {
    width: 120px;
    height: auto;
}
footer{
	background-color:  var(--color-secondary) !important;
	}
.skip-link {
    position: absolute;
    top: -45px;
    left: 0;
    background-color: #fff;
    padding: 10px;
    z-index: 1000;
}

.skip-link:focus {
  outline: 2px solid #000;
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  padding: 5px;
  z-index: 1000;
}

.visibility-hidden{
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
}
.disabled{
  opacity: 0.5;
  cursor: default
}

.cards__item-icon{
	padding-right:.5rem!important
}

.navbar-nav .dropdown-menu {
    font-size: 0.9rem;
}

.btn-menu {
    font-size: 0.9rem;
    border: 1px solid var(--color-fonte-cabecalho) !important;
    color: var(--color-fonte-cabecalho) !important;
}

.btn-menu:hover {
    color: var(--color-primary) !important;
}
iframe{
	border:none
}

@media (max-width: 768px) {
    .navbar {
        padding: .8rem 2rem;
    }
    
    .navbar .navbar-img {
        width: 100px;
    }

    .navbar .dropdown-menu .dropdown-item {
        white-space: unset;
    }

    .navbar-collapse {
        padding-top: 2rem;
        max-height: 500px;
        overflow: auto
    }
}

/* hover do menu */
@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        right: 0;
    }

    .navbar .nav-item:hover .nav-link {
        color: #fff;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 180%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: .3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
						   
					   

    }
	
}

/* HEADER */
.header {
    width: 100%;
    height: 300px;
    position: relative;
    margin-top: 60px;
}

.header .logo {
    
    position: absolute;
    top: 50%;
    left: 50%;
	width:300px;
    transform: translate(-50%, -50%);
}

.header .header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -2;
}

.header .header-overlay {
   /* background: linear-gradient(90deg, var(--color-main) 50%, rgba(0, 0, 0, 0.844) 100%);
    opacity: 0.5;*/
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.header .header-text-box {
    width: 500px;
    padding: 5rem 5rem;
}

.header .header-title {
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
}

.header .header-text {
    font-size: 0.9rem;
    text-align: justify;
    color: #d6d6d6;
}

				   
				
					
 

									  
	
					   
						 
						
	 
	
 

									  
	
					
						 
						
	 
	
 

@media screen and (max-width: 768px) {
	
					 
						 
						
	 
	

    .header {
        height: 150px;
    }

    .header .header-overlay {
        background: linear-gradient(30deg, var(--color-main) 50%, rgba(0, 0, 0, 0.844) 100%);
        opacity: 0.9;
    }

    .header .header-text-box {
        width: 100%;
        padding: 2rem;
    }

    .header .header-title {
        font-size: 1.5rem;
        display: none;
    }

    .header .logo {
        margin-top: .5rem;
        opacity: 1;
        width: 150px;
    }

    .header .header-text {
        display: none;
    }
}


/* ATALHOS */
.button-container {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .button-container {
        margin-top: 2.5rem;
    }   
}

.button-item {
    background-color: #f3f3f3;
    padding: 1rem;
    border-radius: 20px;
    margin: 0.5rem;
    font-size: .9rem;
    width: 160px;
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: .5s all;
}

.button-item:hover {
    text-decoration: none;
    color: var(--color-main);
    background-color: white;
}

.button-item:hover i {
    margin-left: 1rem;
}

.button-item p {
    margin-bottom: 0;
    font-weight: 600;
}

.button-item i {
    font-size: 2rem;
    color: var(--color-main);
    margin-bottom: 1rem;
    transition: .3s all ease;
}

/* SEÇÕES */
.section-title {
    margin-top: 1.3rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.section-title b {
    color: var(--color-secondary);
}

/* links */
.link-card {
    background-color: #f3f3f3;
    margin-bottom: 1rem;   
    font-size: 0.9rem;
    border-radius: 8px;
  /*  width: 90%;*/
    display: flex;
    align-items: center;
}

.link-card .link-card-iconBox {
    text-align: center;
    background-color: var(--color-main);
    width: 40px;
    color: white;
    padding: 10px;
    border-radius: 8px 0 0 8px;
}

.link-card a {
    color: #333;
    font-weight: 600;
    width: 100%;
    height: 100%;
    margin-left: 1rem;
    text-decoration: none;
    transition: .3s all ease;    
}

.link-card a:hover {
    margin-left: 1.5rem;
    color: var(--color-main);
}

.link-card .linkou {
    color: #333;
    font-weight: 600;
    width: 100%;
    height: 100%;
    margin-left: 1rem;
    text-decoration: none;
    transition: .3s all ease;    
}

.link-card .linkou:hover {
    margin-left: 1.5rem;
    color: var(--color-main);
}
 .linkou {
    display: flex;
    align-items: center;
	cursor:pointer
}

@media screen and (max-width: 768px) {
    .link-card {
        width: 100%;
    }
}

/* HEADER SERVICOS */
.header-servico {
    width: 100%;
    height: 200px;
    position: relative;
    margin-top: 60px;
}

.header-servico .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-servico .header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -2;
}

.header-servico .header-overlay {
    background: linear-gradient(90deg, var(--color-main) 50%, rgba(0, 0, 0, 0.844) 100%);
    opacity: 0.9;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.header-servico .header-text-box {
    width: 500px;
    padding: 4rem;
}

.header-servico .header-title {
    font-size: 3rem;
    color: white;
    font-weight: bold;
}

.header-servico .header-text {
    font-size: 0.9rem;
    text-align: justify;
    color: #d6d6d6;
}

.column-custom {
  
}
.link-card {
    margin-bottom: 0.85rem;
    min-height: 43px;
}
    .link-card a:hover {
        margin-left: 1rem;
    padding-left: 0.5rem!important;
}
.link-card a {
    display: flex;
    align-items: center;
}
/*
#secaoserv div:nth-child(2) {
    margin-top: 3.5rem !important;
}
*/
.section-title {
    margin-bottom: 1rem!important;
}
.iframe {
    display: none;
}
.navbar-nav .dropdown-menu {
    max-height: 400px;
    overflow-y: scroll;
}
.link-card-iconBox .cards__item-icon {
    padding-right: initial !important;
}
.link-card .link-card-iconBox {
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100%;
}

@media screen and (max-width: 768px) {

    .header-servico {
        height: 100px;
    }

    .header-servico .header-overlay {
        background: linear-gradient(30deg, var(--color-main) 50%, rgba(0, 0, 0, 0.844) 100%);
        opacity: 0.9;
    }

    .header-servico .header-text-box {
        width: 100%;
        padding: 2rem;
    }

    .header-servico .header-title {
        font-size: 1.5rem;
        display: none;
    }

    .header-servico .logo {
        margin-top: .5rem;
        opacity: 1;
        width: 150px;
    }

    .header-servico .header-text {
        display: none;
    }
}