
/* 
    intro 
*/

section.intro {
    padding: 100px 0;
}

section.intro .row {
    align-items: center;
}

section.intro h2 {
    font-size: 16px;
    color: var(--cinza);
    line-height: 1;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
}

section.intro h2 strong {
    display: block;
    color: var(--azul);
    font-size: 48px;
    text-transform: none;
}

section.intro .left p {
    font-size: 18px;
    font-weight: bold;
    color: var(--azul-escuro);
    line-height: 1.5;
}

section.intro .links {
    margin-top: 90px;
}

section.intro h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: bold;
    align-items: center;
    color: var(--cinza);
    position: relative;
    margin-bottom: 30px;
}

section.intro h3 span {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 20px;
}

section.intro h3:after {
    content: '';
    width: 500px;
    background: #dedede;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}

section.intro .right p {
    color: #000;
    line-height: 2;
}

section.intro .links a {
    background: #e7f0ff;
    color: var(--azul);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 30px;
    border-radius: 10px;
    transition: all .5s;
}

section.intro .links a h5 {
    font-size: 18px;
    color: var(--azul);
    font-weight: bold;
}

section.intro .links a i {
    font-size: 48px;
    color: #000;
}

section.intro .links a:hover {
    background: var(--azul);
}

section.intro .links a:hover h5,
section.intro .links a:hover i {
    color: #fff;
}


section.intro .links .owl-nav {
	display: block;
	justify-content: space-between;
	position: absolute;
	top: calc(50% - 5px);
	min-width: 100%;
	z-index: 10;
    height: 0;
}

section.intro .links .owl-nav button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

section.intro .links .owl-nav button span {
	display: flex;
	background: var(--azul) !important;
	color: #fff !important;
	font-size: 14px !important;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	text-indent: -9999px;
	position: relative;
}

section.intro .links .owl-nav button span:hover {
	background: var(--azul-escuro) !important;
	color: var(--azul);
}

section.intro .links .owl-nav button span:before {
	content: '';
	width: 9px;
	height: 9px;
	position: absolute;
	left: 9px;
	top: 10px;
	border-right: 2px #fff solid;
	border-bottom: 2px #fff solid;
	transform: rotate(-45deg);
}

section.intro .links .owl-nav .owl-prev {
	transform:translateY(-50%) rotate(180deg);
	margin-left: -60px;
}

section.intro .links .owl-nav .owl-next {
	margin-right: -60px;
    right: 0;
    left: auto;
}


/* 
    Blog 
*/
section.blog {
    background: #f5f5f5;
    margin-top: 70px;
}

section.blog .container {
    position: relative;
    padding: 100px 15px;
}

section.blog .title__icone {
    background: var(--azul);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

section.blog h2 {
    font-size: 16px;
    color: var(--cinza);
    line-height: 1;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 100px;
}

section.blog h2 strong {
    display: block;
    color: var(--azul);
    font-size: 48px;
    text-transform: none;
}


section.blog .principal {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    height: 455px;
}

section.blog .principal img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    opacity: .7;
    object-fit: cover;
    z-index: 1;
}

section.blog .blocos a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 3;
}

section.blog .principal .content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    color: #fff;
    padding: 30px;
    transition: all .4s;
}

section.blog .principal:hover .content {
    padding-bottom: 50px;
}

section.blog .flags {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

section.blog .flags span {
    display: flex;
    align-items: center;
    gap: 5px;
    padding:5px 10px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 13px;
}

section.blog .flags span.categoria {
    background: var(--azul);
    color: #fff;
    text-transform: uppercase;
}

section.blog .principal h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
}

section.blog .secundarias {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

section.blog .secundario {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
}

section.blog .secundario img {
    width: 160px;
    height: 130px;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

section.blog .secundario h3 {
    font-weight: bold;
    line-height: 1.5;
    transition: all .4s;
}

section.blog .secundario:hover h3 {
    color: var(--azul);
}

section.blog .cta__primary {
    margin: auto;
    margin-top: 60px;
}


/* Parceiros */
section.parceiros {
    padding: 120px 0;
}

section.parceiros h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: bold;
    align-items: center;
    color: var(--cinza);
    position: relative;
    margin-bottom: 50px;
}

section.parceiros h2 span {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 0 20px;
}

section.parceiros h2:after {
    content: '';
    width: 500px;
    background: #dedede;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}

section.parceiros .item img {
    display: block;
    margin: auto;
    width: initial;
    max-width: 150px;
    max-height: 100px;
}

section.parceiros .owl-nav {
	display: block;
	justify-content: space-between;
	position: absolute;
	top: calc(50% - 5px);
	min-width: 100%;
	z-index: 10;
    height: 0;
}

section.parceiros .owl-nav button {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

section.parceiros .owl-nav button span {
	display: flex;
	background: var(--azul) !important;
	color: #fff !important;
	font-size: 14px !important;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	text-indent: -9999px;
	position: relative;
}

section.parceiros .owl-nav button span:hover {
	background: var(--azul-escuro) !important;
	color: var(--azul);
}

section.parceiros .owl-nav button span:before {
	content: '';
	width: 9px;
	height: 9px;
	position: absolute;
	left: 9px;
	top: 10px;
	border-right: 2px #fff solid;
	border-bottom: 2px #fff solid;
	transform: rotate(-45deg);
}

section.parceiros .owl-nav .owl-prev {
	transform:translateY(-50%) rotate(180deg);
	margin-left: -60px;
}

section.parceiros .owl-nav .owl-next {
	margin-right: -60px;
    right: 0;
    left: auto;
}

section.parceiros .owl-stage {
    display: flex;
    align-items: center;
}